diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-06-16 14:13:58 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-09-01 14:24:36 +0200 |
commit | 3b55da7ba60bafaae5b20e0e39a3d6304001d08a (patch) | |
tree | f4cf6614a69702d0a02dfc9e82dc4746cf4f8d4d /program/lib/Roundcube/rcube_imap.php | |
parent | 4922ebda5c08c5da31fd33682b8cc569b8293e62 (diff) |
Add config option to specify IMAP connection socket parameters - imap_conn_options (#1489948)
Conflicts:
CHANGELOG
Diffstat (limited to 'program/lib/Roundcube/rcube_imap.php')
-rw-r--r-- | program/lib/Roundcube/rcube_imap.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/program/lib/Roundcube/rcube_imap.php b/program/lib/Roundcube/rcube_imap.php index 18cf46d58..83fdab9e2 100644 --- a/program/lib/Roundcube/rcube_imap.php +++ b/program/lib/Roundcube/rcube_imap.php @@ -110,13 +110,13 @@ class rcube_imap extends rcube_storage /** * Connect to an IMAP server * - * @param string $host Host to connect - * @param string $user Username for IMAP account - * @param string $pass Password for IMAP account - * @param integer $port Port to connect to - * @param string $use_ssl SSL schema (either ssl or tls) or null if plain connection + * @param string $host Host to connect + * @param string $user Username for IMAP account + * @param string $pass Password for IMAP account + * @param integer $port Port to connect to + * @param string $use_ssl SSL schema (either ssl or tls) or null if plain connection * - * @return boolean TRUE on success, FALSE on failure + * @return boolean True on success, False on failure */ public function connect($host, $user, $pass, $port=143, $use_ssl=null) { |