From 1b61cc04bb001f5fdd76f71187d0a13a5f73710e Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 21 Jul 2014 15:04:16 +0000 Subject: [PATCH] test sieve connection before saving mail account, if enabled and credentials available --- emailadmin/inc/class.emailadmin_wizard.inc.php | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/emailadmin/inc/class.emailadmin_wizard.inc.php b/emailadmin/inc/class.emailadmin_wizard.inc.php index 397975d037..26d3bb912b 100644 --- a/emailadmin/inc/class.emailadmin_wizard.inc.php +++ b/emailadmin/inc/class.emailadmin_wizard.inc.php @@ -967,10 +967,6 @@ class emailadmin_wizard case 'save': case 'apply': try { - // if admin username/password given, check if it is valid - $account = new emailadmin_account($content); - $imap = $account->imapServer(); - if ($imap) $imap->checkAdminConnection(); // save none-standard identity for current user if ($content['acc_id'] && $content['acc_id'] !== 'new' && $content['acc_further_identities'] && @@ -985,6 +981,12 @@ class emailadmin_wizard } elseif ($edit_access) { + // if admin username/password given, check if it is valid + $account = new emailadmin_account($content); + $imap = $account->imapServer(); + if ($imap) $imap->checkAdminConnection(); + // test sieve connection, if enabled and credentials available + if ($account->acc_sieve_enabled && $account->acc_imap_username) $account->imapServer()->retrieveRules(); $new_account = !($content['acc_id'] > 0); // check for deliveryMode="forwardOnly", if a forwarding-address is given if ($content['acc_smtp_type'] != 'emailadmin_smtp' && @@ -1067,6 +1069,14 @@ class emailadmin_wizard $content['tabs'] = 'emailadmin.account.imap'; // should happen automatic break; } + catch (PEAR_Exception $e) + { + _egw_log_exception($e); + $tpl->set_validation_error('acc_sieve_port', $msg=lang($e->getMessage())); + $msg_type = 'error'; + $content['tabs'] = 'emailadmin.account.sieve'; // should happen automatic + break; + } catch (Exception $e) { $msg = lang('Error saving account!')."\n".$e->getMessage(); $button = 'apply';