diff options
author | alecpl <alec@alec.pl> | 2010-10-22 19:25:00 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-10-22 19:25:00 +0000 |
commit | a1fe6bd11d7afb8ddd42d1fe465a6d2d93b51592 (patch) | |
tree | cb4163894257d61ce255ece895d5af1f36b6a81a /program/include/rcmail.php | |
parent | 63d4d61148cdaac48973baea2ab783d3e965a9c2 (diff) |
- Add support for IMAP proxy authentication (#1486690)
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index a26ad809c..c7ba41935 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -501,6 +501,8 @@ class rcmail // can save time detecting them using NAMESPACE and LIST $options = array( 'auth_method' => $this->config->get('imap_auth_type', 'check'), + 'auth_cid' => $this->config->get('imap_auth_cid'), + 'auth_pw' => $this->config->get('imap_auth_pw'), 'delimiter' => isset($_SESSION['imap_delimiter']) ? $_SESSION['imap_delimiter'] : $this->config->get('imap_delimiter'), 'rootdir' => isset($_SESSION['imap_root']) ? $_SESSION['imap_root'] : $this->config->get('imap_root'), 'debug_mode' => (bool) $this->config->get('imap_debug', 0), |