diff options
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/syncmail | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CVSROOT/syncmail b/CVSROOT/syncmail index 798d966..6940519 100755 --- a/CVSROOT/syncmail +++ b/CVSROOT/syncmail @@ -229,14 +229,14 @@ def blast_mail(subject, people, entries, contextlines, fromhost, replyto): s = StringIO() datestamp = time.strftime('%a, %d %b %Y %H:%M:%S +0000', time.gmtime(time.time())) - vars = {'author' : formataddr((name, address)), + vars = {'author' : quotename(name), #formataddr((name, address)), 'people' : COMMASPACE.join(people), 'subject' : subject, 'version' : __version__, 'date' : datestamp, } print >> s, '''\ -From: %(author)s +From: %(author)s <xcb-commit@lists.freedesktop.org> To: %(people)s''' % vars if replyto: print >> s, 'Reply-To: %s' % replyto |