diff options
author | Friendika <info@friendika.com> | 2011-04-18 20:20:04 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-18 20:20:04 -0700 |
commit | a0179235d2d4672ba9dc79b33505555766b3228a (patch) | |
tree | 4c4a8f11a72c4d86ca17335639ce8ce6dd43c829 /include/poller.php | |
parent | 2afd4c9d5a5b0543d7de3fd8b5428fbb91a3898b (diff) | |
download | volse-hubzilla-a0179235d2d4672ba9dc79b33505555766b3228a.tar.gz volse-hubzilla-a0179235d2d4672ba9dc79b33505555766b3228a.tar.bz2 volse-hubzilla-a0179235d2d4672ba9dc79b33505555766b3228a.zip |
provide a way to disable mailbox integration
Diffstat (limited to 'include/poller.php')
-rw-r--r-- | include/poller.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/poller.php b/include/poller.php index 4373dc081..b5639e034 100644 --- a/include/poller.php +++ b/include/poller.php @@ -287,6 +287,11 @@ function poller_run($argv, $argc){ $xml = fetch_url($contact['poll']); } elseif($contact['network'] === NETWORK_MAIL) { + + $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1); + if($mail_disabled) + continue; + $mbox = null; $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer_uid) |