source: trunk/ChangeLog @ 182

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

email2trac.py.in, ChangeLog?:

  • applied patch in ticket #2

email2trac.spec, debian/changelog:

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