diff options
author | Runxi Yu <me@runxiyu.org> | 2025-04-06 00:14:33 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-04-06 00:14:33 +0800 |
commit | 635b80a3d35aa07c92c01a3e396ae2b990459f84 (patch) | |
tree | 259689f0e5f948b12f34f167c06f30846c1148a5 | |
parent | scfg: Handle two errors (diff) | |
download | forge-635b80a3d35aa07c92c01a3e396ae2b990459f84.tar.gz forge-635b80a3d35aa07c92c01a3e396ae2b990459f84.tar.zst forge-635b80a3d35aa07c92c01a3e396ae2b990459f84.zip |
LMTP: Fix sed mistake
-rw-r--r-- | lmtp_server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lmtp_server.go b/lmtp_server.go index 3abfdb6..593dc5a 100644 --- a/lmtp_server.go +++ b/lmtp_server.go @@ -108,7 +108,7 @@ func (session *lmtpSession) Data(r io.Reader) error { switch strings.ToLower(email.Header.Get("Auto-Submitted")) { case "auto-generated", "auto-replied": - // Disregard automatic emails like OOO repliesession.s. + // Disregard automatic emails like OOO replies slog.Info("ignoring automatic message", "from", session.from, "to", strings.Join(session.to, ","), |