Skip to content

Commit

Permalink
server: remove 'blame it on the weather' error part
Browse files Browse the repository at this point in the history
  • Loading branch information
rlejeune74 authored and emersion committed Nov 9, 2023
1 parent 53bb8bb commit 49bf39f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,7 @@ func toSMTPStatus(err error) (code int, enchCode EnhancedCode, msg string) {
if smtperr, ok := err.(*SMTPError); ok {
return smtperr.Code, smtperr.EnhancedCode, smtperr.Message
} else {
return 554, EnhancedCode{5, 0, 0}, "Error: transaction failed, blame it on the weather: " + err.Error()
return 554, EnhancedCode{5, 0, 0}, "Error: transaction failed: " + err.Error()
}
}

Expand Down

0 comments on commit 49bf39f

Please sign in to comment.