Modify ↓
Opened 19 years ago
Closed 19 years ago
#2424 closed defect (fixed)
A Japanese From header is troubled.
Reported by: | Owned by: | Emmanuel Blot | |
---|---|---|---|
Priority: | normal | Milestone: | 0.10 |
Component: | ticket system | Version: | 0.9 |
Severity: | normal | Keywords: | notification email |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
I was able to cope with the following patch.
--- Notify.py.old 2005-12-01 12:10:39.509663568 +0900 +++ Notify.py 2005-12-01 12:13:02.764885464 +0900 @@ -130,7 +130,8 @@ msg['X-Trac-Project'] = projname msg['X-URL'] = self.config.get('project','url') msg['Subject'] = Header(self.subject, 'utf-8') - msg['From'] = '%s <%s>' % (projname, self.from_email) + encodedProjname = Header(projname, "utf-8") + msg['From'] = '%s <%s>' % (encodedProjname, self.from_email) msg['Sender'] = self.from_email msg['Reply-To'] = self.replyto_email msg['To'] = rcpt
Attachments (0)
Change History (4)
comment:1 by , 19 years ago
Component: | general → ticket system |
---|---|
Keywords: | notification email added |
Owner: | changed from | to
Status: | new → assigned |
comment:2 by , 19 years ago
Milestone: | 0.9.1 → 0.9.2 |
---|
comment:3 by , 19 years ago
Milestone: | 0.9.3 → 0.9.4 |
---|
comment:4 by , 19 years ago
Milestone: | 0.9.4 → 0.10 |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Should be addressed by [2799]