source: trunk/ChangeLog @ 176

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

email2trac.py.in, ChangeLog?:

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