| author | xrstf
<git@xrstf.de> 2026-04-06 15:39:51 UTC |
| committer | Alberto Bertogli
<albertito@blitiri.com.ar> 2026-04-06 18:14:59 UTC |
| parent | af7b1d895cb50597aecadb520bbf340e989e808d |
| internal/maillog/maillog.go | +1 | -1 |
diff --git a/internal/maillog/maillog.go b/internal/maillog/maillog.go index b117ff2..6e2b8f3 100644 --- a/internal/maillog/maillog.go +++ b/internal/maillog/maillog.go @@ -96,7 +96,7 @@ func (l *Logger) Auth(netAddr net.Addr, user string, successful bool) { if !successful { res = "failed" } - msg := fmt.Sprintf("%s auth %s for %s\n", netAddr, res, user) + msg := fmt.Sprintf("%s auth %s for %s", netAddr, res, user) l.printf("%s", msg) authLog.Debugf("%s", msg) }