| mimify | index /usr/lib/python2.2/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 = '> ' __all__ = ['mimify', 'unmimify', 'mime_encode_header', 'mime_decode_header'] __file__ = '/usr/lib/python2.2/mimify.pyc' __name__ = 'mimify' base64_re = <_sre.SRE_Pattern object> chrset = <_sre.SRE_Pattern object> cte = <_sre.SRE_Pattern object> he = <_sre.SRE_Pattern object> iso_char = <_sre.SRE_Pattern object> mime_char = <_sre.SRE_Pattern object> mime_code = <_sre.SRE_Pattern object> mime_head = <_sre.SRE_Pattern object> mime_header = <_sre.SRE_Pattern object> mime_header_char = <_sre.SRE_Pattern object> mp = <_sre.SRE_Pattern object> mv = <_sre.SRE_Pattern object> qp = <_sre.SRE_Pattern object> repl = <_sre.SRE_Pattern object> | ||