35. Headers
Contents:
All mail messages are composed of two distinct parts: the header (containing information such as who the message is from) and the body (the actual text of the message). The two parts are separated from each other by a single blank line (although there are exceptions, which we will cover). The header part used by sendmail is mainly defined by RFC822 with some minor clarification contained in RFC1123. These two documents detail the required syntax and contents of most header lines in mail messages. Many other RFCs define other headers, but in this chapter we will discuss header lines as they relate specifically to sendmail , referencing other RFCs as necessary. When sendmail receives a mail message, it gathers all the header lines from that message and saves them internally. Then, during queueing and delivery, it recreates them and augments them with any new ones that may be required either by the configuration file or by sendmail 's internal logic. 35.1 The H Configuration Command
The The form for the header command is:
H?
The
The
A colon then follows, which may be surrounded by optional space
characters. The
H
The colon must be present. If it is absent,
sendmail
prints
the following error message and ignores that
header syntax error, line " offending H command here "
The "
offending H command here
" is the full text of the As with all configuration commands, a line that begins with a space or a tab is joined to the line above. In this way, header commands can be split over one or more lines:
HReceived: $?sfrom $s $.by $j ($v/$V) id $i; $b tab When these two lines are read from the configuration file by sendmail , they are internally joined to form the single line:
HReceived: $?sfrom $s $.by $j ($v/$V)\n id $i; $b tab
The |
|