diff options
author | friendica <info@friendica.com> | 2012-01-31 20:03:46 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-31 20:03:46 -0800 |
commit | 86c0eac27d4ed2a454f752615a1b446cf2acd2b2 (patch) | |
tree | 85f35f137d3848881d17cda3fc7a8580bb0ad7bb /include/poller.php | |
parent | 4fc455d195fef9f1bfbc9f125788650fb3153237 (diff) | |
download | volse-hubzilla-86c0eac27d4ed2a454f752615a1b446cf2acd2b2.tar.gz volse-hubzilla-86c0eac27d4ed2a454f752615a1b446cf2acd2b2.tar.bz2 volse-hubzilla-86c0eac27d4ed2a454f752615a1b446cf2acd2b2.zip |
transport for email contacts phase II
Diffstat (limited to 'include/poller.php')
-rwxr-xr-x | include/poller.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/poller.php b/include/poller.php index 89e4488b9..7d42c63b5 100755 --- a/include/poller.php +++ b/include/poller.php @@ -369,7 +369,7 @@ function poller_run($argv, $argc){ $xml = fetch_url($contact['poll']); } - elseif($contact['network'] === NETWORK_MAIL) { + elseif($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) { $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1); if($mail_disabled) @@ -462,7 +462,7 @@ function poller_run($argv, $argc){ $datarray['contact-id'] = $contact['id']; if($datarray['parent-uri'] === $datarray['uri']) $datarray['private'] = 1; - if(! get_pconfig($importer_uid,'system','allow_public_email_replies')) { + if(($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) { $datarray['private'] = 1; $datarray['allow_cid'] = '<' . $contact['id'] . '>'; } |