6

In email the Received: header can legitimately occur more than once with mutually exclusive values...

Received: three.example.com

Received: two.example.com

Received: one.example.com

Are there any other headers can occur in email headers multiple times legitimately?

Community
  • 1
  • 1
John
  • 1
  • 13
  • 98
  • 177

1 Answers1

8

Ya there are other headers that can appear more than once and is clearly explained here in RFC 5322

Headers that can appear more than once

  • comments
  • keywords
  • optional-field
  • trace
  • resent-date
  • resent-from
  • resent-sender
  • resent-to
  • resent-cc
  • resent-bcc
  • resent-msg-id

Check the link above for more clarity.

Community
  • 1
  • 1
clement
  • 3,289
  • 2
  • 17
  • 11
  • 3
    Note that "optional-field" is basically any field not defined in that particular RFC. – Arild Dec 08 '14 at 10:48