From 67fc6b8b664f746d6bc477e482771856d9e61948 Mon Sep 17 00:00:00 2001 From: Christian Landvogt Date: Fri, 13 Dec 2019 09:35:08 +0100 Subject: [PATCH] fix imap delimiter switching --- ident_switch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ident_switch.php b/ident_switch.php index 8cad50e..2813b02 100644 --- a/ident_switch.php +++ b/ident_switch.php @@ -603,7 +603,7 @@ class ident_switch extends rcube_plugin if ($ssl) $host = "{$ssl}://{$host}"; - $delimiter = $r['delimiter'] ? $r['delimiter'] : '.'; // Default delimiter here + $delimiter = $r['imap_delimiter'] ? $r['imap_delimiter'] : '.'; // Default delimiter here $_SESSION['storage_host'] = $host; $_SESSION['storage_ssl'] = $ssl;