~sircmpwn/hare-message

5579e929f3977326c5aa5fadf5cb8830fe738dd4 — Drew DeVault 1 year, 4 months ago 8ca621f
message::new_header: clarify interaction with DKIM
1 files changed, 4 insertions(+), 0 deletions(-)

M message/header.ha
M message/header.ha => message/header.ha +4 -0
@@ 29,6 29,10 @@ export type header_field = struct {

// Creates a new message header. The representation is idempotent, such that
// whitespace and field ordering is preserved.
//
// To preserve DKIM signatures, the only supported operations are [[header_add]]
// and [[header_add_raw]], which add a new header to the top of the message, and
// [[header_del]].
export fn new_header() header = {
	return header { ... };
};