Looks like somebody commented out the reference headers, which will break
authorjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 27 Jun 2003 03:07:23 +0000 (03:07 +0000)
committerjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 27 Jun 2003 03:07:23 +0000 (03:07 +0000)
references on resuming of a draft.  This should fix bug #722933.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5125 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/compose.php

index 595001939758b5bb03399c981d9e3066082543f8..6737f21e85fa7836493d46a3acef0da15dc891a3 100644 (file)
@@ -666,8 +666,8 @@ function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $se
             $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc'),false,true);            
             $subject = decodeHeader($orig_header->subject,false,true);
 //            /* remember the references and in-reply-to headers in case of an reply */
-//            $composeMessage->rfc822_header->more_headers['References'] = $orig_header->references;
-//            $composeMessage->rfc822_header->more_headers['In-Reply-To'] = $orig_header->in_reply_to;
+            $composeMessage->rfc822_header->more_headers['References'] = $orig_header->references;
+            $composeMessage->rfc822_header->more_headers['In-Reply-To'] = $orig_header->in_reply_to;
             $body_ary = explode("\n", $body);
             $cnt = count($body_ary) ;
             $body = '';