Mercurial > p > roundup > code
comparison roundup/mailgw.py @ 1180:ba133c895f2d
missing import ... how odd
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 20 Sep 2002 23:20:57 +0000 |
| parents | 1c1ccfc9673d |
| children | b862bbf2067a |
comparison
equal
deleted
inserted
replaced
| 1179:9b013302c582 | 1180:ba133c895f2d |
|---|---|
| 71 set() method to add the message to the item's spool; in the second case we | 71 set() method to add the message to the item's spool; in the second case we |
| 72 are calling the create() method to create a new node). If an auditor raises | 72 are calling the create() method to create a new node). If an auditor raises |
| 73 an exception, the original message is bounced back to the sender with the | 73 an exception, the original message is bounced back to the sender with the |
| 74 explanatory message given in the exception. | 74 explanatory message given in the exception. |
| 75 | 75 |
| 76 $Id: mailgw.py,v 1.87 2002-09-11 01:19:16 richard Exp $ | 76 $Id: mailgw.py,v 1.88 2002-09-20 23:20:57 richard Exp $ |
| 77 ''' | 77 ''' |
| 78 | 78 |
| 79 import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri | 79 import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri |
| 80 import time, random | 80 import time, random, sys |
| 81 import traceback, MimeWriter | 81 import traceback, MimeWriter |
| 82 import hyperdb, date, password | 82 import hyperdb, date, password |
| 83 | 83 |
| 84 SENDMAILDEBUG = os.environ.get('SENDMAILDEBUG', '') | 84 SENDMAILDEBUG = os.environ.get('SENDMAILDEBUG', '') |
| 85 | 85 |
