diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-06-16 15:12:27 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-06-16 15:12:27 +0200 |
commit | b76f8e5e26f638ecbe5bdcb58b6792ce05dabd86 (patch) | |
tree | ed7ee1883477e77c7505572ccf6b6b5d56e22829 /plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php | |
parent | 23c00eee86f1a1af9fa74bc9daf30c8d33ba33f0 (diff) |
Added option to specify connection socket parameters - managesieve_conn_options
Diffstat (limited to 'plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php')
-rw-r--r-- | plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php b/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php index 9900f16b5..3e3b9becc 100644 --- a/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php +++ b/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php @@ -122,6 +122,7 @@ class rcube_sieve_engine 'debug' => $this->rc->config->get('managesieve_debug', false), 'auth_cid' => $this->rc->config->get('managesieve_auth_cid'), 'auth_pw' => $this->rc->config->get('managesieve_auth_pw'), + 'socket_options' => $this->rc->config->get('managesieve_conn_options'), )); // try to connect to managesieve server and to fetch the script @@ -135,7 +136,8 @@ class rcube_sieve_engine $plugin['disabled'], $plugin['debug'], $plugin['auth_cid'], - $plugin['auth_pw'] + $plugin['auth_pw'], + $plugin['socket_options'] ); if (!($error = $this->sieve->error())) { |