Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
205 views

Are email headers case sensitive?

Are email headers case sensitive? For example, is Content-Type different from Content-type? According to RFC 5322, I don't see anything about case sensitivity. However, I'm seeing a problem with ...
3
votes
2answers
96 views

PHP mail() docs say that I should only use LF in the body, but RFC 5322 says otherwise. wtf?

PHP manual (http://php.net/manual/en/function.mail.php) says: Each line should be separated with a LF (\n). Lines should not be larger than 70 characters. But actual RFC 5322 gives totallty ...
2
votes
1answer
155 views

Does RFC 5322 allow reply-to header without any actual e-mail address? If so, what is its semantic?

Section 3.6.2 of RFC 5322 defines the reply-to header as: reply-to = "Reply-To:" address-list CRLF Where address-list is defined at section 3.4. When unfolding the ABNF grammar, I find ...
0
votes
1answer
42 views

How should Quoted-Printable Mime-Words be wrapped to the correct line length?

I ran into a bug in a mime parsing library where it blows up on subject lines that contain foreign characters beyond a certain length. It turns out that it would convert the subject into a ...