Skip to content

Commit

Permalink
Resolve #1517
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Mar 25, 2024
1 parent 31d9299 commit 55642e8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion snappymail/v/0.0.0/app/libraries/RainLoop/Model/Account.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public function Name() : string

public function IncLogin() : string
{
// return $this->oDomain->ImapSettings()->fixUsername($this->sLogin);
return $this->sLogin;
}

Expand All @@ -45,7 +46,8 @@ public function IncPassword() : string

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
Expand Down

0 comments on commit 55642e8

Please sign in to comment.