mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-28 19:49:20 +03:00
Resolve #1517
This commit is contained in:
parent
31d929912a
commit
55642e826e
1 changed files with 3 additions and 1 deletions
|
|
@ -35,6 +35,7 @@ abstract class Account implements \JsonSerializable
|
|||
|
||||
public function IncLogin() : string
|
||||
{
|
||||
// return $this->oDomain->ImapSettings()->fixUsername($this->sLogin);
|
||||
return $this->sLogin;
|
||||
}
|
||||
|
||||
|
|
@ -45,7 +46,8 @@ abstract class Account implements \JsonSerializable
|
|||
|
||||
public function OutLogin() : string
|
||||
{
|
||||
return $this->sSmtpLogin ?: $this->sLogin;
|
||||
// return $this->oDomain->SmtpSettings()->fixUsername($this->sSmtpLogin ?: $this->sEmail);
|
||||
return $this->sSmtpLogin ?: $this->sEmail;
|
||||
}
|
||||
|
||||
public function Domain() : Domain
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue