mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 09:53:20 +01:00
need to use initialised smtp object from mail account
This commit is contained in:
parent
c707a25b5a
commit
467c715ddc
@ -58,13 +58,6 @@ class mail_sieve
|
||||
*/
|
||||
var $currentIdentity;
|
||||
|
||||
/**
|
||||
* emailamdin_smpt object
|
||||
*
|
||||
* @var object
|
||||
*/
|
||||
var $smtp;
|
||||
|
||||
/**
|
||||
* user has admin right to emailadmin
|
||||
*
|
||||
@ -97,7 +90,6 @@ class mail_sieve
|
||||
$this->displayCharset = translation::charset();
|
||||
$profileID = 0;
|
||||
$this->mail_admin = isset($GLOBALS['egw_info']['user']['apps']['emailadmin']);
|
||||
$this->smtp = new emailadmin_smtp();
|
||||
|
||||
if (isset($GLOBALS['egw_info']['user']['preferences']['mail']['ActiveProfileID']))
|
||||
{
|
||||
@ -477,7 +469,7 @@ class mail_sieve
|
||||
}
|
||||
if (is_null($accountID)) $accountID = $GLOBALS['egw_info']['user']['account_id'];
|
||||
|
||||
$accAllIdentities = $this->smtp->getAccountEmailAddress(accounts::id2name($accountID));
|
||||
$accAllIdentities = $this->account->smtpServer()->getAccountEmailAddress(accounts::id2name($accountID));
|
||||
$allAliases = array($this->account->acc_imap_username);
|
||||
foreach ($accAllIdentities as &$arrVal)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user