auth/dovecot_sasl: Add missing returnConn calls

This commit is contained in:
fox.cpp 2020-05-05 02:00:32 +03:00
parent 958fbd1ef7
commit d954353375
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

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