summaryrefslogtreecommitdiff
path: root/program/lib
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2010-03-04 08:17:04 +0000
committerthomascube <thomas@roundcube.net>2010-03-04 08:17:04 +0000
commitbbc8565e5afa7e5352bc3aaf7cf067066ec6d4b1 (patch)
tree15e5df0355ddffc1367c0b2dd7b48b39b55e2661 /program/lib
parenta96183883d95dc83a7d0951f5b834e44b062f9cf (diff)
Flag original messages after sending a draft (#1486203)
Diffstat (limited to 'program/lib')
-rw-r--r--program/lib/imap.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc
index 9a5a67bef..2316e404b 100644
--- a/program/lib/imap.inc
+++ b/program/lib/imap.inc
@@ -1450,7 +1450,8 @@ function iil_C_FetchHeaders(&$conn, $mailbox, $message_set, $uidfetch=false, $bo
$request .= "BODY.PEEK[HEADER.FIELDS ";
$request .= "(DATE FROM TO SUBJECT REPLY-TO IN-REPLY-TO CC BCC ";
$request .= "CONTENT-TRANSFER-ENCODING CONTENT-TYPE MESSAGE-ID ";
- $request .= "REFERENCES DISPOSITION-NOTIFICATION-TO X-PRIORITY".$add.")])";
+ $request .= "REFERENCES DISPOSITION-NOTIFICATION-TO X-PRIORITY ";
+ $request .= "X-REPLY-UID X-FORWARD-UID".$add.")])";
if (!iil_PutLine($fp, $request)) {
return false;