mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
auth/dovecot_sasl: Add missing returnConn calls
This commit is contained in:
parent
958fbd1ef7
commit
d954353375
1 changed files with 2 additions and 0 deletions
|
@ -118,6 +118,7 @@ func (a *Auth) AuthPlain(username, password string) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer a.returnConn(cl)
|
||||
|
||||
// Pretend it is SMTP even though we really don't know.
|
||||
// We also have no connection information to pass to the server...
|
||||
|
@ -128,6 +129,7 @@ func (a *Auth) AuthPlain(username, password string) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer a.returnConn(cl)
|
||||
|
||||
// Pretend it is SMTP even though we really don't know.
|
||||
return cl.Do("SMTP", sasl.NewLoginClient(username, password))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue