diff options
author | alecpl <alec@alec.pl> | 2009-05-15 13:34:04 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-05-15 13:34:04 +0000 |
commit | 48958e0512b382b972d71de84b165e304cb3d075 (patch) | |
tree | d3ba5ddf5c949c27d50215a518f990b92632bff9 /program/steps/mail/sendmail.inc | |
parent | f879f4e2f8c81f67b0a0c471c94ebed686939c49 (diff) |
- Fix Answered/Forwarded flag setting for messages from subfolders
Diffstat (limited to 'program/steps/mail/sendmail.inc')
-rw-r--r-- | program/steps/mail/sendmail.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index 742322602..4ebf4893c 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -432,9 +432,9 @@ if (!$savedraft) // set replied/forwarded flag if ($_SESSION['compose']['reply_uid']) - $IMAP->set_flag($_SESSION['compose']['reply_uid'], 'ANSWERED'); + $IMAP->set_flag($_SESSION['compose']['reply_uid'], 'ANSWERED', $_SESSION['compose']['mailbox']); else if ($_SESSION['compose']['forward_uid']) - $IMAP->set_flag($_SESSION['compose']['forward_uid'], 'FORWARDED'); + $IMAP->set_flag($_SESSION['compose']['forward_uid'], 'FORWARDED', $_SESSION['compose']['mailbox']); } // End of SMTP Delivery Block |