This module defines a class, Message, which represents a collection of ``email headers'' as defined by the Internet standard RFC 822. It is used in various contexts, usually to read such headers from a file. This module also defines a helper class AddressList for parsing RFC822 addresses.
Note that there's a separate module to read Unix, MH, and MMDF style mailbox files: mailbox.
This class can work with any input object that supports a readline method. If the input object has seek and tell capability, the rewindbody method will work; also, illegal lines will be pushed back onto the input stream. If the input object lacks seek but has an unread method that can push back a line of input, Message will use that to push back illegal lines. Thus this class can be used to parse messages coming from a buffered stream.
The optional seekable argument is provided as a workaround for certain stdio libraries in which tell() discards buffered data before discovering that the lseek() system call doesn't work. For maximum portability, you should set the seekable argument to zero to prevent that initial tell when passing in an unseekable object such as a a file object created from a socket object.
Input lines as read from the file may either be terminated by CR-LF or by a single linefeed; a terminating CR-LF is replaced by a single linefeed before the line is stored.
All header matching is done independent of upper or lower case; e.g. m['From'], m['from'] and m['FROM'] all yield the same result.