Differences From Artifact [c9554ab114]:
- Executable file CVSROOT/syncmail — part of check-in [a40e1a29bf] at 2002-04-16 11:33:33 on branch origin/master — Added to implemet the mtt-cvs mail list -- (user: gawthrop@users.sourceforge.net, size: 8734) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/CVSROOT/syncmail — part of check-in [e7609f6ad9] at 2002-04-16 10:57:00 on branch origin/master — Added to suport the mtt-cvs list (user: gawthrop@users.sourceforge.net, size: 8734) [annotate] [blame] [check-ins using]
- File mttroot/CVSROOT/syncmail.txt — part of check-in [d24c49844b] at 2002-04-16 10:50:51 on branch origin/master — Added to run mtt_cvs mailing list (user: gawthrop@users.sourceforge.net, size: 8734) [annotate] [blame] [check-ins using]
To Artifact [77357a9091]:
- Executable file
mttroot/CVSROOT/syncmail
— part of check-in
[39d0adaa89]
at
2004-01-26 10:54:49
on branch origin/master
— Fixed mailhost in accordance with instructions at:
http://sourceforge.net/docman/display_doc.php?docid=2352&group_id=1
(20040123) (user: geraint@users.sourceforge.net, size: 8743) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
71 72 73 74 75 76 77 | import smtplib import pwd import socket from cStringIO import StringIO # Which SMTP server to do we connect to? Empty string means localhost. | | | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | import smtplib import pwd import socket from cStringIO import StringIO # Which SMTP server to do we connect to? Empty string means localhost. MAILHOST = 'localhost' MAILPORT = 25 # Diff trimming stuff DIFF_HEAD_LINES = 20 DIFF_TAIL_LINES = 20 DIFF_TRUNCATE_IF_LARGER = 1000 |
︙ | ︙ |