bzr revid: modifs-421e80516b2733807462dfc1a07f817d4081fad8
This commit is contained in:
modifs 2007-02-07 10:35:58 +00:00
parent c0828736a6
commit 3a2e267592
1 changed files with 9 additions and 3 deletions

View File

@ -40,6 +40,7 @@ class rpc_proxy(object):
class email_parser(object): class email_parser(object):
def __init__(self, uid, password, section, email, email_default, dbname): def __init__(self, uid, password, section, email, email_default, dbname):
print '* Email parser'
self.rpc = rpc_proxy(uid, password, dbname=dbname) self.rpc = rpc_proxy(uid, password, dbname=dbname)
try: try:
self.section_id = int(section) self.section_id = int(section)
@ -68,7 +69,7 @@ class email_parser(object):
def _decode_header(self, s): def _decode_header(self, s):
from email.Header import decode_header from email.Header import decode_header
s = decode_header(s) s = decode_header(s)
return ''.join(map(lambda x:x[0].decode(x[1] or 'ascii'), s)) return ''.join(map(lambda x:x[0].decode(x[1] or 'ascii', 'replace'), s))
def msg_new(self, msg): def msg_new(self, msg):
description = self.msg_body_get(msg) description = self.msg_body_get(msg)
@ -139,6 +140,7 @@ class email_parser(object):
if not len(emails): if not len(emails):
return False return False
del msg['To'] del msg['To']
print '0'
msg['To'] = emails[0] msg['To'] = emails[0]
if len(emails)>1: if len(emails)>1:
if 'Cc' in msg: if 'Cc' in msg:
@ -148,9 +150,13 @@ class email_parser(object):
if priority: if priority:
msg['X-Priority'] = priorities.get(priority, '3 (Normal)') msg['X-Priority'] = priorities.get(priority, '3 (Normal)')
s = smtplib.SMTP() s = smtplib.SMTP()
print '1'
s.connect() s.connect()
print '2'
s.sendmail(self.email, emails[0], msg.as_string()) s.sendmail(self.email, emails[0], msg.as_string())
print '3'
s.close() s.close()
print '4'
print 'Email Sent To', emails[0], emails[1:] print 'Email Sent To', emails[0], emails[1:]
return True return True
@ -227,8 +233,8 @@ if __name__ == '__main__':
(options, args) = parser.parse_args() (options, args) = parser.parse_args()
parser = email_parser(options.userid, options.password, options.section, options.email, options.default, dbname=options.dbname) parser = email_parser(options.userid, options.password, options.section, options.email, options.default, dbname=options.dbname)
print
print '-.- ICI'
msg_txt = email.message_from_file(sys.stdin) msg_txt = email.message_from_file(sys.stdin)
print 'Mail Sent to ', parser.parse(msg_txt) print 'Mail Sent to ', parser.parse(msg_txt)