source: emailtotracscript/trunk/ChangeLog @ 91

Last change on this file since 91 was 91, checked in by bas, 18 years ago

EmailtoTracScript?:

email2trac.py.in:

  • Fixed and unicode bug in email_header_txt() Only triggered if email_header is set to 1
  • Property svn:mime-type set to text/x-trac-wiki
File size: 6.9 KB
RevLine 
[85]12006-
2        - Fixed an error in already added attachments. Do not close
3          the database connection.
4          Fixed by: Walter de Jong en Bas van der Vlies
5
[89]6        - Added enable_syslog option. If enabled log errors to syslog
7          instead of stderr. If enabled no errors are send back to the
8          user.
[87]9          Implemented by: Bas van der Vlies
10
11        - Fixed an error with updating tickets with attachments for trac
12          versions 0.9 and 0.10. Field "id" is not known when a existing
13          ticket is fetched (Error = KeyError: 'id')
14          Fixed By: See tickets #258 and #449 on trac-hacks
15
[88]16        - Fixed and spell error, self.mail_addr must be self.email_addr
17          Fixed by: Bas van der Vlies
18
[91]19        - Catch a LookupError in unicode/encode conversion in function
20          get_body_text()
[89]21          Fixed by: Bas van der Vlies
22
[90]23        - Description field was always changed when updating the ticket
24          via the web. Asked the mailing list for a solution and got one
25          ;-)
26          Patch/Suggestion by: Christian Boos
27          Applied by: Bas van der Vlies
28
[91]29        - Fixed an encoding problem when email_header is set to 1
30          Fixed by: Bas van der Vlies
31
[81]322006-06-02
[76]33        - Added ticketing merging. To enable it there are two options for
34          both options enable 'ticket_update' in email2trac.conf
[81]35          1 - Configure trac notification, eg:
[82]36                - (ticket address: ticket@test.nl)
[81]37                [notification]
38                smtp_enabled = true
39                smtp_always_cc = test@test.nl
40                smtp_server = localhost
[82]41                smtp_from =  ticket@test.nl
[76]42                always_notify_reporter = true
43
44          2 - Use the mailto_cc in email2trac.conf if you want to sent
[81]45              an email to the user and the trac ticket email address.
[76]46
47          With both options you get the right format of the subject line.
48
49        - Use the short options for the install command. So it works for
50          MacOSx Reported by: Nathaniel Irons.
[81]51
[82]52        - Updated inline documentation by Nathaniel Irons.
[76]53                 
[68]542006-05-16
[63]55        - Fixed a bug when there was no plain text body.
56          Reported by: Greg Deakyne
57        - Fixed a small bug if default component owner is unknown.
58          Just fill in some bogus info.
[68]59        - Use the short options for the install command. So it works for
[64]60          MacOSx
61          Reported by: Nathaniel Irons
[68]62        - Messages that has X-Virus-found in header are marked as SPAM
63          Implemented by: Walter de Jong
64        - Some modules are changed for version 0.10, Added and made some
65          minor changes: Patch supplied by: Markus Tacker 
[69]66        - Ported delete_spam.py to version 0.9 and higher:
67          Reported by: Nathaniel Irons
[63]68
[64]69
[58]702006-03-08
71        - Fixed an bug for 0.9, there was a space in front of the ' ticket' directory.
72          removed it.
73          Reported by: mi-trachacks@moensolutions.com   
74          Fixed by: Bas van der Vlies
75        - Fixed an exception error in delete_spam.py
76          when shutil has not enough priveledges to remove the
77          attachments it is reported
78          Fixed by: Bas van der Vlies
79        - email2trac.py: When you include the body tag, some
80          mailers (like Thunderbird) will leave out the signature.
81          Therefore this version leaves out the body tag.
82          Fixed by: Walter de Jong
83        - Added msg.txt for testing
84          Fixed by: Bas van der Vlies
85
[46]862006-02-01  Bas van der Vlies <basv@sara.nl>:
87        * Added Tikcet notification, send email when there is
88          a new ticket. Depends on notification setting in
89          trac.ini.
90          Implemented by: Kilian Cavalotti
[52]91        * Can use different template for ticket notification,
92          eg: alternate_notify_template: "a_tkt.css"
93          Implemented by: Kilian Cavalotti
[46]94        * Added reply_all config parameter. If set put all
95          CC-addresses from orginal mail in ticket CC-field.
96          Suggested by: Kilian Cavalotti
97        * Text in ticket description is also properly UTF-8
98          encoded
99          Implemented by: Kilian Cavalotti
100        * Removed reply_address from config file. Is not
101          necessary anymore. See Ticket notification.
102        * Added support for known users. If email address is
103          known then use the trac known username instead
104          of the email-address (only for trac version > 0.9)
105          Implemented by: Kilian Cavalotti
[48]106        * Fixed an error in saving attachments for version < 0.9.
107          Sometimes we got bogus attachments.
108          Fixed by: Walter de Jong
[50]109        * Added support to make an debian package
110          Implemented by: Bas van der Vlies
[46]111
[36]1122006-01-21  Bas van der Vlies <basv@sara.nl>:
113        * Fixed run_email2trac.c, did not work
114        * Added TRAC_SCRIPT_NAME to Makefile.in to
115          solve run_email2trac problem
116
117        Both errors reported by: kilian.cavalotti@lip6.fr
118
[33]1192006-01-20  Bas van der Vlies <basv@sara.nl>:
120        * A warning error is fixed by kilian.cavalotti@lip6.fr
121        * Several errors in make install ;-(, reported by
122          tacker
123
[23]1242006-01-15  Bas van der Vlies <basv@sara.nl>:
125        * Added configure script.
126
[18]1272006-01-10  Bas van der Vlies <basv@sara.nl>:
128        * Removed project_root from source and config file
129        * Adjust code so we can use mulitple stanza's in config file, eg:
130          [bas]
131          project: /data/trac/bas
132          spam_level: 3
133
134          use option "-p|--project bas" to select the stanza
135
[5]1362006-01-04  Bas van der Vlies <basv@sara.nl>:
137
138        * Fixed getopt for -f option
139        * Added suppport for different TRAC versions (0.8 and 0.9)
140
1412006-01-03  Michel Jouvin  <jouvin@lal.in2p3.fr>
142
143        * email2trac.py (ReadConfig) : allow project name relative to project root in configuration file
144       
145        * email2trac.py (TicketEmailParser.parse): save entire email for debugging only if debug >= 2
146
147        * run_email2trac.c: pass wrapper arguments to Python script, filtering out --file
148
149        * email2trac.py (TicketEmailParser.debug_attachments): set tmp file created for debugging writable by anybody (to avoid problem if the script is run with a different uid during tests)
150
151        * email2trac.py (TicketEmailParser.parse): set tmp file created for debugging writable by anybody (to avoid problem if the script is run with a different uid during tests)
152
1532005-12-22  Michel Jouvin  <jouvin@lal.in2p3.fr>
154
155        * Makefile: add a Makefile to build and install email2trac
156
157        * email2trac.py: migrate to Trac 0.9 API
158
1592005-12-21  Michel Jouvin  <jouvin@lal.in2p3.fr>
160
161        * run_email2trac.c: add error messages if DEBUG macro defined
162
163        * run_email2trac.c: add error testing and specific return values for each error
164
165        * run_email2trac.c: Move site specific paramaters to run_email2trac.h
166
167        * run_email2trac.h: include file to define site specific paramaters
168
1690.2.4 01/11/2005
170        Added email_header option if set then show TO/CC fields in
171        description of the ticket.
172
173        Fixed an error in the mailto URL. This was an old error that
174        supposed to be fixed but reoccured in this version.
175       
1760.2.3 31/10/2005
177        Fixed a bug with base64 encoded attachments/emails
178        Fixed by: Walter de Jong
179
1800.2.2 10/10/2005
181        according to RFC 2368 (titled "the mailto URL scheme") the mailto
182        URL can only work with short &body messages. It fails with long
183        messages and the link won't work. Therefore the mail body is
184        no longer copied into the mail reply.
185
1860.2.1 10/07/2005
187        body of reply email looks better
188
189
1900.2   10/07/2005
191        mailto is replaced by a html mailto to line. If
192        you reply to the ticket via this link then an
193        email client is started with some default values:
194                To: <reporter>
195                Subject: Re: <orginal subject>
196                Body: email_comment <orginal text>
197
198        email2trac.conf:
199                email_comment: # (default:  >)
200
201               
202
Note: See TracBrowser for help on using the repository browser.