This commit is contained in:
the-djmaze 2024-03-25 19:34:30 +01:00
parent 31d929912a
commit 55642e826e

View file

@ -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