another try at issue #89 - rotating photos

This commit is contained in:
redmatrix
2015-10-16 04:21:40 -07:00
parent a756c0b182
commit c07f694a07
3 changed files with 1438 additions and 1411 deletions

View File

@@ -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;