Lines Matching full:quoted
5 Decode quoted-printable parts of a mail message or encode using
6 quoted-printable.
25 MAXLEN = 200 # if lines longer than this, encode as quoted-printable
27 QUOTE = '> ' # string replies are quoted with
38 qp = re.compile('^content-transfer-encoding:\\s*quoted-printable', re.I)
95 """Decode a single line of quoted-printable text to 8bit."""
123 """Convert a quoted-printable part of a MIME mail message to 8bit."""
208 """Convert quoted-printable parts of a MIME mail message to 8bit."""
229 """Code a single line as quoted-printable.
263 """Code a single header line as quoted-printable."""
281 """Convert an 8bit part of a MIME mail message to quoted-printable."""
365 line = line + 'quoted-printable\n'
377 ofile.write('Content-Transfer-Encoding: quoted-printable\n')
416 """Convert 8bit parts of a MIME mail message to quoted-printable."""