From: Art Cancro Date: Wed, 13 Jul 2011 21:29:42 +0000 (-0400) Subject: Extracting the 'To:' header from the replying_to message now works. X-Git-Tag: v8.11~586 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=909bf2c9fdb23ee6842aa98afc14d7b5c5f8c5e0 Extracting the 'To:' header from the replying_to message now works. --- diff --git a/webcit/messages.c b/webcit/messages.c index 6e9b08729..61a7b0801 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -1428,7 +1428,9 @@ void display_enter(void) PutBstr(HKEY("references"), refs); } - if (!strcasecmp(bstr("replying_mode"), "reply")) { + if ( (!strcasecmp(bstr("replying_mode"), "reply")) + || (!strcasecmp(bstr("replying_mode"), "replyall")) + ) { StrBuf *to_rcpt = NewStrBuf(); if (!IsEmptyStr(rfca)) { StrBufAppendPrintf(to_rcpt, "%s <%s>", from, rfca);