Skip to content

Commit

Permalink
fix new reference to smtp limits rfc
Browse files Browse the repository at this point in the history
  • Loading branch information
mjl- committed Mar 7, 2024
1 parent 85f7258 commit 484ffa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smtpserver/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ func (c *conn) cmdHello(p *parser, ehlo bool) {
c.bwritelinef("250-ENHANCEDSTATUSCODES") // ../rfc/2034:71
// todo future? c.writelinef("250-DSN")
c.bwritelinef("250-8BITMIME") // ../rfc/6152:86
c.bwritelinef("250-LIMITS RCPTMAX=%d", rcptToLimit) // rfc/9422:301
c.bwritelinef("250-LIMITS RCPTMAX=%d", rcptToLimit) // ../rfc/9422:301
c.bwritecodeline(250, "", "SMTPUTF8", nil) // ../rfc/6531:201
c.xflush()
}
Expand Down

0 comments on commit 484ffa6

Please sign in to comment.