aboutsummaryrefslogtreecommitdiffstats
path: root/include/import.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/import.php')
-rw-r--r--include/import.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/import.php b/include/import.php
index c90b05ec0..0fd1ab2a5 100644
--- a/include/import.php
+++ b/include/import.php
@@ -845,6 +845,14 @@ function import_mail($channel,$mails) {
);
continue;
}
+ if(array_key_exists('flags',$mail) && in_array('recalled',$mail['flags'])) {
+ q("update mail set mail_recalled = 1 where mid = '%s' and uid = %d limit 1",
+ dbesc($mail['message_id']),
+ intval($channel['channel_id'])
+ );
+ continue;
+ }
+
$m = get_mail_elements($mail);
if(! $m)
continue;