Are two periods allowed in the local-part of an email address?

A third-party email gateway relay is refusing to process a message for an email address we’re sending to. The address is in the format of firstname..lastname@recipientdomain.com (note the two periods). Is this allowed by RFC guidelines? RFC 2822 seems to object to this in section 3.4.1: The locally interpreted string is either a quoted-string or … Read more

Legitimate reasons SMTP “MAIL FROM:” will not match “From:” Header in DATA

Is there ever a legitimate reason for the SMTP “MAIL FROM:” field to not match the “From:” field in the DATA section of a message, besides mailing lists? From https://stackoverflow.com/questions/1750194/smtp-why-does-email-needs-envelope-and-what-does-the-envelope-mean: “But, to continue your snail mail metaphor, most professional letters will contain the sender’s and recipient’s addresses printed on the letter itself. Those addresses are … Read more

Which RFCs should be cited as internet standards?

It’s extremely common for RFCs to be cited in support of opinions (including Serverfault Q&A’s), but the average IT employee has a very poor understanding in regards to which RFCs define standards and which ones are purely informative. This should be no surprise: system administrators of all experience levels typically avoid glazing their eyes at … Read more

What’s the maximum URL length in Tomcat?

And is it configurable? Can I set up Tomcat so that a URL with, say, 200K of query params goes through successfully to the contained servlet? Yes, I know one should use POST when you have lots of data; that’s a less pleasant option in this particular case. The contained application (a search engine) expects … Read more