Extracting the 'To:' header from the replying_to message now works.
authorArt Cancro <ajc@uncensored.citadel.org>
Wed, 13 Jul 2011 21:29:42 +0000 (17:29 -0400)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 21:34:58 +0000 (21:34 +0000)
webcit/messages.c

index 6e9b087290c537b4f34a50a3eff26e61ac674372..61a7b0801bf884eec52ae37fbf445f381bd7d3f7 100644 (file)
@@ -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);