diff options
author | zotlabs <mike@macgirvin.com> | 2018-09-17 19:38:40 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-09-17 19:38:40 -0700 |
commit | dfdf11d461d9c72fa4fb54fd28949af2a90209b3 (patch) | |
tree | 8b3cddfb1f235c60125763066f13c3822c0ac530 /include/zot.php | |
parent | cc5ef57843f4012f7319a0ffd687fe26950a7790 (diff) | |
parent | c4c1b1f5a2ab90873bf1eef31ed794d94fdd6077 (diff) | |
download | volse-hubzilla-dfdf11d461d9c72fa4fb54fd28949af2a90209b3.tar.gz volse-hubzilla-dfdf11d461d9c72fa4fb54fd28949af2a90209b3.tar.bz2 volse-hubzilla-dfdf11d461d9c72fa4fb54fd28949af2a90209b3.zip |
Merge branch 'dev'
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/zot.php b/include/zot.php index b29e86dfa..e31d650d2 100644 --- a/include/zot.php +++ b/include/zot.php @@ -12,6 +12,7 @@ require_once('include/crypto.php'); require_once('include/items.php'); require_once('include/queue_fn.php'); require_once('include/perm_upgrade.php'); +require_once('include/msglib.php'); /** @@ -2331,16 +2332,13 @@ function process_mail_delivery($sender, $arr, $deliveries) { } - $r = q("select id from mail where mid = '%s' and channel_id = %d limit 1", + $r = q("select id, conv_guid from mail where mid = '%s' and channel_id = %d limit 1", dbesc($arr['mid']), intval($channel['channel_id']) ); if($r) { if(intval($arr['mail_recalled'])) { - $x = q("delete from mail where id = %d and channel_id = %d", - intval($r[0]['id']), - intval($channel['channel_id']) - ); + msg_drop($r[0]['id'], $channel['channel_id'], $r[0]['conv_guid']); $DR->update('mail recalled'); $result[] = $DR->get(); logger('mail_recalled'); |