Lines Matching refs:infile
32 .. function:: mimify(infile, outfile)
34 Copy the message in *infile* to *outfile*, converting parts to quoted-printable
35 and adding MIME mail headers when necessary. *infile* and *outfile* can be file
36 objects (actually, any object that has a :meth:`readline` method (for *infile*)
38 *infile* and *outfile* are both strings, they may have the same value.
41 .. function:: unmimify(infile, outfile[, decode_base64])
43 Copy the message in *infile* to *outfile*, decoding all quoted-printable parts.
44 *infile* and *outfile* can be file objects (actually, any object that has a
45 :meth:`readline` method (for *infile*) or a :meth:`write` method (for
46 *outfile*)) or strings naming the files. If *infile* and *outfile* are both
78 mimify.py -e [-l length] [infile [outfile]]
79 mimify.py -d [-b] [infile [outfile]]
81 to encode (mimify) and decode (unmimify) respectively. *infile* defaults to