diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-10-15 18:52:04 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-10-15 18:52:04 -0700 |
commit | 93f061f78a8b914a731838058a38354a62d002de (patch) | |
tree | a2444956ccadaad1ef5dcda1a98364bbc987d3a9 /include/import.php | |
parent | 7517c76ae48ddad741fe61c41dd6dcc09421d160 (diff) | |
download | volse-hubzilla-93f061f78a8b914a731838058a38354a62d002de.tar.gz volse-hubzilla-93f061f78a8b914a731838058a38354a62d002de.tar.bz2 volse-hubzilla-93f061f78a8b914a731838058a38354a62d002de.zip |
mail sync/migrate continued; also abstract delivery loop to make it re-usable, change refresh_all to use delivery loop.
Diffstat (limited to 'include/import.php')
-rw-r--r-- | include/import.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/import.php b/include/import.php index 1734bd263..c90b05ec0 100644 --- a/include/import.php +++ b/include/import.php @@ -849,15 +849,6 @@ function import_mail($channel,$mails) { if(! $m) continue; - if($mail['conv_guid']) { - $x = q("select id from conv where guid = '%s' and uid = %d limit 1", - dbesc($mail['conv_guid']), - intval($channel['channel_id']) - ); - if($x) { - $m['convid'] = $x[0]['id']; - } - } $m['aid'] = $channel['channel_account_id']; $m['uid'] = $channel['channel_id']; mail_store($m); |