On this page:
8.1 Functions
empty-header
validate-header
extract-field
extract-all-fields
remove-field
insert-field
replace-field
append-headers
standard-message-header
data-lines->data
extract-addresses
assemble-address-field
8.2 Header Unit
head@
8.3 Header Signature
head^

8 Headers: Parsing and Constructing

 (require net/head) package: base
The net/head module provides utilities for parsing and constructing RFC 822 headers [RFC822], which are used in protocols such as HTTP, SMTP, and NNTP.

A header is represented as a string or byte string containing CRLF-delimited lines. Each field within the header spans one or more lines. In addition, the header ends with two CRLFs (because the first one terminates the last field, and the second terminates the header).

8.1 Functions

The string "\r\n\r\n", which corresponds to the empty header. This value is useful for building up headers with insert-field and append-headers.

procedure

(validate-header candidate)  void?

  candidate : (or string? bytes?)
Checks that candidate matches RFC 822. If it does not, an exception is raised.

procedure

(extract-field field header)  (or/c string? bytes? false/c)

  field : (or/c string? bytes?)
  header : (or/c string? bytes?)
Returns the header content for the specified field, or #f if the field is not in the header. The field string should not end with ":", and it is used case-insensitively. The returned string will not contain the field name, color separator, or CRLF terminator for the field; however, if the field spans multiple lines, the CRLFs separating the lines will be intact.

The field and header arguments must be both strings or both byte strings, and the result (if not #f) is of the same type.

Example:
> (extract-field "TO" (insert-field "to" "me@localhost"
                                    empty-header))

"me@localhost"

procedure

(extract-all-fields header)

  
(listof (cons/c (or/c string? bytes?)
                (or/c string? bytes?)))
  header : (or/c string? bytes?)
Returns an association-list version of the header; the case of the field names is preserved, as well as the order and duplicate uses of a field name.

The result provides strings if header is a string, byte strings if header is a byte string.

procedure

(remove-field field header)  (or/c string? bytes?)

  field : (or/c string? bytes?)
  header : (or/c string? bytes?)
Creates a new header by removing the specified field from header (or the first instance of the field, if it occurs multiple times). If the field is not in header, then the return value is header.

The field and header arguments must be both strings or both byte strings, and the result is of the same type.

procedure

(insert-field field value header)  (or/c string? bytes?)

  field : (or/c string? bytes?)
  value : (or/c string? bytes?)
  header : (or/c string? bytes?)
Creates a new header by prefixing the given header with the given field-value pair. The value string should not contain a terminating CRLF, but a multi-line value (perhaps created with data-lines->data) may contain separator CRLFs.

The field, value, and header arguments must be all strings or all byte strings, and the result is of the same type.

procedure

(replace-field field value header)  (or/c string? bytes?)

  field : (or/c string? bytes?)
  value : (or/c string? bytes? false/c)
  header : (or/c string? bytes?)
Composes remove-field and (if value is not #f) insert-field.

procedure

(append-headers header1 header2)  (or/c string? bytes?)

  header1 : (or/c string? bytes?)
  header2 : (or/c string? bytes?)
Appends two headers.

The header1 and header2 arguments must be both strings or both byte strings, and the result is of the same type.

procedure

(standard-message-header from    
  to    
  cc    
  bcc    
  subject)  string?
  from : string?
  to : (listof string?)
  cc : (listof string?)
  bcc : (listof string?)
  subject : string?
Creates a standard mail header given the sender, various lists of recipients, a subject. A "Date" field is added to the header automatically, using the current time.

The BCC recipients do not actually appear in the header, but they’re accepted anyway to complete the abstraction.

procedure

(data-lines->data listof)  string?

  listof : string?
Merges multiple lines for a single field value into one string, adding CRLF-TAB separators.

procedure

(extract-addresses line kind)

  
(or/c (listof string?)
      (listof (list/c string? string? string?)))
  line : string?
  kind : 
(one-of/c 'name 'address
          'full 'all)
Parses string as a list of comma-delimited mail addresses, raising an exception if the list is ill-formed. This procedure can be used for single-address strings, in which case the returned list contains only one address.

The kind argument specifies which portion of an address should be returned:

procedure

(assemble-address-field addrs)  string?

  addrs : (listof string?)
Creates a header field value from a list of addresses. The addresses are comma-separated, and possibly broken into multiple lines.

Example:
> (assemble-address-field '("doe@localhost"
                            "Jane <jane@elsewhere>"))

"doe@localhost, Jane <jane@elsewhere>"

8.2 Header Unit

head@ and head^ are deprecated. They exist for backward-compatibility and will likely be removed in the future. New code should use the net/head module.

 (require net/head-unit) package: compatibility-lib

value

head@ : unit?

Imports nothing, exports head^.

8.3 Header Signature

 (require net/head-sig) package: compatibility-lib

signature

head^ : signature

Includes everything exported by the net/head module.