mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 20:14:11 +01:00
fix storing of mail account for an other user was not possible for admins
This commit is contained in:
parent
d650dbb0b1
commit
987168a1cb
@ -983,10 +983,16 @@ class emailadmin_wizard
|
||||
{
|
||||
// if admin username/password given, check if it is valid
|
||||
$account = new emailadmin_account($content);
|
||||
$imap = $account->imapServer();
|
||||
if ($account->acc_imap_administration)
|
||||
{
|
||||
$imap = $account->imapServer(true);
|
||||
if ($imap) $imap->checkAdminConnection();
|
||||
// test sieve connection, if enabled and credentials available
|
||||
if ($account->acc_sieve_enabled && $account->acc_imap_username) $account->imapServer()->retrieveRules();
|
||||
}
|
||||
// test sieve connection, if not called for other user, enabled and credentials available
|
||||
if (!$content['called_for'] && $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' &&
|
||||
|
Loading…
Reference in New Issue
Block a user