mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
exterrors: Don't assume SMTPERror.Err != nil
This commit is contained in:
parent
8c156406d6
commit
61d02d5658
1 changed files with 7 additions and 1 deletions
|
@ -97,7 +97,13 @@ func (se *SMTPError) Temporary() bool {
|
|||
}
|
||||
|
||||
func (se *SMTPError) Error() string {
|
||||
return se.Err.Error()
|
||||
if se.Reason != "" {
|
||||
return se.Reason
|
||||
}
|
||||
if se.Err != nil {
|
||||
return se.Err.Error()
|
||||
}
|
||||
return se.Message
|
||||
}
|
||||
|
||||
// SMTPCode is a convenience function that returns one of its arguments
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue