source: trunk/ChangeLog @ 173

Last change on this file since 173 was 173, checked in by bas, 17 years ago

email2trac.py.in, email2trac.conf:

  • Added a new OS independent tmpdir variable
  • Property svn:mime-type set to text/x-trac-wiki
File size: 12.6 KB
RevLine 
[163]12007-XXXX
2
3        * Implemented python_egg_cache environment variable. Some trac
4          installations may depend on it, closes ticket #10, eg:
5                python_egg_cache : /var/cache/eggcache
6
7          Reported By: Anonymous
8          Fixed by   : Bas van der Vlies
9
[170]10        * Implemented update ticket fields via email subject line, eg:
11                Re: [email2trac] #7?owner=bas,priority=minor: Error in parsing
12
13                - Sets the owner of the ticket to: bas
14                - Sets the priority of the ticket to: minor
[171]15         
16          For some ticket fields there are only a limited number of allowed
17          values. The supplied value will be checked against this list. If it
18          is not vaild value the update will be cancelled.
[170]19
[171]20          Requested by: trac at yadan dotnet, Jan Parchmann, see ticket #7
[170]21          Implemented by: basv@sara.nl
22
[172]23        * Dropped support for version trac version 0.8. Removed all 0.8
24          specific code.
25          Fixed by: basv@sara.nl
[170]26
[173]27        * Added a new config parameter: tmpdir: /var/tmp, default is '/tmp'
28          All functions now use this new parameter and use OS independent
29          path functions.
30          Implemented by: basv@sara.nl
31
[161]322007-04-27
[150]33
[154]34        * Added check to catch an error when attachment size
[151]35          is too large, bug #1153
36          Author: Bas van der Vlies
[150]37
[151]38        * Wrap long line into user given length, use_textwrap: 72. Wraps lines
39          greater then 72 chars, #1123
40          Author: Bas van der Vlies &
41                  Rainer Sokoll (r.sokoll at intershop dot de)
42
43        * Fixed a dutch spelling, #1295
44          Author: Rainer Sokoll (r.sokoll at intershop dot de)
45
[149]46        * email2trac.py : blacklist (don't create ticket) mail from
47          MAILER-DAEMON to avoid loops
[152]48          Author: Michel Jouvin <jouvin at lal dot in2p3 dot fr>
49
[149]50        * msg.bad.txt : add an example of message from MAILER-DAEMON
[152]51          Author: Michel Jouvin <jouvin at lal dot in2p3 dot fr>
[149]52
[146]532006-12-08
[135]54        * email2trac.py:
55          - Added verbatim_format option default is: 1
[139]56          Added by : Bas van der Vlies
57
[136]58          - Added strip_signature option default is: 0
[139]59          Added by : Bas van der Vlies
[135]60
[139]61          - Fixed some unicode errors, thanks to japanes SPAM.
62            If we can not unicode email message then display which
63            charset must be installed in ticket description. Else we
64            trac crashed with unicode errors ;-(
65          Fixed by: Bas van der Vlies
66
[142]67          - Fixed statements: str + unicode, raises an exception if
68            non-ascii value in unicode object.
69
70          - Forgot to unicode the author. So we got an error if we use
71            the mailto_link option in email2trac.conf.
[141]72          Fixed by: Bas van der Vlies
73
[139]74        * delete_spam.py:
75          - Now works for version 0.10 with new API-functions
76          Fixed by: Bas van der Vlies
77
[144]78        * Makefile.in
79          - Added install-conf. Install email2trac.conf if there is none
80            installed.
81          Fixed by: Bas van der Vlies
82
[132]832006-10-27
[125]84
[129]85        * run_email2trac.c.
86       
87          - Setgid() must be called before setuid().
[125]88          Reported by:  Anonymous
89          Fixed    by:  Bas van der Vlies
[126]90
[129]91        * email2trac.py,
92       
93          - Fixed an error in Ticket Update. When ticket
[128]94          does not exists, proceed as if it is a new ticket
95          Fixed    by:  Bas van der Vlies
96
[129]97          - Fixed a strang bug in 0.9 version, if ticket update
98          is enabled and email has attachment(s). We are not allowed to
99          set the description and author field of the attachment else
100          the comment text is lost ;-(
[128]101          Fixed    by:  Bas van der Vlies
[129]102
103          - Fixed an error if enable_syslog and drop_spam is set. We get
104          an exception in the syslog if we use sys.exit(0), replaced by
105          return.
106          Fixed    by:  Bas van der Vlies
107
108        * delete_spam.py.
[124]109       
[129]110          - Trac version 0.10 made it easier to delete tickets.
111          Fixed    by:  Bas van der Vlies
112       
[121]1132006-10-10
[117]114        * Fixed race conditions in delete_spam.py and added some
115          debug code.
116          Fixed by   : Bas van der Vlies
[120]117
[117]118        * Added author and description field when attachment is
119          added to ticket. This is for trac version greater than
120          0.8.
121          Fixed by   : Bas van der Vlies
122          Thanks to Matthew Good for the hint
[120]123
[118]124        * Added drop_spam option, default = 0. If set then
125          mail marked as Spam is not accepted.
[120]126          Added by   : Bas van der Vlies
[117]127
[121]128        * Do not send notification if message is marked as Spam
129          and drop_spam is not set.
[120]130          Fixed by   : Bas van der Vlies
131
[113]1322006-10-02
[111]133        * Fixes possible segmentation faults in run_email2trac.c
134          Reported by: bcornec
135          Fixed by   : Bas van der Vlies
136
137        * Can set DEBUG level while configuring package, eg:
138          DEBUG=1 ./configure ( default : 0)
139          Reported by: syd at plug dot ca
140          Fixed By   : Bas van der Vlies
141
142        * delete_spam.py did not delete everything from the SQL tables
143          Reported by: brent at rcfile dot org
144          Fixed by   : Bas van der Vlies
145
[113]146        * Do not send notification when message is marked as Spam
[112]147          Fixed by   : Bas van der Vlies
148         
[106]1492006-08-28
[105]150        * fixes an error in the 'reply_all' setting
151          Thanks to and Patch by: ncarlson@ibsys.com
152
[106]153        * Added RPM spec file
154          Thanks to:  Jon Topper <jon@topper.me.uk>
155
[101]1562006-07-14
[95]157        * Use X11R5 install-sh to install email2trac components to hide
[98]158          native install program differences.
159          Author: Michel Jouvin <jouvin@lal.in2p3.fr>
[95]160
[98]161        * Fixed an error in saving attachments for new tickets for trac
162          versions greater then 0.9.
163          Fixed by: Bas van der Vlies
164
165        * When something went wrong save the offending email for debug
166          purposes.
167          Fixed by: Bas van der Vlies
168
[99]169        * delete_spam.py
170           - did not clean up the attachment table. So we got nasty new
171             mails with fake attachments.
172           - It works now for versions higher then 0.8
[100]173
174        * Finally understand the unicode/encode functions and hopefully
175          fixed the errors.
176          Fixed by: Bas van der Vlies
[103]177
178        * Remove the temporarly created attachment files.
179          Fixed by: Bas van der Vlies
[99]180       
[92]1812006-07-06
[95]182        * Fixed an error in already added attachments. Do not close
[85]183          the database connection.
184          Fixed by: Walter de Jong en Bas van der Vlies
185
[95]186        * Added enable_syslog option. If enabled log errors to syslog
[89]187          instead of stderr. If enabled no errors are send back to the
188          user.
[87]189          Implemented by: Bas van der Vlies
190
[95]191        * Fixed an error with updating tickets with attachments for trac
[87]192          versions 0.9 and 0.10. Field "id" is not known when a existing
193          ticket is fetched (Error = KeyError: 'id')
194          Fixed By: See tickets #258 and #449 on trac-hacks
195
[95]196        * Fixed and spell error, self.mail_addr must be self.email_addr
[88]197          Fixed by: Bas van der Vlies
198
[95]199        * Catch a LookupError in unicode/encode conversion in function
[91]200          get_body_text()
[89]201          Fixed by: Bas van der Vlies
202
[95]203        * Description field was always changed when updating the ticket
[90]204          via the web. Asked the mailing list for a solution and got one
205          ;-)
206          Patch/Suggestion by: Christian Boos
207          Applied by: Bas van der Vlies
208
[95]209        * Fixed an encoding problem when email_header is set to 1
[91]210          Fixed by: Bas van der Vlies
211
[95]212        * Fixed a bug in to_unicode() function.
[92]213          Fixed by: Bas van der Vlies
214
[95]215        * Fixed an unicodedata.normalize TypeError bug for filenames in the
[92]216          attachment function
217          Fixed by: Bas van der Vlies
218
219
[81]2202006-06-02
[95]221        * Added ticketing merging. To enable it there are two options for
[76]222          both options enable 'ticket_update' in email2trac.conf
[81]223          1 - Configure trac notification, eg:
[95]224                * (ticket address: ticket@test.nl)
[81]225                [notification]
226                smtp_enabled = true
227                smtp_always_cc = test@test.nl
228                smtp_server = localhost
[82]229                smtp_from =  ticket@test.nl
[76]230                always_notify_reporter = true
231
232          2 - Use the mailto_cc in email2trac.conf if you want to sent
[81]233              an email to the user and the trac ticket email address.
[76]234
235          With both options you get the right format of the subject line.
236
[95]237        * Use the short options for the install command. So it works for
[76]238          MacOSx Reported by: Nathaniel Irons.
[81]239
[95]240        * Updated inline documentation by Nathaniel Irons.
[76]241                 
[68]2422006-05-16
[95]243        * Fixed a bug when there was no plain text body.
[63]244          Reported by: Greg Deakyne
[95]245        * Fixed a small bug if default component owner is unknown.
[63]246          Just fill in some bogus info.
[95]247        * Use the short options for the install command. So it works for
[64]248          MacOSx
249          Reported by: Nathaniel Irons
[95]250        * Messages that has X-Virus-found in header are marked as SPAM
[68]251          Implemented by: Walter de Jong
[95]252        * Some modules are changed for version 0.10, Added and made some
[68]253          minor changes: Patch supplied by: Markus Tacker 
[95]254        * Ported delete_spam.py to version 0.9 and higher:
[69]255          Reported by: Nathaniel Irons
[63]256
[64]257
[58]2582006-03-08
259        - Fixed an bug for 0.9, there was a space in front of the ' ticket' directory.
260          removed it.
261          Reported by: mi-trachacks@moensolutions.com   
262          Fixed by: Bas van der Vlies
[95]263        * Fixed an exception error in delete_spam.py
[58]264          when shutil has not enough priveledges to remove the
265          attachments it is reported
266          Fixed by: Bas van der Vlies
[95]267        * email2trac.py: When you include the body tag, some
[58]268          mailers (like Thunderbird) will leave out the signature.
269          Therefore this version leaves out the body tag.
270          Fixed by: Walter de Jong
[95]271        * Added msg.txt for testing
[58]272          Fixed by: Bas van der Vlies
273
[46]2742006-02-01  Bas van der Vlies <basv@sara.nl>:
275        * Added Tikcet notification, send email when there is
276          a new ticket. Depends on notification setting in
277          trac.ini.
278          Implemented by: Kilian Cavalotti
[52]279        * Can use different template for ticket notification,
280          eg: alternate_notify_template: "a_tkt.css"
281          Implemented by: Kilian Cavalotti
[46]282        * Added reply_all config parameter. If set put all
283          CC-addresses from orginal mail in ticket CC-field.
284          Suggested by: Kilian Cavalotti
285        * Text in ticket description is also properly UTF-8
286          encoded
287          Implemented by: Kilian Cavalotti
288        * Removed reply_address from config file. Is not
289          necessary anymore. See Ticket notification.
290        * Added support for known users. If email address is
291          known then use the trac known username instead
292          of the email-address (only for trac version > 0.9)
293          Implemented by: Kilian Cavalotti
[48]294        * Fixed an error in saving attachments for version < 0.9.
295          Sometimes we got bogus attachments.
296          Fixed by: Walter de Jong
[50]297        * Added support to make an debian package
298          Implemented by: Bas van der Vlies
[46]299
[36]3002006-01-21  Bas van der Vlies <basv@sara.nl>:
301        * Fixed run_email2trac.c, did not work
302        * Added TRAC_SCRIPT_NAME to Makefile.in to
303          solve run_email2trac problem
304
305        Both errors reported by: kilian.cavalotti@lip6.fr
306
[33]3072006-01-20  Bas van der Vlies <basv@sara.nl>:
308        * A warning error is fixed by kilian.cavalotti@lip6.fr
309        * Several errors in make install ;-(, reported by
310          tacker
311
[23]3122006-01-15  Bas van der Vlies <basv@sara.nl>:
313        * Added configure script.
314
[18]3152006-01-10  Bas van der Vlies <basv@sara.nl>:
316        * Removed project_root from source and config file
317        * Adjust code so we can use mulitple stanza's in config file, eg:
318          [bas]
319          project: /data/trac/bas
320          spam_level: 3
321
322          use option "-p|--project bas" to select the stanza
323
[5]3242006-01-04  Bas van der Vlies <basv@sara.nl>:
325
326        * Fixed getopt for -f option
327        * Added suppport for different TRAC versions (0.8 and 0.9)
328
3292006-01-03  Michel Jouvin  <jouvin@lal.in2p3.fr>
330
331        * email2trac.py (ReadConfig) : allow project name relative to project root in configuration file
332       
333        * email2trac.py (TicketEmailParser.parse): save entire email for debugging only if debug >= 2
334
335        * run_email2trac.c: pass wrapper arguments to Python script, filtering out --file
336
337        * 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)
338
339        * 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)
340
3412005-12-22  Michel Jouvin  <jouvin@lal.in2p3.fr>
342
343        * Makefile: add a Makefile to build and install email2trac
344
345        * email2trac.py: migrate to Trac 0.9 API
346
3472005-12-21  Michel Jouvin  <jouvin@lal.in2p3.fr>
348
349        * run_email2trac.c: add error messages if DEBUG macro defined
350
351        * run_email2trac.c: add error testing and specific return values for each error
352
353        * run_email2trac.c: Move site specific paramaters to run_email2trac.h
354
355        * run_email2trac.h: include file to define site specific paramaters
356
3570.2.4 01/11/2005
358        Added email_header option if set then show TO/CC fields in
359        description of the ticket.
360
361        Fixed an error in the mailto URL. This was an old error that
362        supposed to be fixed but reoccured in this version.
363       
3640.2.3 31/10/2005
365        Fixed a bug with base64 encoded attachments/emails
366        Fixed by: Walter de Jong
367
3680.2.2 10/10/2005
369        according to RFC 2368 (titled "the mailto URL scheme") the mailto
370        URL can only work with short &body messages. It fails with long
371        messages and the link won't work. Therefore the mail body is
372        no longer copied into the mail reply.
373
3740.2.1 10/07/2005
375        body of reply email looks better
376
377
3780.2   10/07/2005
379        mailto is replaced by a html mailto to line. If
380        you reply to the ticket via this link then an
381        email client is started with some default values:
382                To: <reporter>
383                Subject: Re: <orginal subject>
384                Body: email_comment <orginal text>
385
386        email2trac.conf:
387                email_comment: # (default:  >)
388
389               
390
Note: See TracBrowser for help on using the repository browser.