Extracting the 'To:' header from the replying_to message now works.
[citadel.git] / 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);