Changeset 46
- Timestamp:
- 01/31/06 14:25:17 (17 years ago)
- Location:
- emailtotracscript/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
emailtotracscript/trunk/ChangeLog
r36 r46 1 2006-02-01 Bas van der Vlies <basv@sara.nl>: 2 * Added Tikcet notification, send email when there is 3 a new ticket. Depends on notification setting in 4 trac.ini. 5 Implemented by: Kilian Cavalotti 6 * Added reply_all config parameter. If set put all 7 CC-addresses from orginal mail in ticket CC-field. 8 Suggested by: Kilian Cavalotti 9 * Text in ticket description is also properly UTF-8 10 encoded 11 Implemented by: Kilian Cavalotti 12 * Removed reply_address from config file. Is not 13 necessary anymore. See Ticket notification. 14 * Added support for known users. If email address is 15 known then use the trac known username instead 16 of the email-address (only for trac version > 0.9) 17 Implemented by: Kilian Cavalotti 18 1 19 2006-01-21 Bas van der Vlies <basv@sara.nl>: 2 20 * Fixed run_email2trac.c, did not work -
emailtotracscript/trunk/email2trac.py.in
r45 r46 113 113 self.DEBUG = 0 114 114 115 if parameters.has_key('reply_address'):116 self.CC = int(parameters['reply_address'])117 else:118 self.CC = 0119 120 115 if parameters.has_key('mailto_link'): 121 116 self.MAILTO = int(parameters['mailto_link'])
Note: See TracChangeset
for help on using the changeset viewer.