| 
									
										
										
										
											1998-08-10 19:42:37 +00:00
										 |  |  | \section{\module{mimetools} --- | 
					
						
							| 
									
										
										
										
											1999-02-19 22:59:56 +00:00
										 |  |  |          Tools for parsing MIME messages} | 
					
						
							| 
									
										
										
										
											1998-07-23 17:59:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-19 22:59:56 +00:00
										 |  |  | \declaremodule{standard}{mimetools} | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | \modulesynopsis{Tools for parsing MIME-style message bodies.} | 
					
						
							| 
									
										
										
										
											1998-07-23 17:59:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-02-28 17:14:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-09 16:23:23 +00:00
										 |  |  | This module defines a subclass of the | 
					
						
							|  |  |  | \refmodule{rfc822}\refstmodindex{rfc822} module's | 
					
						
							|  |  |  | \class{Message} class and a number of utility functions that are | 
					
						
							|  |  |  | useful for the manipulation for MIME multipart or encoded message. | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | It defines the following items: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-14 06:16:57 +00:00
										 |  |  | \begin{classdesc}{Message}{fp\optional{, seekable}} | 
					
						
							|  |  |  | Return a new instance of the \class{Message} class.  This is a | 
					
						
							|  |  |  | subclass of the \class{rfc822.Message} class, with some additional | 
					
						
							|  |  |  | methods (see below).  The \var{seekable} argument has the same meaning | 
					
						
							|  |  |  | as for \class{rfc822.Message}. | 
					
						
							|  |  |  | \end{classdesc} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \begin{funcdesc}{choose_boundary}{} | 
					
						
							|  |  |  | Return a unique string that has a high likelihood of being usable as a | 
					
						
							|  |  |  | part boundary.  The string has the form | 
					
						
							| 
									
										
										
										
											1998-03-14 06:16:57 +00:00
										 |  |  | \code{'\var{hostipaddr}.\var{uid}.\var{pid}.\var{timestamp}.\var{random}'}. | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-14 06:16:57 +00:00
										 |  |  | \begin{funcdesc}{decode}{input, output, encoding} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | Read data encoded using the allowed MIME \var{encoding} from open file | 
					
						
							|  |  |  | object \var{input} and write the decoded data to open file object | 
					
						
							|  |  |  | \var{output}.  Valid values for \var{encoding} include | 
					
						
							| 
									
										
										
										
											1998-03-14 06:16:57 +00:00
										 |  |  | \code{'base64'}, \code{'quoted-printable'} and \code{'uuencode'}. | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-17 06:33:25 +00:00
										 |  |  | \begin{funcdesc}{encode}{input, output, encoding} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | Read data from open file object \var{input} and write it encoded using | 
					
						
							|  |  |  | the allowed MIME \var{encoding} to open file object \var{output}. | 
					
						
							| 
									
										
										
										
											1998-03-14 06:16:57 +00:00
										 |  |  | Valid values for \var{encoding} are the same as for \method{decode()}. | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-17 06:33:25 +00:00
										 |  |  | \begin{funcdesc}{copyliteral}{input, output} | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | Read lines from open file \var{input} until \EOF{} and write them to | 
					
						
							| 
									
										
										
										
											1998-02-13 22:13:07 +00:00
										 |  |  | open file \var{output}. | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-17 06:33:25 +00:00
										 |  |  | \begin{funcdesc}{copybinary}{input, output} | 
					
						
							| 
									
										
										
										
											1998-02-13 22:13:07 +00:00
										 |  |  | Read blocks until \EOF{} from open file \var{input} and write them to | 
					
						
							|  |  |  | open file \var{output}.  The block size is currently fixed at 8192. | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | \begin{seealso} | 
					
						
							|  |  |  |   \seemodule{rfc822}{Provides the base class for | 
					
						
							|  |  |  |                      \class{mimetools.Message}.} | 
					
						
							| 
									
										
										
										
											2000-04-05 22:05:15 +00:00
										 |  |  |   \seemodule{multifile}{Support for reading files which contain | 
					
						
							|  |  |  |                         distinct parts, such as MIME data.} | 
					
						
							| 
									
										
										
										
											2000-05-09 16:23:23 +00:00
										 |  |  |   \seeurl{http://www.cs.uu.nl/wais/html/na-dir/mail/mime-faq/.html}{ | 
					
						
							|  |  |  |           The MIME Frequently Asked Questions document.  For an | 
					
						
							|  |  |  |           overview of MIME, see the answer to question 1.1 in Part 1 | 
					
						
							|  |  |  |           of this document.} | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | \end{seealso} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-10 22:00:03 +00:00
										 |  |  | \subsection{Additional Methods of Message Objects | 
					
						
							|  |  |  |             \label{mimetools-message-objects}} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-14 06:16:57 +00:00
										 |  |  | The \class{Message} class defines the following methods in | 
					
						
							|  |  |  | addition to the \class{rfc822.Message} methods: | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \begin{methoddesc}{getplist}{} | 
					
						
							| 
									
										
										
										
											2001-08-03 18:39:36 +00:00
										 |  |  | Return the parameter list of the \mailheader{Content-Type} header. | 
					
						
							|  |  |  | This is a list of strings.  For parameters of the form | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | \samp{\var{key}=\var{value}}, \var{key} is converted to lower case but | 
					
						
							|  |  |  | \var{value} is not.  For example, if the message contains the header | 
					
						
							|  |  |  | \samp{Content-type: text/html; spam=1; Spam=2; Spam} then | 
					
						
							| 
									
										
										
										
											1998-03-14 06:16:57 +00:00
										 |  |  | \method{getplist()} will return the Python list \code{['spam=1', | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 'spam=2', 'Spam']}. | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \begin{methoddesc}{getparam}{name} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | Return the \var{value} of the first parameter (as returned by | 
					
						
							| 
									
										
										
										
											1998-03-14 06:16:57 +00:00
										 |  |  | \method{getplist()} of the form \samp{\var{name}=\var{value}} for the | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | given \var{name}.  If \var{value} is surrounded by quotes of the form | 
					
						
							| 
									
										
										
										
											1998-02-13 22:13:07 +00:00
										 |  |  | `\code{<}...\code{>}' or `\code{"}...\code{"}', these are removed. | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \begin{methoddesc}{getencoding}{} | 
					
						
							| 
									
										
										
										
											2001-08-03 18:39:36 +00:00
										 |  |  | Return the encoding specified in the | 
					
						
							|  |  |  | \mailheader{Content-Transfer-Encoding} message header.  If no such | 
					
						
							|  |  |  | header exists, return \code{'7bit'}.  The encoding is converted to | 
					
						
							|  |  |  | lower case. | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \begin{methoddesc}{gettype}{} | 
					
						
							| 
									
										
										
										
											1996-12-13 22:04:31 +00:00
										 |  |  | Return the message type (of the form \samp{\var{type}/\var{subtype}}) | 
					
						
							| 
									
										
										
										
											2001-08-03 18:39:36 +00:00
										 |  |  | as specified in the \mailheader{Content-Type} header.  If no such | 
					
						
							|  |  |  | header exists, return \code{'text/plain'}.  The type is converted to | 
					
						
							|  |  |  | lower case. | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \begin{methoddesc}{getmaintype}{} | 
					
						
							| 
									
										
										
										
											2001-08-03 18:39:36 +00:00
										 |  |  | Return the main type as specified in the \mailheader{Content-Type} | 
					
						
							|  |  |  | header.  If no such header exists, return \code{'text'}.  The main | 
					
						
							|  |  |  | type is converted to lower case. | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-03-22 15:48:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \begin{methoddesc}{getsubtype}{} | 
					
						
							| 
									
										
										
										
											2001-08-03 18:39:36 +00:00
										 |  |  | Return the subtype as specified in the \mailheader{Content-Type} | 
					
						
							|  |  |  | header.  If no such header exists, return \code{'plain'}.  The subtype | 
					
						
							|  |  |  | is converted to lower case. | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | \end{methoddesc} |