X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mime%2Frfc822parse.c;h=fa0beaa0f216b033477ed9c25a400b441180ee38;hp=3e77c5765029158d16ce309afc0bf291a3dec253;hb=58e0ddff3bd5e1b9455e8c3ebb1f4b9e7dd71920;hpb=16534e98723674fa391e3fc29d2a07ce419c13dd diff --git a/lib-mime/rfc822parse.c b/lib-mime/rfc822parse.c index 3e77c57..fa0beaa 100644 --- a/lib-mime/rfc822parse.c +++ b/lib-mime/rfc822parse.c @@ -1034,15 +1034,12 @@ mutt_read_rfc822_header(FILE *f, HEADER *hdr, short user_hdrs, short weed) { /* if spam tag already exists, figure out how to amend it */ if (e->spam && *buf) { - if (SpamSep) { - /* If SpamSep defined, append with separator */ - mutt_buffer_addstr(e->spam, SpamSep); - mutt_buffer_addstr(e->spam, buf); + if (Mime.spam_separator) { + mutt_buffer_addstr(e->spam, Mime.spam_separator); } else { - /* else overwrite */ mutt_buffer_reset(e->spam); - mutt_buffer_addstr(e->spam, buf); } + mutt_buffer_addstr(e->spam, buf); } if (!e->spam) {