aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php26
1 files changed, 25 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php
index e7cc02579..e69e83b83 100755
--- a/include/items.php
+++ b/include/items.php
@@ -1559,7 +1559,7 @@ function encode_item_flags($item) {
return $ret;
}
-function encode_mail($item) {
+function encode_mail($item,$extended = false) {
$x = array();
$x['type'] = 'mail';
$x['encoding'] = 'zot';
@@ -1592,6 +1592,18 @@ function encode_mail($item) {
$x['body'] = '';
}
+ if($extended) {
+ $x['conv_guid'] = $item['conv_guid'];
+ if($item['mail_flags'] & MAIL_DELETED)
+ $x['flags'][] = 'deleted';
+ if($item['mail_flags'] & MAIL_REPLIED)
+ $x['flags'][] = 'replied';
+ if($item['mail_flags'] & MAIL_ISREPLY)
+ $x['flags'][] = 'isreply';
+ if($item['mail_flags'] & MAIL_SEEN)
+ $x['flags'][] = 'seen';
+ }
+
return $x;
}
@@ -1616,6 +1628,18 @@ function get_mail_elements($x) {
if(in_array('recalled',$x['flags'])) {
$arr['mail_recalled'] = 1;
}
+ if(in_array('replied',$x['flags'])) {
+ $arr['mail_flags'] |= MAIL_REPLIED;
+ }
+ if(in_array('isreply',$x['flags'])) {
+ $arr['mail_flags'] |= MAIL_ISREPLY;
+ }
+ if(in_array('seen',$x['flags'])) {
+ $arr['mail_flags'] |= MAIL_SEEN;
+ }
+ if(in_array('deleted',$x['flags'])) {
+ $arr['mail_flags'] |= MAIL_DELETED;
+ }
}
$key = get_config('system','pubkey');