| mimify | index /usr/lib/python1.6/mimify.py |
Mimification and unmimification of mail messages.
Decode quoted-printable parts of a mail message or encode using
quoted-printable.
Usage:
mimify(input, output)
unmimify(input, output, decode_base64 = 0)
to encode and decode respectively. Input and output may be the name
of a file or an open file object. Only a readline() method is used
on the input file, only a write() method is used on the output file.
When using file names, the input and output file names may be the
same.
Interactive usage:
mimify.py -e [infile [outfile]]
mimify.py -d [infile [outfile]]
to encode and decode respectively. Infile defaults to standard
input and outfile to standard output.
| Modules | ||||||
| ||||||
| Classes | ||||||||||||||||||
| ||||||||||||||||||
| Functions | ||
| ||
| Data | ||
| CHARSET = 'ISO-8859-1' MAXLEN = 200 QUOTE = '> ' __file__ = '/usr/lib/python1.6/mimify.pyc' __name__ = 'mimify' base64_re = <SRE_Pattern object at 854e000> chrset = <SRE_Pattern object at 8557ee8> cte = <SRE_Pattern object at 856a7a0> he = <SRE_Pattern object at 84204f0> iso_char = <SRE_Pattern object at 83dbfa0> mime_char = <SRE_Pattern object at 8541458> mime_code = <SRE_Pattern object at 83a35d8> mime_head = <SRE_Pattern object at 855e568> mime_header = <SRE_Pattern object at 8563ec8> mime_header_char = <SRE_Pattern object at 8561c40> mp = <SRE_Pattern object at 8552038> mv = <SRE_Pattern object at 84d1bd8> qp = <SRE_Pattern object at 8549028> repl = <SRE_Pattern object at 8421468> | ||