From f7f378177082481bd9eb41dae702c9d0aa61acb7 Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Wed, 22 Mar 2017 22:08:53 +0100 Subject: [PATCH] Fix default for $CONF[create_mailbox_subdirs_hostoptions] array('') means to include an empty item, and that results in an invalid remote specification with a trailing "/" Using an empty array() fixes this. Reported by oftc_ftw on IRC. --- config.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.inc.php b/config.inc.php index 263654e9..1100bb10 100644 --- a/config.inc.php +++ b/config.inc.php @@ -561,7 +561,7 @@ $CONF['new_quota_table'] = 'YES'; // $CONF['create_mailbox_subdirs_hostoptions']=array('novalidate-cert','norsh'); // See also the "Optional flags for names" table at // http://www.php.net/manual/en/function.imap-open.php -$CONF['create_mailbox_subdirs_hostoptions'] = array(''); +$CONF['create_mailbox_subdirs_hostoptions'] = array(); // Theme Config