Mercurial > p > roundup > code
view tools/base64 @ 3813:23470ece29de
Modified subject line parser in mail gateway.
Tries to be more forgiving and allows both multiple Re/Ang/Sv and
[mailing-list-id].
| author | Erik Forsberg <forsberg@users.sourceforge.net> |
|---|---|
| date | Sun, 28 Jan 2007 13:49:21 +0000 |
| parents | 740102dfad1d |
| children | c75defc1c2f0 |
line wrap: on
line source
#!/usr/bin/env python import zlib, base64, sys print base64.encodestring(zlib.compress(sys.stdin.read()))
