summaryrefslogtreecommitdiffstats
path: root/handler.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2004-07-14 04:34:07 +0000
committerThomas Roessler <roessler@does-not-exist.org>2004-07-14 04:34:07 +0000
commit3ac67380a0c76d2d9ac9a7f6450891f393a83bfe (patch)
tree5e210b96d9551174be51e9c8dd15e13f09833f09 /handler.c
parent3170ef26b207694d528495e43c2b7a6a474e3f74 (diff)
Fix a cvs commit SNAFU: This commit undoes the include_onlyfirst
patch, but leaves the generic spam detection by David Champion in place (which, erroneously, hadn't been committed automatically).
Diffstat (limited to 'handler.c')
-rw-r--r--handler.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/handler.c b/handler.c
index d425c222..85040595 100644
--- a/handler.c
+++ b/handler.c
@@ -1485,9 +1485,6 @@ void multipart_handler (BODY *a, STATE *s)
}
mutt_body_handler (p, s);
state_putc ('\n', s);
- if ((s->flags & M_REPLYING)
- && (option (OPTINCLUDEONLYFIRST)) && (s->flags & M_FIRSTDONE))
- break;
}
if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
@@ -1921,7 +1918,6 @@ void mutt_body_handler (BODY *b, STATE *s)
s->fpin = fp;
}
}
- s->flags |= M_FIRSTDONE;
}
else if (s->flags & M_DISPLAY)
{
@@ -1939,5 +1935,5 @@ void mutt_body_handler (BODY *b, STATE *s)
}
bail:
- s->flags = oflags | (s->flags & M_FIRSTDONE);
+ s->flags = oflags;
}