source: trunk/ChangeLog @ 471

Last change on this file since 471 was 471, checked in by bas, 14 years ago

Perparing for 1.6.0 release

  • Property svn:mime-type set to text/x-trac-wiki
File size: 33.7 KB
RevLine 
[471]12010-XX-XX
[462]2    * Fixed an Unicode error in strip_quotes
3    Author: Bas van der Vlies
[465]4
5    * The attachment filename may not contain '\n' and '\r'
6      characters.
7    Reported by: Jean-Paul Duyx <jean-paul dot duyx at vancis dot nl>
8    Fixed by; Bas van der Vlies
[471]9
10   * Applied a patch to support workflow for all transitions. It will
11     also honour the permission model if set, closes #198
12     an example how to use it:
13        email2trac.conf:
14                [project]
15                workflow_closed: reopen
16                workflow_infoneeded: provideinfo
17
18        trac.ini:
19                [ticket-workflow]
20                reopen = closed -> reopened
21                reopen.permissions = TICKET_CREATE
22                reopen.operations = del_resolution
23               
24                provideinfo = infoneeded -> moreinfo
25                provideinfo.permissions = TICKET_CREATE
26                provideinfo.name = info provided
27
28     Authors: kroseneg add schmidham dot net and Bas van der Vlies
29
[458]302010-07-23
[429]31    * logging of spam message was wrong. Fixed it,
32       - set.logger.info must be self.logger.info
33    Author: Bas van der Vlies
[432]34
35    * logging of notification error was wrong. Fixed it, closes #212
36       - set.logger.error must be self.logger.error
37    Reported by:  adam dot lucke at srd-berlin dot de
38    Author: Bas van der Vlies
[443]39
[456]40    * Mail was lost when 'ticket_update' was disabled and a ticket
41      reply was detected.
42    Author: Bas van der Vlies
43
[443]44    * Removed a lot of obsolete code due to using UserDict
45    Author: Bas van der Vlies
[429]46 
[426]472010-07-21
[400]48    * added a new option 'ticket_permission_system'. Can be set to:
[399]49      - trac: Then it will check if the report has the right trac
50        permission to create or modify a ticket. closes #202
51
52      - update_restricted_to_participants: A ticket update is allowed only if:
53        1) the updater is the reporter,
54        2) the updater is in the CC
55        3) the updater has trac permission to update the ticket.
56        If the update is denied, a new ticket will be generated instead as to
57        not loose the issue . closes #203
58
59    Authors:  kris add tsampa dot org & Bas van der Vlies
60
[413]61
62   * Switch for logging to the python logging module and add some new
63     options to control the behaviour inspired by the trac logging module:
[423]64      - log_type, default syslog
65      - log_level, default info
66      - log_format, email2trac <project name>
67      - log_file, none
[413]68
[424]69     Can be set to the same values as trac logging
70
[417]71     Author: Bas van der Vlies
72
73   * removed trac 0.9 support
[413]74     
[426]752010-07-12
[393]76  * Do not check if notification is enabled, let Trac determine if a
77    notfication is enabled and which interface/plugin is used, eg:
[395]78    announcerplugin
[393]79
[395]80    Author: Bas van der Vlies
[393]81
[390]822010-07-06
83  * Fixed several errors in ticket update:
84     - Changed the regex expression. It must end with ':'.   
85     - The email was lost if the ticket id was unknown. If ticket
86       id is unknown a new ticket will be created.
87
88    Reported by: SARA grid team
89    Fixed by: Bas van der Vlies
90       
91
92
[386]932010-06-28
94  * Ticket update for version 0.12 did not work, closes #209
95    Author: mark underscore kids add yahoo dot com
96    Applied by: Bas van der Vlies
[388]97
98  * enabled workflow and notification for trac version 0.12
99    Author: Bas van der Vlies
100
[384]1012010-06-23
102  * A better fix for attachments with special characters, closes #206
103    Reported by: karsten dot rohrbach add wibas dot de
104    Fixed by: Bas van der Vlies
105
1062010-06-22
[380]107  * When debug is enabled email2trac chokes on non-ascii (utf8)
108    characters in ticket fields, closes #205
109    Reported by: eirik dot schwenke add nsd dot uib dot no
110    Fixed by: Bas van der Vlies
111
112  * Email2trac crashes when attachment filename contains non-ascii       
113    characters, closes #206
114    Reported by: karsten dot rohrbach add wibas dot de
115    Fixed by: Bas van der Vlies
116
[372]1172010-06-09
[370]118  * Support added for trac version 0.12, closes #201
119    Reported by: mark_kids add yahoo dot com
120    Fixed by: Bas van der Vlies
121   
[366]1222010-05-25
123  * delete_spam still used the trac_version in email2trac.comf
124    Fixed by: Bas van der Vlies
125
126  * email2trac crashed when ticket_update_by_subject was enabled.
127    Fixed by: Bas van der Vlies
128
[363]1292010-05-20
[349]130  * email2trac crashed if there are '/' and '\' characters in a filename.
131    These characters are now being replace by '_', closes #196
132    Reported by: jcuppen add hethooghuis dot nl
133    Fixed by: Bas van der Vlies
[347]134
[349]135  * Problems with attachments were not reported for ticket updates
136    Fixed by: Bas van der Vlies
[347]137
[350]138  * delete_spam changes:
139     - only support trac version greater then 0.10
140     - added -n/--dry-run option
141     - added -v/--verbose option
142
143    Author: Bas van der Vlies
144
[352]145  * Enhancement for ticket prefixes (email2trac.conf). The ticket
[357]146    fields status and resolution are not forbidden any more. closes #195
[352]147    Author: Konstantin Ryabitsev <icon add mricon dot com>
148    Applied by: Bas van der Vlies
149
[357]150  * Added a new option. It is all in the name:
151      * ticket_update_by_subject, default value is off
[360]152      * ticket_update_by_subject_lookback, default 30 days
[357]153
154    When this option is enabled and there is no ticket number found
155    in a reply mail. It will try to find a ticket summary that matches
156    the mail subject line. If found then append the mail to this
157    ticket, closes #188
158    Author: Konstantin Ryabitsev <icon add mricon dot com> & Bas van der Vlies
159    Applied by: Bas van der Vlies
[360]160
161  * Added DiscussionPlugin support, closes 197. For description see:
162     - https://trac-hacks.org/wiki/DiscussionPlugin
163
164   Author: ibarton add fit dot vutbr dot cz (alias Blackhex)
165   Applied by with some modification: Bas van der Vlies
166
[363]167  * Trac version is now automatically determined. No need anymore for
168    trac_version in /etc/email2trac.conf
169    Author: Bas van der Vlies
170
[345]1712010-03-20
172
173  * Fixed a bug reporter was always set to the default value specified
174    in trac.ini.
175
176    Reported by: Jean-Paul Duyx <jean-paul dot duyx at sara dot nl>
177    Fixed by: Bas van der Vlies
178
179  * If reported field is overriden then use it for all trac functions
180    including notification, closes #187
181
182    Reported by: shildebrand at venturebeat dot com
183    Fixed by: Bas van der Vlies
184
[333]1852010-03-24
186
187  * Added configure option '--with-install_user=<name>', default user is 'root'.
188    The specified user is used for installation so we can install the
189    package as non-root user, closes #182.
190
191    Reported by: shildebrand at venturebeat dot com
192    Fixed by: Bas van der Vlies
193
194  * Re-arranged some code so that we can override ticket fields in
195    email2trac.conf, eg:
196     - default_reporter : email2trac
197
198    Will set the reporter ticket field to email2trac for all mail, closes #182
199
200    Reported by: shildebrand at venturebeat dot com
201    Fixed by: Bas van der Vlies
202
203  * Fixed a bug when there is no subject field in the message, closes #179
204    The fix in the 1.2.0 version did not work.
205    Reported by: xurizaemon and John Donners (SARA)
206    Fixed by: Bas van der Vlies
207
208  * We do not write any files when dry run mode is enabled.
209    Fixed by: Bas van der Vlies
210
[337]211  * Fixed several issues when DEBUG is enabled with printing non-ascii
[333]212    characters, see #184
213    Reported by: hju add jochenkuhl dot de
214    Fixed by: Bas van der Vlies
215
[323]2162010-02-24
[322]217  * Added an option to run_email2trac to set the PYTHON_EGG_CACHE
218    environment variable (-e|--eggcache), closes #174
219    Author: pepl at cpan dot org
220    Applied by: Bas van der Vlies
221
222  * Ticket fields can be set inline an email: closes #171, #88
223     - controlled by parameter 'inline_properties', default behaviour off
224     - see https://subtrac.sara.nl/oss/email2trac/wiki/Email2tracParse#Updateticketfields
225
226    Author: samuel at hoffstaetter dot com
227    Applied by: Bas van der Vlies
228
229  * Fixed a bug when there is no subject field in the message, closes #179
230    Reported by: xurizaemon
231    Fixed by: Bas van der Vlies
232
233  * Added unicode support attachment filenames, closes #177
234    Reported by: obwandner add concertare dot de
235    Fixed by: Bas van der Vlies
236
237  * Email to blog did not work at all. It works but it can not handle
238    attachments. see #175.
239    Reported by: oland dot wells add gmail.com
240    Patches    : Bas van der Vlies
241
242  * Show errors when we can not include attachments in the ticket, see #165
243    Requested by: hju add jochenkuhl dot de and  dereks add cool-st dot com
244    Fixed by: Bas van der Vlies
245
246  * Added a new option 'email_triggers_workflow'. When a ticket is closed and
247    an update is received via email. The ticket will be reopened or triggers
248    a ticket workflow. This action can be skipped if we set the
249    email_triggers_workflow option to 0. The default value is 1, closes #180
250    Author: zac add sprackettd dot com
251    Applied by: Bas van der Vlies
252
[303]2532010-01-11
[290]254  * Workflow option did not work, closes #157
255    Reported by: thomas dot moschny at gmx dot de
256    Fixed  by: Bas van der Vlies & Thomas Moschny
257
258  * When a ticket is updated via email. We must set a changelog id,
259    closes #156
260    Reported by: Chris dot Nelson at SIXNET dot com
261    Fixed by: Bas van der Vlies
262
263 * Changed all 'str =' assignments to 's =' to solve conflicts with
264   the builtin str function
[298]265   Fixed by: Bas van der Vlies
[290]266
[298]267 * Python egg cache enviroment setting was ignored by email2trac.
268   closes #163
269   Author: Dennis McRitchie ( dmcr at Princeton dot EDU )
270   Applied by: Bas van der Vlies
271
272 * Disabled code so the following line will not be displayed anymore
273   as comment in a ticket:
[303]274     - This message has x attachment(s)
[298]275   Suggested by: dereks at realloc dot net, closes ticket #165
276   Fixed by    : Bas van der Vlies
277
278
279 * Added a new parameter strip_content_types. So we can strip attachments
280   based on content type, eg:
[303]281     - strip_content_types: application/pgp-signature, application/mac-binhex40
[298]282
283   Will strip attachments that has these content_types.
284   Authors:  otto at bergerdata dot de and Bas van der Vlies
285
286 * FIxed an error when files where added with characters that needed to be
287   escaped. Both email2trac and trac escaped the filenames. We removed the
288   code from email2trac an let trac handle the escaping, closes #149
289
290   Reported by: hju att jochenkuhl dot de
291   Fixed by: Bas van der Vlies
292
293 * Added a new parameter:
[303]294     - subject_field_separator, default value is &
[298]295
296   This is used to set tickets fields via the subject line. It used to
297   be , .For backwards compatibility we introduced this parameter.
298   closes #166
299   Suggested by: Dennis McRitchie ( dmcr at Princeton dot EDU )
300   Fixed by    : Bas van der Vlies
301
[303]302 * Prevent mail loop. We could set the CC ticket field to
303   the ticket email address.
304    - For a new ticket and reply_all is set.
305    - If the ticket CC field is updated via the subject line.
[304]306
307   Also prevent setting the reporter address to the ticket email
308   address.
309
[303]310   closes #172
311   Reported by: otto at bergerdata dot de
312   Fixed vy   : Bas van der Vlies
313
314
315
316
[285]3172009-09-02
[278]318  * Implemented a new feature to drop the HTML version of multipart/alternative
[279]319    message part. Such a message part contains the same info. The info is sent
[280]320    in different formats and the client can decide which version to use.
[279]321    closes #30
[278]322
[283]323    to enable in email2trac.conf:
324        - drop_alternative_html_version: 1
325
[278]326    Implemented by: Bas van der Vlies
327
[276]3282009-08-20
[271]329  * updated aclocal.m4 to support python versions 2.5 and 2.6, closes #137
330  * use the email addres in the reporter field, closes #136
[269]331  * Fixed an error in blog update function
332
[271]333    All Fixes by: Bas van der Vlies
[269]334
[274]335  * if alternate notify template is set then also set ticket id. It will show
336    up as ticket change, closes #142
337    Reported by: hju att jochenkuhl dot de
338    Fixed by: Bas van der Vlies
339
[272]340  * Error in urllib.quote(filename) could not handle unicode
341    filenames, closes #138
342    Reported by: debacle at debian dot org
343    Applied  by: Bas van der Vlies
344
[274]345  * Fixed an error when debug is on and the body message contains unicode
346    strings, closes #144
347    Reported by: trumbitta at gmail dot com
348    Applied by: Bas van der Vlies
349
[276]350 * default trac version for email2trac is now updated to 0.11
351
[263]3522009-04-09
[256]353  * Fixed in parsing the reflow parameter, closes #123
354    Reported by: tomasz dot sterna at sensisoft dot com
355    Fixed by: Bas van der Vlies
356
[259]357   * implemented workflow for tickets that are reopend, closes #70
358     Reported by: hju att jochenkuhl dot de
359     Author by: Bas van der Vlies
360
[267]361   * added FullBlogPlugin support. So we can update/create the blogs
362     via email, #116
363     mail with subject line: <blog:.*> will create/update a blog entry.
[260]364     Authors: Bas van der Vlies & lucas dot eisenzimmer at t-systems-mms dot com
[261]365   
[262]366   * email2trac require at least python version 2.4, closes #131
367     Reported by: otto at bergerdata dot de
368     Fixed by: Bas van der Vlies
[260]369
[262]370   * We can now set ticket fields for a new ticket via the 'subject' line:
371       - Subject: <description> #?<field=value>[,<field=value>]*
372     closes #130
373     
374     Requested by: Steve
375     Implemented by: Bas van der Vlies
376
[254]3772009-01-30
[249]378  * applied patch exit with non-zero return code on failure, closes #117
379    Author: admin-egon at ikw dot uos dot de
380    Applied by : Bas van der Vlies
381
[251]382  * Ticket update with attachments did not work, closes #120
383    Reported by: Alexander Verkooijen (alexander at sara dot nl)
384    Fixed by: Bas van der Vlies
385
386  * Removed obsolete code
387    Author :  Bas van der Vlies
388
389  * When email address is known then the author name and email address
390    is used from the preference tab.  The match is case insensitive,
391    closes #118
392    Reported by: Pusateri, Matthew <Matthew dot Pusateri at tekelec dot com
393    Fixed by: Bas van der Vlies
394
[254]395  * Ticket id is not reported as ticket change, eg:
396    {{{
397        *   id  set to 118
398    }}}
[251]399    Author :  Bas van der Vlies
400
[246]4012009-01-19
[232]402  * applied patch to support RFC 3676 (format=flowed), closes #94, #99
[231]403    This patch adds a new option: reflow (default: False/0)
404    Author: ben at fetchsoftworks dot com
405    Applied by : Bas van der Vlies
406
407  * Fixed a bug in reply_all option, closes #95
408    Reported by: gmcgrath at princeton dot edu
409    Fixed by: Bas van der Vlies
410
[233]411  * Applied a patch for default values for custom ticket fields, closes #101
412    Author: ben at fetchsoftworks dot com
413    Applied by: Bas van der Vlies
414
[245]415  * Fixed a bug that a ticket was not updated when we only update ticket
416    field(s) via email (empty body email), closes #113
[241]417    Reported by: winnie at debian dot org
418    Fixed by: Bas van der Vlies
419 
[245]420  * Better support for inline attachments and multiple body parts, closes #105,
421    #80. Inline images in email are also shown in the ticket with the trac
422    [[Image(..)]] macro.
[241]423    Author: ben at fetchsoftworks dot com
424
[246]425  * More versatile support for Apple attachments. closes #106
[245]426    for explanation read:
427    - https://subtrac.sara.nl/oss/email2trac/wiki/Email2tracConfiguration#AppleAttachmentsoptions
[241]428    Author: ben at fetchsoftworks dot com
429
[245]430  * Applied a patch that solves problems with Window attachments, closes #110,
431    #93.
[242]432    Author: martin.poeschmann add eiskonzept dot com   
433    Applied by: Bas van der Vlies
434
[228]4352008-10-13
[213]436  * Fixed a bug in email_header formating. When an email2trac ticket
437    was updated via the web interface it would trigger a description
438    field update.
439
440    Fixed by: Bas van der Vlies
441
[216]442  * Reopen closed ticket if an update is received via email, closes #70
443    Requested by: Garrett McGrath gmcgrath add princeton dot edu
444    Fixed by: Bas van der Vlies
445
446
[217]447  * The [DEFAULT] section did not work any more due to change to internal
448    trac parser, closes ticket #73
449    Reported by: email2trac at bulk dot squeakyblue dot com
450    Fixed by: Bas van der Vlies
[218]451   
452  * black_list paramter must be comma-separated as mentioned in the
[225]453    documentation (#75) and removed the default value
454    "MAILER-DAEMON@" (#74)
[218]455    Reported by: email2trac at bulk dot squeakyblue dot com
456    Fixed by: Bas van der Vlies
[217]457
[219]458  * If a blank email is sent with just an attachment, a blank
459    comment is appended to the comments. fixed closes #89
[217]460
[219]461    Reported/Fixed by: ???
462    Applied by: Bas van der Vlies
463
[223]464  * added white_list parameter.  If set then only mail is accepted if
465    sender matches.
466    Author: Bas van der Vlies, jon dot wbstr at gmail dot com
467
[226]468  * added recipient_list parameter.  If set then only mail is accepted if
469    to-field matches. This only uses when people use a drop box to accept
[231]470    email for several email addresses, (closes #77)
[226]471    Author: Bas van der Vlies, jon dot wbstr at gmail dot com
[223]472
[225]473  * alternate notify template did not work for trac version 0.11
474    (#90).
[223]475    Reported/Fixed by: hju at jochenkuhl dot de
476    Applied by       : Bas van der Vlies
477
478  * added 'alternate_notify_template_update'. When set this notify
[225]479    template name will be used for ticket updates (#90).
[223]480    Author: Bas van der Vlies, hju at jochenkuhl dot de
481   
482   
[210]4832008-05-30
[205]484  * Fixed debian control file. Package can be build on any platform and
485    not only on i386 platforms:
[198]486
[205]487    Author: Christian Iversen ci add sikkerhed dot org
488    Applied by: Bas van der Vlies
[198]489
[205]490  * We now use the trac configuration parser routine
491    Author: andrei2102 add gmail dot com
492    Applied by: Bas van der Vlies
[200]493
[205]494  * Added new command line option -n/--dry-run. This option only show
495    what commands will be executed.
496    Author: Bas van der Vlies
[202]497
[205]498  * the default values for tickets can now also be set in
499   'email2trac.conf'. So you can use different values when an email
500    is converted to a ticket. The ticket value is set to this rules
501     - email2trac.conf
502     - trac.ini
[202]503
[205]504    email2trac.conf use same format as trac.ini, eg email2trac.conf:
505      [project]
506      default_component : test
[202]507
[205]508    closes request #55, for more info see:
509    - https://subtrac.sara.nl/oss/email2trac/wiki/Email2tracConfiguration
[204]510
[205]511     Requested by: greg dot deakyne at etapestry dot com
512     Implemented by: Bas van der Vlies
[204]513
[205]514  * Fixed a bug in ticket_update. It failed when project did not have
515    ticket component field,  closes bug #62
516    Reported by: gernot dot hillier add siemens dot com
517    Fixed by: Bas van der Vlies
[204]518         
[205]519  * run_email2trac.c:
520     - can no longer segfault after a failed malloc.
521     - after set*id failure, you'll get a diagnostic (or at least
522       nonzero exit status) and it won't attempt the exec.
[202]523
[205]524    Author: Jim Meyering jim add meyering dot net
[207]525    Applied by: Bas van der Vlies
[203]526
[207]527  * Made some approvements to spam function:
528     - If the he X-Spam-Score header is present, but has no value
529        email2trac will crash, closes #63
530
531     - Added config option which header field we must check
532       for determing if mail is Spam, eg:
533        - spam_header : X-Spam-Level (default: X-Spam-Score)
534 
535    Author: email2trac at bulk dot squeakyblue dot com
536    Applied by: Bas van der Vlies
537
[208]538
539  * black_list  is now a configuration option and is used to deny
540    email addesses, default value is: MAILER-DAEMON@
541
542    Can specifiy more then one email adress seperated by ',', eg:
543    black_list : basv@sara.nl, walter@sara.nl
544
[210]545    closes #39, #56
[207]546   
[208]547    Author: Bas van der Vlies
[210]548
549  * if mailto_link + german umlaut problem is fixed, closes #60
550    Reported by: alex at pirsig dot net
551    Fixed by: Bas van der Vlies
[208]552   
[207]553
[194]5542008-02-04
[189]555        * Added version check and exit if we do not support the trac version
556          closes bug #23
557          Reported By: Marc Zahnlecker m.zahnlecker at lxbyte dot de
[187]558
[192]559          Fixed By: Bas van der Vlies
560
[190]561        * Added check if syslog module is available. If it is not available
562          disable the syslog functionality.
[192]563          Author: michael.th add gmx dot net
[190]564
[192]565          Implemented by: Bas van der Vlies
566
[191]567        * Added strip_quotes function, default settings:
568                strip_quotes: <int> (default: 0)
569                mail_quote: <quote chars> (default: "> ")
[192]570          Author: nicolasm @ opera dot com
[191]571
[192]572          Implemented by: Bas van der Vlies
573
574        * Added patch to make notify email work with trac 0.11 dev.
575          Author: tbaschak add ktc dot mb dot ca       
576          Author: andrei2102 add gmail dot com
577
578          Implemented by: Bas van der Vlies
[194]579
580        * greedy matching in Subject line, We must stop after the first ':'
581          else we get wrong values for ticket fields when we update a ticket
582          via mail, closes ticket #37
583          Reported by: dmaziuk at bmrb dot wisc dot edu
584          Fixed    by: Bas van der Vlies
585
586        * added IGNORECASE flag to regular expression for black list. This
587          is a quick fix, still want to implement this as configuration
588          option, closed bug #39
589
590          Reported By: jodok at lovelysystems dot com
591          Fixed by   : Bas van der Vlies
592
593        * When a known user mails a ticket. We will set the Reporter to
594          its login name, closes bug #33, #41
595
596          Also add configuration option:
597                ignore_trac_user_settings : 0 (default value)
598
599          This option will skip the email address to trac user login name
600          mapping.
601
602          Reported by: anonymous
603          Fixed by   : Bas van der Vlies
604
605       
606        * SPAM detection was only for new mails not for ticket updates,
607          closed ticket #44
608
609          Reported by: Bas van der Vlies
610          Fixed by   : Bas van der Vlies
611         
[192]612           
[184]6132007-07-18
[163]614
615        * Implemented python_egg_cache environment variable. Some trac
616          installations may depend on it, closes ticket #10, eg:
617                python_egg_cache : /var/cache/eggcache
618
619          Reported By: Anonymous
[177]620          Fixed by   : Bas van der Vlies <basv@sara.nl>
[163]621
[170]622        * Implemented update ticket fields via email subject line, eg:
623                Re: [email2trac] #7?owner=bas,priority=minor: Error in parsing
624
625                - Sets the owner of the ticket to: bas
626                - Sets the priority of the ticket to: minor
[171]627         
628          For some ticket fields there are only a limited number of allowed
629          values. The supplied value will be checked against this list. If it
[179]630          is not vaild value the field update will be ignored.
[170]631
[177]632          Requested by  : trac at yadan dotnet, Jan Parchmann, see ticket #7
633          Implemented by: Bas van der Vlies <basv@sara.nl>
[170]634
[172]635        * Dropped support for version trac version 0.8. Removed all 0.8
[177]636          specific code. 
637          Fixed by: Bas van der Vlies <basv@sara.nl>
[170]638
[173]639        * Added a new config parameter: tmpdir: /var/tmp, default is '/tmp'
640          All functions now use this new parameter and use OS independent
641          path functions.
[177]642          Implemented by: Bas van der Vlies <basv@sara.nl>
[173]643
[175]644        * fixed and a creating directory problem email2trac.spec file
645          Fixed by: artrus at netzero dot net
646
[176]647        * set_owner function is obsolete. When component is set the trac code
648          will set the owner to the component owner.
[177]649          Fixed by    : Bas van der Vlies <basv@sara.nl>
[176]650
[177]651        * Also show email headers in a ticket update.
652          Requested by: Ramon Bastiaans
653          Fixed by    : Bas van der Vlies <basv@sara.nl>
654
[182]655        * A date patch so it works with trac version 0.11 for ticket updates.
656          Also applied for other trac versions.
657          Thanks to: tbaschak at ktc dot mb dot ca
658
[161]6592007-04-27
[150]660
[154]661        * Added check to catch an error when attachment size
[151]662          is too large, bug #1153
663          Author: Bas van der Vlies
[150]664
[151]665        * Wrap long line into user given length, use_textwrap: 72. Wraps lines
666          greater then 72 chars, #1123
667          Author: Bas van der Vlies &
668                  Rainer Sokoll (r.sokoll at intershop dot de)
669
670        * Fixed a dutch spelling, #1295
671          Author: Rainer Sokoll (r.sokoll at intershop dot de)
672
[149]673        * email2trac.py : blacklist (don't create ticket) mail from
674          MAILER-DAEMON to avoid loops
[152]675          Author: Michel Jouvin <jouvin at lal dot in2p3 dot fr>
676
[149]677        * msg.bad.txt : add an example of message from MAILER-DAEMON
[152]678          Author: Michel Jouvin <jouvin at lal dot in2p3 dot fr>
[149]679
[146]6802006-12-08
[135]681        * email2trac.py:
682          - Added verbatim_format option default is: 1
[139]683          Added by : Bas van der Vlies
684
[136]685          - Added strip_signature option default is: 0
[139]686          Added by : Bas van der Vlies
[135]687
[139]688          - Fixed some unicode errors, thanks to japanes SPAM.
689            If we can not unicode email message then display which
690            charset must be installed in ticket description. Else we
691            trac crashed with unicode errors ;-(
692          Fixed by: Bas van der Vlies
693
[142]694          - Fixed statements: str + unicode, raises an exception if
695            non-ascii value in unicode object.
696
697          - Forgot to unicode the author. So we got an error if we use
698            the mailto_link option in email2trac.conf.
[141]699          Fixed by: Bas van der Vlies
700
[139]701        * delete_spam.py:
702          - Now works for version 0.10 with new API-functions
703          Fixed by: Bas van der Vlies
704
[144]705        * Makefile.in
706          - Added install-conf. Install email2trac.conf if there is none
707            installed.
708          Fixed by: Bas van der Vlies
709
[132]7102006-10-27
[125]711
[129]712        * run_email2trac.c.
713       
714          - Setgid() must be called before setuid().
[125]715          Reported by:  Anonymous
716          Fixed    by:  Bas van der Vlies
[126]717
[129]718        * email2trac.py,
719       
720          - Fixed an error in Ticket Update. When ticket
[128]721          does not exists, proceed as if it is a new ticket
722          Fixed    by:  Bas van der Vlies
723
[129]724          - Fixed a strang bug in 0.9 version, if ticket update
725          is enabled and email has attachment(s). We are not allowed to
726          set the description and author field of the attachment else
727          the comment text is lost ;-(
[128]728          Fixed    by:  Bas van der Vlies
[129]729
730          - Fixed an error if enable_syslog and drop_spam is set. We get
731          an exception in the syslog if we use sys.exit(0), replaced by
732          return.
733          Fixed    by:  Bas van der Vlies
734
735        * delete_spam.py.
[124]736       
[129]737          - Trac version 0.10 made it easier to delete tickets.
738          Fixed    by:  Bas van der Vlies
739       
[121]7402006-10-10
[117]741        * Fixed race conditions in delete_spam.py and added some
742          debug code.
743          Fixed by   : Bas van der Vlies
[120]744
[117]745        * Added author and description field when attachment is
746          added to ticket. This is for trac version greater than
747          0.8.
748          Fixed by   : Bas van der Vlies
749          Thanks to Matthew Good for the hint
[120]750
[118]751        * Added drop_spam option, default = 0. If set then
752          mail marked as Spam is not accepted.
[120]753          Added by   : Bas van der Vlies
[117]754
[121]755        * Do not send notification if message is marked as Spam
756          and drop_spam is not set.
[120]757          Fixed by   : Bas van der Vlies
758
[113]7592006-10-02
[111]760        * Fixes possible segmentation faults in run_email2trac.c
761          Reported by: bcornec
762          Fixed by   : Bas van der Vlies
763
764        * Can set DEBUG level while configuring package, eg:
765          DEBUG=1 ./configure ( default : 0)
766          Reported by: syd at plug dot ca
767          Fixed By   : Bas van der Vlies
768
769        * delete_spam.py did not delete everything from the SQL tables
770          Reported by: brent at rcfile dot org
771          Fixed by   : Bas van der Vlies
772
[113]773        * Do not send notification when message is marked as Spam
[112]774          Fixed by   : Bas van der Vlies
775         
[106]7762006-08-28
[105]777        * fixes an error in the 'reply_all' setting
778          Thanks to and Patch by: ncarlson@ibsys.com
779
[106]780        * Added RPM spec file
781          Thanks to:  Jon Topper <jon@topper.me.uk>
782
[101]7832006-07-14
[95]784        * Use X11R5 install-sh to install email2trac components to hide
[98]785          native install program differences.
786          Author: Michel Jouvin <jouvin@lal.in2p3.fr>
[95]787
[98]788        * Fixed an error in saving attachments for new tickets for trac
789          versions greater then 0.9.
790          Fixed by: Bas van der Vlies
791
792        * When something went wrong save the offending email for debug
793          purposes.
794          Fixed by: Bas van der Vlies
795
[99]796        * delete_spam.py
797           - did not clean up the attachment table. So we got nasty new
798             mails with fake attachments.
799           - It works now for versions higher then 0.8
[100]800
801        * Finally understand the unicode/encode functions and hopefully
802          fixed the errors.
803          Fixed by: Bas van der Vlies
[103]804
805        * Remove the temporarly created attachment files.
806          Fixed by: Bas van der Vlies
[99]807       
[92]8082006-07-06
[95]809        * Fixed an error in already added attachments. Do not close
[85]810          the database connection.
811          Fixed by: Walter de Jong en Bas van der Vlies
812
[95]813        * Added enable_syslog option. If enabled log errors to syslog
[89]814          instead of stderr. If enabled no errors are send back to the
815          user.
[87]816          Implemented by: Bas van der Vlies
817
[95]818        * Fixed an error with updating tickets with attachments for trac
[87]819          versions 0.9 and 0.10. Field "id" is not known when a existing
820          ticket is fetched (Error = KeyError: 'id')
821          Fixed By: See tickets #258 and #449 on trac-hacks
822
[95]823        * Fixed and spell error, self.mail_addr must be self.email_addr
[88]824          Fixed by: Bas van der Vlies
825
[95]826        * Catch a LookupError in unicode/encode conversion in function
[91]827          get_body_text()
[89]828          Fixed by: Bas van der Vlies
829
[95]830        * Description field was always changed when updating the ticket
[90]831          via the web. Asked the mailing list for a solution and got one
832          ;-)
833          Patch/Suggestion by: Christian Boos
834          Applied by: Bas van der Vlies
835
[95]836        * Fixed an encoding problem when email_header is set to 1
[91]837          Fixed by: Bas van der Vlies
838
[95]839        * Fixed a bug in to_unicode() function.
[92]840          Fixed by: Bas van der Vlies
841
[95]842        * Fixed an unicodedata.normalize TypeError bug for filenames in the
[92]843          attachment function
844          Fixed by: Bas van der Vlies
845
846
[81]8472006-06-02
[95]848        * Added ticketing merging. To enable it there are two options for
[76]849          both options enable 'ticket_update' in email2trac.conf
[81]850          1 - Configure trac notification, eg:
[95]851                * (ticket address: ticket@test.nl)
[81]852                [notification]
853                smtp_enabled = true
854                smtp_always_cc = test@test.nl
855                smtp_server = localhost
[82]856                smtp_from =  ticket@test.nl
[76]857                always_notify_reporter = true
858
859          2 - Use the mailto_cc in email2trac.conf if you want to sent
[81]860              an email to the user and the trac ticket email address.
[76]861
862          With both options you get the right format of the subject line.
863
[95]864        * Use the short options for the install command. So it works for
[76]865          MacOSx Reported by: Nathaniel Irons.
[81]866
[95]867        * Updated inline documentation by Nathaniel Irons.
[76]868                 
[68]8692006-05-16
[95]870        * Fixed a bug when there was no plain text body.
[63]871          Reported by: Greg Deakyne
[95]872        * Fixed a small bug if default component owner is unknown.
[63]873          Just fill in some bogus info.
[95]874        * Use the short options for the install command. So it works for
[64]875          MacOSx
876          Reported by: Nathaniel Irons
[95]877        * Messages that has X-Virus-found in header are marked as SPAM
[68]878          Implemented by: Walter de Jong
[95]879        * Some modules are changed for version 0.10, Added and made some
[68]880          minor changes: Patch supplied by: Markus Tacker 
[95]881        * Ported delete_spam.py to version 0.9 and higher:
[69]882          Reported by: Nathaniel Irons
[63]883
[64]884
[58]8852006-03-08
886        - Fixed an bug for 0.9, there was a space in front of the ' ticket' directory.
887          removed it.
888          Reported by: mi-trachacks@moensolutions.com   
889          Fixed by: Bas van der Vlies
[95]890        * Fixed an exception error in delete_spam.py
[58]891          when shutil has not enough priveledges to remove the
892          attachments it is reported
893          Fixed by: Bas van der Vlies
[95]894        * email2trac.py: When you include the body tag, some
[58]895          mailers (like Thunderbird) will leave out the signature.
896          Therefore this version leaves out the body tag.
897          Fixed by: Walter de Jong
[95]898        * Added msg.txt for testing
[58]899          Fixed by: Bas van der Vlies
900
[46]9012006-02-01  Bas van der Vlies <basv@sara.nl>:
902        * Added Tikcet notification, send email when there is
903          a new ticket. Depends on notification setting in
904          trac.ini.
905          Implemented by: Kilian Cavalotti
[52]906        * Can use different template for ticket notification,
907          eg: alternate_notify_template: "a_tkt.css"
908          Implemented by: Kilian Cavalotti
[46]909        * Added reply_all config parameter. If set put all
910          CC-addresses from orginal mail in ticket CC-field.
911          Suggested by: Kilian Cavalotti
912        * Text in ticket description is also properly UTF-8
913          encoded
914          Implemented by: Kilian Cavalotti
915        * Removed reply_address from config file. Is not
916          necessary anymore. See Ticket notification.
917        * Added support for known users. If email address is
918          known then use the trac known username instead
919          of the email-address (only for trac version > 0.9)
920          Implemented by: Kilian Cavalotti
[48]921        * Fixed an error in saving attachments for version < 0.9.
922          Sometimes we got bogus attachments.
923          Fixed by: Walter de Jong
[50]924        * Added support to make an debian package
925          Implemented by: Bas van der Vlies
[46]926
[36]9272006-01-21  Bas van der Vlies <basv@sara.nl>:
928        * Fixed run_email2trac.c, did not work
929        * Added TRAC_SCRIPT_NAME to Makefile.in to
930          solve run_email2trac problem
931
932        Both errors reported by: kilian.cavalotti@lip6.fr
933
[33]9342006-01-20  Bas van der Vlies <basv@sara.nl>:
935        * A warning error is fixed by kilian.cavalotti@lip6.fr
936        * Several errors in make install ;-(, reported by
937          tacker
938
[23]9392006-01-15  Bas van der Vlies <basv@sara.nl>:
940        * Added configure script.
941
[18]9422006-01-10  Bas van der Vlies <basv@sara.nl>:
943        * Removed project_root from source and config file
944        * Adjust code so we can use mulitple stanza's in config file, eg:
945          [bas]
946          project: /data/trac/bas
947          spam_level: 3
948
949          use option "-p|--project bas" to select the stanza
950
[5]9512006-01-04  Bas van der Vlies <basv@sara.nl>:
952
953        * Fixed getopt for -f option
954        * Added suppport for different TRAC versions (0.8 and 0.9)
955
9562006-01-03  Michel Jouvin  <jouvin@lal.in2p3.fr>
957
958        * email2trac.py (ReadConfig) : allow project name relative to project root in configuration file
959       
960        * email2trac.py (TicketEmailParser.parse): save entire email for debugging only if debug >= 2
961
962        * run_email2trac.c: pass wrapper arguments to Python script, filtering out --file
963
964        * 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)
965
966        * 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)
967
9682005-12-22  Michel Jouvin  <jouvin@lal.in2p3.fr>
969
970        * Makefile: add a Makefile to build and install email2trac
971
972        * email2trac.py: migrate to Trac 0.9 API
973
9742005-12-21  Michel Jouvin  <jouvin@lal.in2p3.fr>
975
976        * run_email2trac.c: add error messages if DEBUG macro defined
977
978        * run_email2trac.c: add error testing and specific return values for each error
979
980        * run_email2trac.c: Move site specific paramaters to run_email2trac.h
981
982        * run_email2trac.h: include file to define site specific paramaters
983
9840.2.4 01/11/2005
985        Added email_header option if set then show TO/CC fields in
986        description of the ticket.
987
988        Fixed an error in the mailto URL. This was an old error that
989        supposed to be fixed but reoccured in this version.
990       
9910.2.3 31/10/2005
992        Fixed a bug with base64 encoded attachments/emails
993        Fixed by: Walter de Jong
994
9950.2.2 10/10/2005
996        according to RFC 2368 (titled "the mailto URL scheme") the mailto
997        URL can only work with short &body messages. It fails with long
998        messages and the link won't work. Therefore the mail body is
999        no longer copied into the mail reply.
1000
10010.2.1 10/07/2005
1002        body of reply email looks better
1003
1004
10050.2   10/07/2005
1006        mailto is replaced by a html mailto to line. If
1007        you reply to the ticket via this link then an
1008        email client is started with some default values:
1009                To: <reporter>
1010                Subject: Re: <orginal subject>
1011                Body: email_comment <orginal text>
1012
1013        email2trac.conf:
1014                email_comment: # (default:  >)
1015
1016               
1017
Note: See TracBrowser for help on using the repository browser.