mhale / smtpd

An SMTP server package written in Go, in the style of the built-in HTTP server.
The Unlicense
397 stars 92 forks source link

Allow space after FROM: as some (broken) clients do this #23

Closed kgolding closed 3 years ago

kgolding commented 3 years ago

I've found a couple of mail clients that add an extra space after FROM:, this patch allows this optional space.

mhale commented 3 years ago

That space is already supported - the mailFromRE already has the \s? in it and the test coverage for spaces begins on smtpd_test.go#L141.

The change you've made in smptd.go actually removes support for the space in the To: field.