source: trunk/ChangeLog @ 622

Last change on this file since 622 was 622, checked in by bas, 11 years ago

added agilo support for trac, closes #305,#316

  • Property svn:mime-type set to text/plain
File size: 48.2 KB
RevLine 
[621]12.7.0
[618]2  * use self.env.get_read_db for trac version > 0.11. self.env.get_db_cnx is obsolete. TRAC
3    api documentation.
4    Fixed by: Bas van der Vlies
5
[620]6  * fixed an UnicodeDecodeError when checking attachments filenames.
7    Fixed by: Bas van der Vlies
8
[621]9  * Added support for installing trac in a virtual enviroment. You can
10    set a default virtualenv path add configuration time, eg:
11      - ./configure --with-virtualenv=/data/virtualenvs/trac
12   
13    Or set/override at runtime: eg:
14     - ./email2trac.py --virtualenv=/data/virtualenvs/trac
15    Author:  Bas van der Vlies & Dennis Stam (Suggestion)
16
[622]17  * Added support for Trac Agilo installations, closes #316, #306
18     - email2trac.py -A or email2trac --agilo
19    Author: smcclure add racemi dot com
20    Applied by: Bas van der Vlies
21
[615]222.6.2
[614]23  * Removed '--Orignal message---' from strip_signature_regex. It is not a
24    signature but a quote. Thanks to Walter Lioen (SARA)
25    Fixed by: Bas van der Vlies
26
27  * Added support fot trac 1.0, closes #302, #303
[615]28    Reported by: thomas dot schabetsberger add webtek dot at
29    Fixed by: Bas van der Vlies
[614]30
[610]312.6.0 (Dedicated to Ian Verhey (RIP) )
32
[593]33  * License changed from GNU Public License to Apache License, Version 2.0.
[594]34    Now the software can be included in Apache projects like bloodhound,
35    closes #292
[593]36
37    Requested by:  gary dot martin add wandisco dot com
38
39  * Catch an error when no valid trac installation can be found,
40    closes #294
41    Reported by: m dot frigui add cacom dot fr
42    Fixed by: Bas van der Vlies
43
[598]44  * Ticket update honors the reply_all setting and sets the ticket cc
45    field if there are cc-addresses in the email, closes #293
46
47    Reported by: Sergey V.Levin <slevin add adriver dot ru >
[614]48
[598]49    Fixed by: Bas van der Vlies
50
51  * Reporter email address was not skipped and therefor added to cc field
52    when reply_all was set.
53    Author:  Bas van der Vlies
54
[600]55  * Default setting for resolution can only be set in email2trac.conf. Skip the trac default
56    setting, closes #299
57    Reported by: ruediger dot kupper add gmail dot com
58    Fixed by: Bas van der Vlies
59
[603]60  * Attachments on Windows are not save due the fact that  os.pathconf is not supported. Set
61    filename max length to 240 chars on windows, closes #300
62    Reported by: Anonymous
63    Fixed by: Bas van der Vlies
64
[604]65  * Added a new option 'only_strip_on_update', default value is False. Only call the functions
66    strip_quotes and strip_signature for ticket updates, closes #192
67    Requested by, Patch:  Konstantin Ryabitsev <icon add mricon dot com>
68    Appplied by: Bas van der Vlies
69
[606]70  * Added a new option 'strip_signature_regex', default value:
[607]71      * strip_signature_regex : ^-----Original Message-----$|^-- $
[606]72    This will strip signatures form the email messages. People can set their own regular
73    expressions, closes #296, #155
74    Author: steverweber add gmail dot com
[607]75    Applied by: Bas van der Vlies
[606]76
[607]77  * email_quote can now handle regular expresions, default is:
78        email_quote : ^> .*
79    We now use the re.match function instead of line.startswith, closes #173
80    Suggested/Patch by: samuel add hoffstaetter dot com
81    Applied by: Bas van der Vlies
82
[585]832.5.0
84  * BLOG improvements by Thomas Moschny, closes #287,#235,#175:
85   - Tries to use the 'Date:' email header to set the date of the blog
86     post or comment.
87   - Allows overriding author and categories via subject parameters or
88     inline properties (see below).
89   - Does not add the 'blog_' prefix to the default (short-) name of a
90     blog entry anymore, as it would be rather redundant.
91   - Allows selecting a custom short name for the blog entry instead of
92     a default date-based short name. The custom short name may not
93     contain spaces. (Note that the TracFullBlogPlugin imposes
94     additional rules for valid short names.)
95   - Bugfix: Fixes crash wile processing mails with attachments (#175).
96   - Properly adds attachments to blog entries (#175).
97
98    Author: Thomas Moschny
99    Applied by: Bas van der Vlies
100
[588]101  * Added new parameters:
102     - white_list_registered_users
103     - white_list_file
104 
105   white_list_registered_users: 
[589]106    This will allow registered user to create or update a ticket even
[588]107    when they are not added to the 'white_list' in the configuration
108    file.
109
110   white_list_file:
[589]111    This will read allowed users from a file. One email address per line.
[588]112
113   Suggested by: randy add psg dot com, closes ticket #288
114   Author: Bas van der Vlies
115
[583]1162.4.7
[579]117  * Some blog improvements. Removes 'blog:' from subject line and honors the
118    -n/--dry-run flag, closes #235
119    Author: Thomas Moschny
120    Applied by: Bas van der Vlies
[580]121 
122  * Added Astaro firewall spam handling. Check X-Spam-Flag and X-Spam-Result
123    message header flags. see:
124     * http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=644916
125    Author: W. Martin Borgert" <debacle at debian dot org>
126    Applied by: Bas van der Vlies
[579]127
[582]128  * mailto link contained the wrong encoded subject line, charset was not
129    stripped.
130    Reported by: Walter Lioen (SARA)
131    Fixed by: Bas van der Vlies
132
[576]1332.4.5
[574]134  * Allow regular expressions for recipient_list (multiple to-addresses),
135    white_list and black_list. Each address is checked againt this regular
136    expression, closes #272
[573]137    examples:
138     * recipient_list : sara.nl (to-address contains sara.nl)
139     * recipient_list : ^basv@sara.nl$ (to-address equals basv@sara.nl)
[574]140    Reported by: anonymous
141    Fixed by: Bas van der Vlies
[573]142
[574]143
144  * Enhanced run_email2trac to support supplementary groups (initgroups).
145    configure will check if the OS support initgroups function call,
146    closes #274
147    Author: Dennis McRitchie <dmcr add Princeton dot EDU >
148    Applied by: Bas van der Vlies
[576]149
150  * Fixed an error in parsing the From address. Email address was wrong if
151    email name contained a charset definition. There error was triggered
152    if 'mailto_link: 1' is set. Resulting in an unicode error.
153    Author: Bas van der Vlies
154
[570]1552.4.2
156  * Fixed an error for text/plain attachments that are not specified as
157    inline. These attachments were not attached to the ticket and were
158    skipped, closes #270
159    Reported by: hju add jochenkuhl dot de
160    Fixed by: Bas van der Vlies
161
162  * Use all 'to-field' addresses in message for recipient_list instead of only one, closes #268
163    Reported by: anonymous
164    Fixed by: Bas van der Vlies
165
[546]1662.4.0
[524]167  * Fixed an error in ticket_update_fields. Always check if given ticket
168    field is a valid ticket field for trac. The error could be triggered
169    by:
170      * ticket_update_by_subject
171      * inline_properties
172
173    Reported by: Maarten van Ingen (SARA)
174    Fixed by: Bas van der Vlies
175
[525]176  * Fixed a typo in logging an error: email_to_unicode
177    Fixed by: Bas van der Vlies
[524]178
[526]179  * Closed tickets for trac version >= 0,12 where not re-opened if there was
180    no workflow defined in email2trac.conf, see #247
181 
182    Reported by: Sergey V.Levin <slevin add adriver dot ru >
183    Fixed by: Bas van der Vlies & Sergey V.Levin
[525]184
[528]185  * enhanced save_email_for_debug(). Store also the project name in the
186    filename and easily see the difference between the raw message and
187    the body/attachments files.
188    Author: Bas van der Vlies
189
[529]190  * Ticket update by subject did not work for trac version below 0.12
191    Reported by: naumann add tu-berlin dot de
192    Fixed by: Bas van der Vlies
193
[532]194  * Fixed an error in the logging environment for Windows oses, closes #251
195    Reported by:  kofal002 add umn dot edu
196    Fixed by: Bas van der Vlies
197
[533]198  * Ticket_update_by_subject enhancement. If multiple tickets are found
199    with the same subject then we try a author/reporter match. If fails
200    use most recent ticket entry, closes #253
201    Reported by: kofal002 att umn dot edu
202    Fixed by: Bas van der Vlies
203
[535]204  * Log trac error if opening of trac project environment failse, closes #256
205    Reported by: edward dot b dot matheson at nasa.gov
206    Fixed by: Bas van der Vlies
207
[536]208  * If a status is using upper case character(s) (i.e waitingExternal)
209    email2trac does not find the appropiate workflow entry in the
210    email2trac.conf, closes #264
211    Author: hju add jochenkuhl dot de
212    Applied by: Bas van der Vlies
213
[546]214  * Process all workflows not only the default trac workflow. Workflow is now
215    enabled for new tickets and ticket updates.
216    eg: AdvancedTicketWorkflowPlugin, closes #226,#252
[557]217    Suggestion by: Holger Jürgs <hjuergs add jochenkuhl dot de>
[539]218    Reported by: Frédéric DUARTE <f dot duarte add akka dot eu>
[546]219                 kofal002 att umn dot edu
[539]220    Fixed by: Bas van der Vlies
221
222  * permission check fails when PrivateTicketsPlugin is installed, closes #262
223    Reported by: glenn
224    Fixed by: Bas van der Vlies
225
[542]226  * Added support for trac version 0.13, closes #250
227    Reported by: simeonov add gmail dot com
228    Fixed by: Bas van der Vlies
229
[552]230  * Problem with long attachment's filenames on native language. This is a trac
231    bug, see:
232      * http://trac.edgewall.org/ticket/10313,
233    The email2trac solution is to truncate the filename if it is longer then
234    the allow NAME_MAX for the os (usually 255), closes #247.
235    Reported by: Sergey V.Levin <slevin add adriver dot ru >
236    Fixed by: Bas van der Vlies & Sergey V.Levin
[563]237
238  * Replaced printing of subject line to repr() instead of unicode string.
239    Some versions if python logging module could crash, closes #267
240    Reported by: hju add jochenkuhl dot de
241    Fixed by: Bas van der Vlies
[552]242   
[521]2432.1.0 (2011-6-6)
[518]244  * Convert all email addresses and author names to lower case in compare
245    functions.  closes #242.
246    Author: Dennis McRitchie <dmcr add Princeton dot EDU >
247    Applied by: Bas van der Vlies
248
[516]249  * Added timestamp when log_file stderr or file is used. Move log level of
250    reporting subject line to info instead of debug, closes #236
251    Author: Dennis McRitchie <dmcr add Princeton dot EDU >
252    Applied by: Bas van der Vlies
253
[517]254  * Small fix in mailto link. Uses 'cc' instead of 'Cc'
255    Author: Sil Westerveld (SARA)
256    Applied by: Bas van der Vlies
257
[520]258  * The time format for subject mapping was wrong (ticket_update_by_subject).
259    So all tickets matched. Converted it to use microseconds instead of
260    seconds.
261    Reported by: Walter Lioen (SARA)
262    Author: Bas van der Vlies & Dennis Stam
263
[521]264  * Fixed an error in the setup the logging environment for Windows oses.
265    Reported by: Mike Henke <henkemike at gmail dot com>
266    Author: Bas van der Vlies
267
[514]2682.0.2 (2011-02-13)
269   * Use tempfile.mkstemp instead of tempfile.mktemp
270     Reported by: Dennis Stam (SARA)
271     Author: Bas van der Vlies
272
[511]2732.0.1 (2011-02-12)
[513]274   * An email address can match multiple trac accounts, closes #218
[482]275     Author: Konstantin Ryabitsev <icon add mricon dot com>
[484]276
277   * Added check to detect valid users when smtp_default_domain in
278     trac.ini is set, closes #219
279     Author: sto add iti dot upv dot es
280     Applied by: Bas van der Vlies with some minor changes
281
[485]282   * Support for parentdir. Can be used to avoid sections for each project
283     or if all projects have a common parent directory, you can leave out
[513]284     the project directory setting for each project, eg:
[503]285      * parentdir: /data/trac/oss/projects
[485]286
[513]287     If an section defines a project directory then this can NOT be overridden
288     by the parendir declaration.
[485]289
290     This closes #217
291
292     Author: sto add iti dot upv dot es
293     Applied by: Bas van der Vlies with some minor changes
294
[486]295   * email2trac: Used the wrong code to check number of ticket changes,
296     closes #223.
297     Author: stas dot agarkov add gmail dot com
298     Applied by: Bas van der Vlies
[485]299
[487]300   * email2trac: An enhancement to "update-by-subject", closes #188 Features:
301      - Does a better job parsing out all the permutations of "Re: FW: Re: AW: Subject"
302      - Modifies the subject to drop the prefixes
303     Author: Konstantin Ryabitsev <icon add mricon dot com>
304     Applied by: Bas van der Vlies
305
[489]306   * When platform is Windows and log_type is not set, use 'eventlog' as default log_type
307     instead of 'syslog', closes #225
308     Reported by: jkreider add clarkinc dot biz
309     Author: Bas van der Vlies
310
[492]311   * Applied a patch so we allow more ticket fields to be used for inline properties, eg:
[495]312       - @custom_reports: vu
[492]313     closes #227
314     Author: thomas dot moschny add gmx dot de
315     Applied by: Bas van der Vlies
316
[493]317   * Fixed some bugs in function update_ticket_fields:
[513]318       - Can not clear values, reported by thomas dot moschny add gmx dot de
[503]319     closes #228
[493]320       - Values were updated regardless if there are not allowed for the ticket
[503]321     field.
[493]322     Author: Bas van der Vlies
323
[495]324   * Attachments without a name where named 'None' instead of 'untitled-part',
325     closes #230
326     Reported by: hju add jochenkuhl dot de
327     Author: Bas van der Vlies
328
[496]329   * Fixed some errors in Discussion plugin support, closes #231
330     Author: Dennis (dmcrxi add Princeton dot EDU)
331     Applied by: Bas van der Vlies
332
[513]333   * Added html conversion via external command: eg email2trac.conf
[501]334      - html2text_cmd: /usr/bin/html2text -nobs
[503]335      - html2text_cmd: /usr/bin/w3m -dump
336      - html2text_cmd: /usr/bin/lynx -dump
337      - html2text_cmd: /usr/bin/links -dump
[501]338     closes #218
339     Author: Bas van der Vlies
340     Applied by: Bas van der Vlies
341
[506]342   * Fixed mailto link for trac 0.11 and 0.12. Use the mailto tag in stead of
343     an html tag. The html tag does not work for trac 0.12
344     Reported by: Wim Rijks
345     Author: Bas van der Vlies
[508]346
[512]347   * Added a notification function that always send an email to the reporter if
[513]348     the ticket is updated via email. This independent of trac.ini setting
[509]349     , closes: #178, #229
350        - notify_reporter: 1 (default: 0)
[508]351        - notify_reporter_black_list : basv@sara.nl (default: 0)
352     Author: hju add jochenkuhl dot de
353     Applied by: Bas van der Vlies
354
[509]355 
356   * Added a new parameter for processing inline properties: (closes #216)
357       -  inline_properties_first_wins: 1 (default: 0)
358     
359     When an email has two of the same inline entries:
360        {{{
[512]361        @status: closed
362        @status: accepted
363        }}}
[509]364      Only the first one is used '@status: closed'
365
366     Author: Konstantin Ryabitsev <icon add mricon dot com>
367     Applied by: Bas van der Vlies
368
[479]3691.6.0 (2010-8-10)
[473]370   * Fixed an Unicode error in strip_quotes
371     Author: Bas van der Vlies
[465]372
[473]373   * The attachment filename may not contain '\n' and '\r' characters.
374     Reported by: Jean-Paul Duyx <jean-paul dot duyx at vancis dot nl>
375     Fixed by; Bas van der Vlies
[471]376
377   * Applied a patch to support workflow for all transitions. It will
378     also honour the permission model if set, closes #198
379     an example how to use it:
[503]380    email2trac.conf:
[471]381                [project]
[503]382            workflow_closed: reopen
383            xworkflow_infoneeded: provideinfo
[471]384
[503]385    trac.ini:
386    [ticket-workflow]
387    reopen = closed -> reopened
388    reopen.permissions = TICKET_CREATE
389    reopen.operations = del_resolution
[471]390
[503]391    provideinfo = infoneeded -> moreinfo
392    provideinfo.permissions = TICKET_CREATE
393    provideinfo.name = info provided
394
[471]395     Authors: kroseneg add schmidham dot net and Bas van der Vlies
396
[473]397   * The trac default value for resolution is fixed. The trac.ini value
398     for this is skipped and this resolution settings is only allowed in
399     email2trac.conf, closes #84
400
401     Reported by: hju add jochenkuhl dot de
402     Fixed by: Bas van der Vlies
[475]403
404   * Honor the trac permission model if set, Use
405    TICKET_APPEND and TICKET_CHGPROP instead of TICKET_MODIFY.
406    closes #214
407
408    Reported by: Konstantin Ryabitsev <icon add mricon dot com>
409    Fixed by: Bas van der Vlies
410   
[458]4112010-07-23
[429]412    * logging of spam message was wrong. Fixed it,
413       - set.logger.info must be self.logger.info
414    Author: Bas van der Vlies
[432]415
416    * logging of notification error was wrong. Fixed it, closes #212
417       - set.logger.error must be self.logger.error
418    Reported by:  adam dot lucke at srd-berlin dot de
419    Author: Bas van der Vlies
[443]420
[456]421    * Mail was lost when 'ticket_update' was disabled and a ticket
422      reply was detected.
423    Author: Bas van der Vlies
424
[443]425    * Removed a lot of obsolete code due to using UserDict
426    Author: Bas van der Vlies
[429]427 
[426]4282010-07-21
[400]429    * added a new option 'ticket_permission_system'. Can be set to:
[399]430      - trac: Then it will check if the report has the right trac
431        permission to create or modify a ticket. closes #202
432
433      - update_restricted_to_participants: A ticket update is allowed only if:
434        1) the updater is the reporter,
435        2) the updater is in the CC
436        3) the updater has trac permission to update the ticket.
437        If the update is denied, a new ticket will be generated instead as to
438        not loose the issue . closes #203
439
440    Authors:  kris add tsampa dot org & Bas van der Vlies
441
[413]442
443   * Switch for logging to the python logging module and add some new
444     options to control the behaviour inspired by the trac logging module:
[423]445      - log_type, default syslog
446      - log_level, default info
447      - log_format, email2trac <project name>
448      - log_file, none
[413]449
[424]450     Can be set to the same values as trac logging
451
[417]452     Author: Bas van der Vlies
453
454   * removed trac 0.9 support
[413]455     
[426]4562010-07-12
[393]457  * Do not check if notification is enabled, let Trac determine if a
458    notfication is enabled and which interface/plugin is used, eg:
[395]459    announcerplugin
[393]460
[395]461    Author: Bas van der Vlies
[393]462
[390]4632010-07-06
464  * Fixed several errors in ticket update:
465     - Changed the regex expression. It must end with ':'.   
466     - The email was lost if the ticket id was unknown. If ticket
467       id is unknown a new ticket will be created.
468
469    Reported by: SARA grid team
470    Fixed by: Bas van der Vlies
471       
472
473
[386]4742010-06-28
475  * Ticket update for version 0.12 did not work, closes #209
476    Author: mark underscore kids add yahoo dot com
477    Applied by: Bas van der Vlies
[388]478
479  * enabled workflow and notification for trac version 0.12
480    Author: Bas van der Vlies
481
[384]4822010-06-23
483  * A better fix for attachments with special characters, closes #206
484    Reported by: karsten dot rohrbach add wibas dot de
485    Fixed by: Bas van der Vlies
486
4872010-06-22
[380]488  * When debug is enabled email2trac chokes on non-ascii (utf8)
489    characters in ticket fields, closes #205
490    Reported by: eirik dot schwenke add nsd dot uib dot no
491    Fixed by: Bas van der Vlies
492
493  * Email2trac crashes when attachment filename contains non-ascii       
494    characters, closes #206
495    Reported by: karsten dot rohrbach add wibas dot de
496    Fixed by: Bas van der Vlies
497
[372]4982010-06-09
[370]499  * Support added for trac version 0.12, closes #201
500    Reported by: mark_kids add yahoo dot com
501    Fixed by: Bas van der Vlies
502   
[366]5032010-05-25
504  * delete_spam still used the trac_version in email2trac.comf
505    Fixed by: Bas van der Vlies
506
507  * email2trac crashed when ticket_update_by_subject was enabled.
508    Fixed by: Bas van der Vlies
509
[363]5102010-05-20
[349]511  * email2trac crashed if there are '/' and '\' characters in a filename.
512    These characters are now being replace by '_', closes #196
513    Reported by: jcuppen add hethooghuis dot nl
514    Fixed by: Bas van der Vlies
[347]515
[349]516  * Problems with attachments were not reported for ticket updates
517    Fixed by: Bas van der Vlies
[347]518
[350]519  * delete_spam changes:
520     - only support trac version greater then 0.10
521     - added -n/--dry-run option
522     - added -v/--verbose option
523
524    Author: Bas van der Vlies
525
[352]526  * Enhancement for ticket prefixes (email2trac.conf). The ticket
[357]527    fields status and resolution are not forbidden any more. closes #195
[352]528    Author: Konstantin Ryabitsev <icon add mricon dot com>
529    Applied by: Bas van der Vlies
530
[357]531  * Added a new option. It is all in the name:
532      * ticket_update_by_subject, default value is off
[360]533      * ticket_update_by_subject_lookback, default 30 days
[357]534
535    When this option is enabled and there is no ticket number found
536    in a reply mail. It will try to find a ticket summary that matches
537    the mail subject line. If found then append the mail to this
538    ticket, closes #188
539    Author: Konstantin Ryabitsev <icon add mricon dot com> & Bas van der Vlies
540    Applied by: Bas van der Vlies
[360]541
542  * Added DiscussionPlugin support, closes 197. For description see:
543     - https://trac-hacks.org/wiki/DiscussionPlugin
544
545   Author: ibarton add fit dot vutbr dot cz (alias Blackhex)
546   Applied by with some modification: Bas van der Vlies
547
[363]548  * Trac version is now automatically determined. No need anymore for
549    trac_version in /etc/email2trac.conf
550    Author: Bas van der Vlies
551
[345]5522010-03-20
553
554  * Fixed a bug reporter was always set to the default value specified
555    in trac.ini.
556
557    Reported by: Jean-Paul Duyx <jean-paul dot duyx at sara dot nl>
558    Fixed by: Bas van der Vlies
559
560  * If reported field is overriden then use it for all trac functions
561    including notification, closes #187
562
563    Reported by: shildebrand at venturebeat dot com
564    Fixed by: Bas van der Vlies
565
[333]5662010-03-24
567
568  * Added configure option '--with-install_user=<name>', default user is 'root'.
569    The specified user is used for installation so we can install the
570    package as non-root user, closes #182.
571
572    Reported by: shildebrand at venturebeat dot com
573    Fixed by: Bas van der Vlies
574
575  * Re-arranged some code so that we can override ticket fields in
576    email2trac.conf, eg:
577     - default_reporter : email2trac
578
579    Will set the reporter ticket field to email2trac for all mail, closes #182
580
581    Reported by: shildebrand at venturebeat dot com
582    Fixed by: Bas van der Vlies
583
584  * Fixed a bug when there is no subject field in the message, closes #179
585    The fix in the 1.2.0 version did not work.
586    Reported by: xurizaemon and John Donners (SARA)
587    Fixed by: Bas van der Vlies
588
589  * We do not write any files when dry run mode is enabled.
590    Fixed by: Bas van der Vlies
591
[337]592  * Fixed several issues when DEBUG is enabled with printing non-ascii
[333]593    characters, see #184
594    Reported by: hju add jochenkuhl dot de
595    Fixed by: Bas van der Vlies
596
[323]5972010-02-24
[322]598  * Added an option to run_email2trac to set the PYTHON_EGG_CACHE
599    environment variable (-e|--eggcache), closes #174
600    Author: pepl at cpan dot org
601    Applied by: Bas van der Vlies
602
603  * Ticket fields can be set inline an email: closes #171, #88
604     - controlled by parameter 'inline_properties', default behaviour off
605     - see https://subtrac.sara.nl/oss/email2trac/wiki/Email2tracParse#Updateticketfields
606
607    Author: samuel at hoffstaetter dot com
608    Applied by: Bas van der Vlies
609
610  * Fixed a bug when there is no subject field in the message, closes #179
611    Reported by: xurizaemon
612    Fixed by: Bas van der Vlies
613
614  * Added unicode support attachment filenames, closes #177
615    Reported by: obwandner add concertare dot de
616    Fixed by: Bas van der Vlies
617
618  * Email to blog did not work at all. It works but it can not handle
619    attachments. see #175.
620    Reported by: oland dot wells add gmail.com
621    Patches    : Bas van der Vlies
622
623  * Show errors when we can not include attachments in the ticket, see #165
624    Requested by: hju add jochenkuhl dot de and  dereks add cool-st dot com
625    Fixed by: Bas van der Vlies
626
627  * Added a new option 'email_triggers_workflow'. When a ticket is closed and
628    an update is received via email. The ticket will be reopened or triggers
629    a ticket workflow. This action can be skipped if we set the
630    email_triggers_workflow option to 0. The default value is 1, closes #180
631    Author: zac add sprackettd dot com
632    Applied by: Bas van der Vlies
633
[303]6342010-01-11
[290]635  * Workflow option did not work, closes #157
636    Reported by: thomas dot moschny at gmx dot de
637    Fixed  by: Bas van der Vlies & Thomas Moschny
638
639  * When a ticket is updated via email. We must set a changelog id,
640    closes #156
641    Reported by: Chris dot Nelson at SIXNET dot com
642    Fixed by: Bas van der Vlies
643
644 * Changed all 'str =' assignments to 's =' to solve conflicts with
645   the builtin str function
[298]646   Fixed by: Bas van der Vlies
[290]647
[298]648 * Python egg cache enviroment setting was ignored by email2trac.
649   closes #163
650   Author: Dennis McRitchie ( dmcr at Princeton dot EDU )
651   Applied by: Bas van der Vlies
652
653 * Disabled code so the following line will not be displayed anymore
654   as comment in a ticket:
[303]655     - This message has x attachment(s)
[298]656   Suggested by: dereks at realloc dot net, closes ticket #165
657   Fixed by    : Bas van der Vlies
658
659
660 * Added a new parameter strip_content_types. So we can strip attachments
661   based on content type, eg:
[303]662     - strip_content_types: application/pgp-signature, application/mac-binhex40
[298]663
664   Will strip attachments that has these content_types.
665   Authors:  otto at bergerdata dot de and Bas van der Vlies
666
667 * FIxed an error when files where added with characters that needed to be
668   escaped. Both email2trac and trac escaped the filenames. We removed the
669   code from email2trac an let trac handle the escaping, closes #149
670
671   Reported by: hju att jochenkuhl dot de
672   Fixed by: Bas van der Vlies
673
674 * Added a new parameter:
[303]675     - subject_field_separator, default value is &
[298]676
677   This is used to set tickets fields via the subject line. It used to
678   be , .For backwards compatibility we introduced this parameter.
679   closes #166
680   Suggested by: Dennis McRitchie ( dmcr at Princeton dot EDU )
681   Fixed by    : Bas van der Vlies
682
[303]683 * Prevent mail loop. We could set the CC ticket field to
684   the ticket email address.
685    - For a new ticket and reply_all is set.
686    - If the ticket CC field is updated via the subject line.
[304]687
688   Also prevent setting the reporter address to the ticket email
689   address.
690
[303]691   closes #172
692   Reported by: otto at bergerdata dot de
693   Fixed vy   : Bas van der Vlies
694
695
696
697
[285]6982009-09-02
[278]699  * Implemented a new feature to drop the HTML version of multipart/alternative
[279]700    message part. Such a message part contains the same info. The info is sent
[280]701    in different formats and the client can decide which version to use.
[279]702    closes #30
[278]703
[283]704    to enable in email2trac.conf:
705        - drop_alternative_html_version: 1
706
[278]707    Implemented by: Bas van der Vlies
708
[276]7092009-08-20
[271]710  * updated aclocal.m4 to support python versions 2.5 and 2.6, closes #137
711  * use the email addres in the reporter field, closes #136
[269]712  * Fixed an error in blog update function
713
[271]714    All Fixes by: Bas van der Vlies
[269]715
[274]716  * if alternate notify template is set then also set ticket id. It will show
717    up as ticket change, closes #142
718    Reported by: hju att jochenkuhl dot de
719    Fixed by: Bas van der Vlies
720
[272]721  * Error in urllib.quote(filename) could not handle unicode
722    filenames, closes #138
723    Reported by: debacle at debian dot org
724    Applied  by: Bas van der Vlies
725
[274]726  * Fixed an error when debug is on and the body message contains unicode
727    strings, closes #144
728    Reported by: trumbitta at gmail dot com
729    Applied by: Bas van der Vlies
730
[276]731 * default trac version for email2trac is now updated to 0.11
732
[263]7332009-04-09
[256]734  * Fixed in parsing the reflow parameter, closes #123
735    Reported by: tomasz dot sterna at sensisoft dot com
736    Fixed by: Bas van der Vlies
737
[259]738   * implemented workflow for tickets that are reopend, closes #70
739     Reported by: hju att jochenkuhl dot de
740     Author by: Bas van der Vlies
741
[267]742   * added FullBlogPlugin support. So we can update/create the blogs
743     via email, #116
744     mail with subject line: <blog:.*> will create/update a blog entry.
[260]745     Authors: Bas van der Vlies & lucas dot eisenzimmer at t-systems-mms dot com
[261]746   
[262]747   * email2trac require at least python version 2.4, closes #131
748     Reported by: otto at bergerdata dot de
749     Fixed by: Bas van der Vlies
[260]750
[262]751   * We can now set ticket fields for a new ticket via the 'subject' line:
752       - Subject: <description> #?<field=value>[,<field=value>]*
753     closes #130
754     
755     Requested by: Steve
756     Implemented by: Bas van der Vlies
757
[254]7582009-01-30
[249]759  * applied patch exit with non-zero return code on failure, closes #117
760    Author: admin-egon at ikw dot uos dot de
761    Applied by : Bas van der Vlies
762
[251]763  * Ticket update with attachments did not work, closes #120
764    Reported by: Alexander Verkooijen (alexander at sara dot nl)
765    Fixed by: Bas van der Vlies
766
767  * Removed obsolete code
768    Author :  Bas van der Vlies
769
770  * When email address is known then the author name and email address
771    is used from the preference tab.  The match is case insensitive,
772    closes #118
773    Reported by: Pusateri, Matthew <Matthew dot Pusateri at tekelec dot com
774    Fixed by: Bas van der Vlies
775
[254]776  * Ticket id is not reported as ticket change, eg:
777    {{{
778        *   id  set to 118
779    }}}
[251]780    Author :  Bas van der Vlies
781
[246]7822009-01-19
[232]783  * applied patch to support RFC 3676 (format=flowed), closes #94, #99
[231]784    This patch adds a new option: reflow (default: False/0)
785    Author: ben at fetchsoftworks dot com
786    Applied by : Bas van der Vlies
787
788  * Fixed a bug in reply_all option, closes #95
789    Reported by: gmcgrath at princeton dot edu
790    Fixed by: Bas van der Vlies
791
[233]792  * Applied a patch for default values for custom ticket fields, closes #101
793    Author: ben at fetchsoftworks dot com
794    Applied by: Bas van der Vlies
795
[245]796  * Fixed a bug that a ticket was not updated when we only update ticket
797    field(s) via email (empty body email), closes #113
[241]798    Reported by: winnie at debian dot org
799    Fixed by: Bas van der Vlies
800 
[245]801  * Better support for inline attachments and multiple body parts, closes #105,
802    #80. Inline images in email are also shown in the ticket with the trac
803    [[Image(..)]] macro.
[241]804    Author: ben at fetchsoftworks dot com
805
[246]806  * More versatile support for Apple attachments. closes #106
[245]807    for explanation read:
808    - https://subtrac.sara.nl/oss/email2trac/wiki/Email2tracConfiguration#AppleAttachmentsoptions
[241]809    Author: ben at fetchsoftworks dot com
810
[245]811  * Applied a patch that solves problems with Window attachments, closes #110,
812    #93.
[242]813    Author: martin.poeschmann add eiskonzept dot com   
814    Applied by: Bas van der Vlies
815
[228]8162008-10-13
[213]817  * Fixed a bug in email_header formating. When an email2trac ticket
818    was updated via the web interface it would trigger a description
819    field update.
820
821    Fixed by: Bas van der Vlies
822
[216]823  * Reopen closed ticket if an update is received via email, closes #70
824    Requested by: Garrett McGrath gmcgrath add princeton dot edu
825    Fixed by: Bas van der Vlies
826
827
[217]828  * The [DEFAULT] section did not work any more due to change to internal
829    trac parser, closes ticket #73
830    Reported by: email2trac at bulk dot squeakyblue dot com
831    Fixed by: Bas van der Vlies
[218]832   
833  * black_list paramter must be comma-separated as mentioned in the
[225]834    documentation (#75) and removed the default value
835    "MAILER-DAEMON@" (#74)
[218]836    Reported by: email2trac at bulk dot squeakyblue dot com
837    Fixed by: Bas van der Vlies
[217]838
[219]839  * If a blank email is sent with just an attachment, a blank
840    comment is appended to the comments. fixed closes #89
[217]841
[219]842    Reported/Fixed by: ???
843    Applied by: Bas van der Vlies
844
[223]845  * added white_list parameter.  If set then only mail is accepted if
846    sender matches.
847    Author: Bas van der Vlies, jon dot wbstr at gmail dot com
848
[226]849  * added recipient_list parameter.  If set then only mail is accepted if
850    to-field matches. This only uses when people use a drop box to accept
[231]851    email for several email addresses, (closes #77)
[226]852    Author: Bas van der Vlies, jon dot wbstr at gmail dot com
[223]853
[225]854  * alternate notify template did not work for trac version 0.11
855    (#90).
[223]856    Reported/Fixed by: hju at jochenkuhl dot de
857    Applied by       : Bas van der Vlies
858
859  * added 'alternate_notify_template_update'. When set this notify
[225]860    template name will be used for ticket updates (#90).
[223]861    Author: Bas van der Vlies, hju at jochenkuhl dot de
862   
863   
[210]8642008-05-30
[205]865  * Fixed debian control file. Package can be build on any platform and
866    not only on i386 platforms:
[198]867
[205]868    Author: Christian Iversen ci add sikkerhed dot org
869    Applied by: Bas van der Vlies
[198]870
[205]871  * We now use the trac configuration parser routine
872    Author: andrei2102 add gmail dot com
873    Applied by: Bas van der Vlies
[200]874
[205]875  * Added new command line option -n/--dry-run. This option only show
876    what commands will be executed.
877    Author: Bas van der Vlies
[202]878
[205]879  * the default values for tickets can now also be set in
880   'email2trac.conf'. So you can use different values when an email
881    is converted to a ticket. The ticket value is set to this rules
882     - email2trac.conf
883     - trac.ini
[202]884
[205]885    email2trac.conf use same format as trac.ini, eg email2trac.conf:
886      [project]
887      default_component : test
[202]888
[205]889    closes request #55, for more info see:
890    - https://subtrac.sara.nl/oss/email2trac/wiki/Email2tracConfiguration
[204]891
[205]892     Requested by: greg dot deakyne at etapestry dot com
893     Implemented by: Bas van der Vlies
[204]894
[205]895  * Fixed a bug in ticket_update. It failed when project did not have
896    ticket component field,  closes bug #62
897    Reported by: gernot dot hillier add siemens dot com
898    Fixed by: Bas van der Vlies
[204]899         
[205]900  * run_email2trac.c:
901     - can no longer segfault after a failed malloc.
902     - after set*id failure, you'll get a diagnostic (or at least
903       nonzero exit status) and it won't attempt the exec.
[202]904
[205]905    Author: Jim Meyering jim add meyering dot net
[207]906    Applied by: Bas van der Vlies
[203]907
[207]908  * Made some approvements to spam function:
909     - If the he X-Spam-Score header is present, but has no value
910        email2trac will crash, closes #63
911
912     - Added config option which header field we must check
913       for determing if mail is Spam, eg:
914        - spam_header : X-Spam-Level (default: X-Spam-Score)
915 
916    Author: email2trac at bulk dot squeakyblue dot com
917    Applied by: Bas van der Vlies
918
[208]919
920  * black_list  is now a configuration option and is used to deny
921    email addesses, default value is: MAILER-DAEMON@
922
923    Can specifiy more then one email adress seperated by ',', eg:
924    black_list : basv@sara.nl, walter@sara.nl
925
[210]926    closes #39, #56
[207]927   
[208]928    Author: Bas van der Vlies
[210]929
930  * if mailto_link + german umlaut problem is fixed, closes #60
931    Reported by: alex at pirsig dot net
932    Fixed by: Bas van der Vlies
[208]933   
[207]934
[194]9352008-02-04
[189]936        * Added version check and exit if we do not support the trac version
937          closes bug #23
938          Reported By: Marc Zahnlecker m.zahnlecker at lxbyte dot de
[187]939
[192]940          Fixed By: Bas van der Vlies
941
[190]942        * Added check if syslog module is available. If it is not available
943          disable the syslog functionality.
[192]944          Author: michael.th add gmx dot net
[190]945
[192]946          Implemented by: Bas van der Vlies
947
[191]948        * Added strip_quotes function, default settings:
949                strip_quotes: <int> (default: 0)
950                mail_quote: <quote chars> (default: "> ")
[192]951          Author: nicolasm @ opera dot com
[191]952
[192]953          Implemented by: Bas van der Vlies
954
955        * Added patch to make notify email work with trac 0.11 dev.
956          Author: tbaschak add ktc dot mb dot ca       
957          Author: andrei2102 add gmail dot com
958
959          Implemented by: Bas van der Vlies
[194]960
961        * greedy matching in Subject line, We must stop after the first ':'
962          else we get wrong values for ticket fields when we update a ticket
963          via mail, closes ticket #37
964          Reported by: dmaziuk at bmrb dot wisc dot edu
965          Fixed    by: Bas van der Vlies
966
967        * added IGNORECASE flag to regular expression for black list. This
968          is a quick fix, still want to implement this as configuration
969          option, closed bug #39
970
971          Reported By: jodok at lovelysystems dot com
972          Fixed by   : Bas van der Vlies
973
974        * When a known user mails a ticket. We will set the Reporter to
975          its login name, closes bug #33, #41
976
977          Also add configuration option:
978                ignore_trac_user_settings : 0 (default value)
979
980          This option will skip the email address to trac user login name
981          mapping.
982
983          Reported by: anonymous
984          Fixed by   : Bas van der Vlies
985
986       
987        * SPAM detection was only for new mails not for ticket updates,
988          closed ticket #44
989
990          Reported by: Bas van der Vlies
991          Fixed by   : Bas van der Vlies
992         
[192]993           
[184]9942007-07-18
[163]995
996        * Implemented python_egg_cache environment variable. Some trac
997          installations may depend on it, closes ticket #10, eg:
998                python_egg_cache : /var/cache/eggcache
999
1000          Reported By: Anonymous
[177]1001          Fixed by   : Bas van der Vlies <basv@sara.nl>
[163]1002
[170]1003        * Implemented update ticket fields via email subject line, eg:
1004                Re: [email2trac] #7?owner=bas,priority=minor: Error in parsing
1005
1006                - Sets the owner of the ticket to: bas
1007                - Sets the priority of the ticket to: minor
[171]1008         
1009          For some ticket fields there are only a limited number of allowed
1010          values. The supplied value will be checked against this list. If it
[179]1011          is not vaild value the field update will be ignored.
[170]1012
[177]1013          Requested by  : trac at yadan dotnet, Jan Parchmann, see ticket #7
1014          Implemented by: Bas van der Vlies <basv@sara.nl>
[170]1015
[172]1016        * Dropped support for version trac version 0.8. Removed all 0.8
[177]1017          specific code. 
1018          Fixed by: Bas van der Vlies <basv@sara.nl>
[170]1019
[173]1020        * Added a new config parameter: tmpdir: /var/tmp, default is '/tmp'
1021          All functions now use this new parameter and use OS independent
1022          path functions.
[177]1023          Implemented by: Bas van der Vlies <basv@sara.nl>
[173]1024
[175]1025        * fixed and a creating directory problem email2trac.spec file
1026          Fixed by: artrus at netzero dot net
1027
[176]1028        * set_owner function is obsolete. When component is set the trac code
1029          will set the owner to the component owner.
[177]1030          Fixed by    : Bas van der Vlies <basv@sara.nl>
[176]1031
[177]1032        * Also show email headers in a ticket update.
1033          Requested by: Ramon Bastiaans
1034          Fixed by    : Bas van der Vlies <basv@sara.nl>
1035
[182]1036        * A date patch so it works with trac version 0.11 for ticket updates.
1037          Also applied for other trac versions.
1038          Thanks to: tbaschak at ktc dot mb dot ca
1039
[161]10402007-04-27
[150]1041
[154]1042        * Added check to catch an error when attachment size
[151]1043          is too large, bug #1153
1044          Author: Bas van der Vlies
[150]1045
[151]1046        * Wrap long line into user given length, use_textwrap: 72. Wraps lines
1047          greater then 72 chars, #1123
1048          Author: Bas van der Vlies &
1049                  Rainer Sokoll (r.sokoll at intershop dot de)
1050
1051        * Fixed a dutch spelling, #1295
1052          Author: Rainer Sokoll (r.sokoll at intershop dot de)
1053
[149]1054        * email2trac.py : blacklist (don't create ticket) mail from
1055          MAILER-DAEMON to avoid loops
[152]1056          Author: Michel Jouvin <jouvin at lal dot in2p3 dot fr>
1057
[149]1058        * msg.bad.txt : add an example of message from MAILER-DAEMON
[152]1059          Author: Michel Jouvin <jouvin at lal dot in2p3 dot fr>
[149]1060
[146]10612006-12-08
[135]1062        * email2trac.py:
1063          - Added verbatim_format option default is: 1
[139]1064          Added by : Bas van der Vlies
1065
[136]1066          - Added strip_signature option default is: 0
[139]1067          Added by : Bas van der Vlies
[135]1068
[139]1069          - Fixed some unicode errors, thanks to japanes SPAM.
1070            If we can not unicode email message then display which
1071            charset must be installed in ticket description. Else we
1072            trac crashed with unicode errors ;-(
1073          Fixed by: Bas van der Vlies
1074
[142]1075          - Fixed statements: str + unicode, raises an exception if
1076            non-ascii value in unicode object.
1077
1078          - Forgot to unicode the author. So we got an error if we use
1079            the mailto_link option in email2trac.conf.
[141]1080          Fixed by: Bas van der Vlies
1081
[139]1082        * delete_spam.py:
1083          - Now works for version 0.10 with new API-functions
1084          Fixed by: Bas van der Vlies
1085
[144]1086        * Makefile.in
1087          - Added install-conf. Install email2trac.conf if there is none
1088            installed.
1089          Fixed by: Bas van der Vlies
1090
[132]10912006-10-27
[125]1092
[129]1093        * run_email2trac.c.
1094       
1095          - Setgid() must be called before setuid().
[125]1096          Reported by:  Anonymous
1097          Fixed    by:  Bas van der Vlies
[126]1098
[129]1099        * email2trac.py,
1100       
1101          - Fixed an error in Ticket Update. When ticket
[128]1102          does not exists, proceed as if it is a new ticket
1103          Fixed    by:  Bas van der Vlies
1104
[129]1105          - Fixed a strang bug in 0.9 version, if ticket update
1106          is enabled and email has attachment(s). We are not allowed to
1107          set the description and author field of the attachment else
1108          the comment text is lost ;-(
[128]1109          Fixed    by:  Bas van der Vlies
[129]1110
1111          - Fixed an error if enable_syslog and drop_spam is set. We get
1112          an exception in the syslog if we use sys.exit(0), replaced by
1113          return.
1114          Fixed    by:  Bas van der Vlies
1115
1116        * delete_spam.py.
[124]1117       
[129]1118          - Trac version 0.10 made it easier to delete tickets.
1119          Fixed    by:  Bas van der Vlies
1120       
[121]11212006-10-10
[117]1122        * Fixed race conditions in delete_spam.py and added some
1123          debug code.
1124          Fixed by   : Bas van der Vlies
[120]1125
[117]1126        * Added author and description field when attachment is
1127          added to ticket. This is for trac version greater than
1128          0.8.
1129          Fixed by   : Bas van der Vlies
1130          Thanks to Matthew Good for the hint
[120]1131
[118]1132        * Added drop_spam option, default = 0. If set then
1133          mail marked as Spam is not accepted.
[120]1134          Added by   : Bas van der Vlies
[117]1135
[121]1136        * Do not send notification if message is marked as Spam
1137          and drop_spam is not set.
[120]1138          Fixed by   : Bas van der Vlies
1139
[113]11402006-10-02
[111]1141        * Fixes possible segmentation faults in run_email2trac.c
1142          Reported by: bcornec
1143          Fixed by   : Bas van der Vlies
1144
1145        * Can set DEBUG level while configuring package, eg:
1146          DEBUG=1 ./configure ( default : 0)
1147          Reported by: syd at plug dot ca
1148          Fixed By   : Bas van der Vlies
1149
1150        * delete_spam.py did not delete everything from the SQL tables
1151          Reported by: brent at rcfile dot org
1152          Fixed by   : Bas van der Vlies
1153
[113]1154        * Do not send notification when message is marked as Spam
[112]1155          Fixed by   : Bas van der Vlies
1156         
[106]11572006-08-28
[105]1158        * fixes an error in the 'reply_all' setting
1159          Thanks to and Patch by: ncarlson@ibsys.com
1160
[106]1161        * Added RPM spec file
1162          Thanks to:  Jon Topper <jon@topper.me.uk>
1163
[101]11642006-07-14
[95]1165        * Use X11R5 install-sh to install email2trac components to hide
[98]1166          native install program differences.
1167          Author: Michel Jouvin <jouvin@lal.in2p3.fr>
[95]1168
[98]1169        * Fixed an error in saving attachments for new tickets for trac
1170          versions greater then 0.9.
1171          Fixed by: Bas van der Vlies
1172
1173        * When something went wrong save the offending email for debug
1174          purposes.
1175          Fixed by: Bas van der Vlies
1176
[99]1177        * delete_spam.py
1178           - did not clean up the attachment table. So we got nasty new
1179             mails with fake attachments.
1180           - It works now for versions higher then 0.8
[100]1181
1182        * Finally understand the unicode/encode functions and hopefully
1183          fixed the errors.
1184          Fixed by: Bas van der Vlies
[103]1185
1186        * Remove the temporarly created attachment files.
1187          Fixed by: Bas van der Vlies
[99]1188       
[92]11892006-07-06
[95]1190        * Fixed an error in already added attachments. Do not close
[85]1191          the database connection.
1192          Fixed by: Walter de Jong en Bas van der Vlies
1193
[95]1194        * Added enable_syslog option. If enabled log errors to syslog
[89]1195          instead of stderr. If enabled no errors are send back to the
1196          user.
[87]1197          Implemented by: Bas van der Vlies
1198
[95]1199        * Fixed an error with updating tickets with attachments for trac
[87]1200          versions 0.9 and 0.10. Field "id" is not known when a existing
1201          ticket is fetched (Error = KeyError: 'id')
1202          Fixed By: See tickets #258 and #449 on trac-hacks
1203
[95]1204        * Fixed and spell error, self.mail_addr must be self.email_addr
[88]1205          Fixed by: Bas van der Vlies
1206
[95]1207        * Catch a LookupError in unicode/encode conversion in function
[91]1208          get_body_text()
[89]1209          Fixed by: Bas van der Vlies
1210
[95]1211        * Description field was always changed when updating the ticket
[90]1212          via the web. Asked the mailing list for a solution and got one
1213          ;-)
1214          Patch/Suggestion by: Christian Boos
1215          Applied by: Bas van der Vlies
1216
[95]1217        * Fixed an encoding problem when email_header is set to 1
[91]1218          Fixed by: Bas van der Vlies
1219
[95]1220        * Fixed a bug in to_unicode() function.
[92]1221          Fixed by: Bas van der Vlies
1222
[95]1223        * Fixed an unicodedata.normalize TypeError bug for filenames in the
[92]1224          attachment function
1225          Fixed by: Bas van der Vlies
1226
1227
[81]12282006-06-02
[95]1229        * Added ticketing merging. To enable it there are two options for
[76]1230          both options enable 'ticket_update' in email2trac.conf
[81]1231          1 - Configure trac notification, eg:
[95]1232                * (ticket address: ticket@test.nl)
[81]1233                [notification]
1234                smtp_enabled = true
1235                smtp_always_cc = test@test.nl
1236                smtp_server = localhost
[82]1237                smtp_from =  ticket@test.nl
[76]1238                always_notify_reporter = true
1239
1240          2 - Use the mailto_cc in email2trac.conf if you want to sent
[81]1241              an email to the user and the trac ticket email address.
[76]1242
1243          With both options you get the right format of the subject line.
1244
[95]1245        * Use the short options for the install command. So it works for
[76]1246          MacOSx Reported by: Nathaniel Irons.
[81]1247
[95]1248        * Updated inline documentation by Nathaniel Irons.
[76]1249                 
[68]12502006-05-16
[95]1251        * Fixed a bug when there was no plain text body.
[63]1252          Reported by: Greg Deakyne
[95]1253        * Fixed a small bug if default component owner is unknown.
[63]1254          Just fill in some bogus info.
[95]1255        * Use the short options for the install command. So it works for
[64]1256          MacOSx
1257          Reported by: Nathaniel Irons
[95]1258        * Messages that has X-Virus-found in header are marked as SPAM
[68]1259          Implemented by: Walter de Jong
[95]1260        * Some modules are changed for version 0.10, Added and made some
[68]1261          minor changes: Patch supplied by: Markus Tacker 
[95]1262        * Ported delete_spam.py to version 0.9 and higher:
[69]1263          Reported by: Nathaniel Irons
[63]1264
[64]1265
[58]12662006-03-08
1267        - Fixed an bug for 0.9, there was a space in front of the ' ticket' directory.
1268          removed it.
1269          Reported by: mi-trachacks@moensolutions.com   
1270          Fixed by: Bas van der Vlies
[95]1271        * Fixed an exception error in delete_spam.py
[58]1272          when shutil has not enough priveledges to remove the
1273          attachments it is reported
1274          Fixed by: Bas van der Vlies
[95]1275        * email2trac.py: When you include the body tag, some
[58]1276          mailers (like Thunderbird) will leave out the signature.
1277          Therefore this version leaves out the body tag.
1278          Fixed by: Walter de Jong
[95]1279        * Added msg.txt for testing
[58]1280          Fixed by: Bas van der Vlies
1281
[46]12822006-02-01  Bas van der Vlies <basv@sara.nl>:
1283        * Added Tikcet notification, send email when there is
1284          a new ticket. Depends on notification setting in
1285          trac.ini.
1286          Implemented by: Kilian Cavalotti
[52]1287        * Can use different template for ticket notification,
1288          eg: alternate_notify_template: "a_tkt.css"
1289          Implemented by: Kilian Cavalotti
[46]1290        * Added reply_all config parameter. If set put all
1291          CC-addresses from orginal mail in ticket CC-field.
1292          Suggested by: Kilian Cavalotti
1293        * Text in ticket description is also properly UTF-8
1294          encoded
1295          Implemented by: Kilian Cavalotti
1296        * Removed reply_address from config file. Is not
1297          necessary anymore. See Ticket notification.
1298        * Added support for known users. If email address is
1299          known then use the trac known username instead
1300          of the email-address (only for trac version > 0.9)
1301          Implemented by: Kilian Cavalotti
[48]1302        * Fixed an error in saving attachments for version < 0.9.
1303          Sometimes we got bogus attachments.
1304          Fixed by: Walter de Jong
[50]1305        * Added support to make an debian package
1306          Implemented by: Bas van der Vlies
[46]1307
[36]13082006-01-21  Bas van der Vlies <basv@sara.nl>:
1309        * Fixed run_email2trac.c, did not work
1310        * Added TRAC_SCRIPT_NAME to Makefile.in to
1311          solve run_email2trac problem
1312
1313        Both errors reported by: kilian.cavalotti@lip6.fr
1314
[33]13152006-01-20  Bas van der Vlies <basv@sara.nl>:
1316        * A warning error is fixed by kilian.cavalotti@lip6.fr
1317        * Several errors in make install ;-(, reported by
1318          tacker
1319
[23]13202006-01-15  Bas van der Vlies <basv@sara.nl>:
1321        * Added configure script.
1322
[18]13232006-01-10  Bas van der Vlies <basv@sara.nl>:
1324        * Removed project_root from source and config file
1325        * Adjust code so we can use mulitple stanza's in config file, eg:
1326          [bas]
1327          project: /data/trac/bas
1328          spam_level: 3
1329
1330          use option "-p|--project bas" to select the stanza
1331
[5]13322006-01-04  Bas van der Vlies <basv@sara.nl>:
1333
1334        * Fixed getopt for -f option
1335        * Added suppport for different TRAC versions (0.8 and 0.9)
1336
13372006-01-03  Michel Jouvin  <jouvin@lal.in2p3.fr>
1338
1339        * email2trac.py (ReadConfig) : allow project name relative to project root in configuration file
1340       
1341        * email2trac.py (TicketEmailParser.parse): save entire email for debugging only if debug >= 2
1342
1343        * run_email2trac.c: pass wrapper arguments to Python script, filtering out --file
1344
1345        * 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)
1346
1347        * 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)
1348
13492005-12-22  Michel Jouvin  <jouvin@lal.in2p3.fr>
1350
1351        * Makefile: add a Makefile to build and install email2trac
1352
1353        * email2trac.py: migrate to Trac 0.9 API
1354
13552005-12-21  Michel Jouvin  <jouvin@lal.in2p3.fr>
1356
1357        * run_email2trac.c: add error messages if DEBUG macro defined
1358
1359        * run_email2trac.c: add error testing and specific return values for each error
1360
1361        * run_email2trac.c: Move site specific paramaters to run_email2trac.h
1362
1363        * run_email2trac.h: include file to define site specific paramaters
1364
13650.2.4 01/11/2005
1366        Added email_header option if set then show TO/CC fields in
1367        description of the ticket.
1368
1369        Fixed an error in the mailto URL. This was an old error that
1370        supposed to be fixed but reoccured in this version.
1371       
13720.2.3 31/10/2005
1373        Fixed a bug with base64 encoded attachments/emails
1374        Fixed by: Walter de Jong
1375
13760.2.2 10/10/2005
1377        according to RFC 2368 (titled "the mailto URL scheme") the mailto
1378        URL can only work with short &body messages. It fails with long
1379        messages and the link won't work. Therefore the mail body is
1380        no longer copied into the mail reply.
1381
13820.2.1 10/07/2005
1383        body of reply email looks better
1384
1385
13860.2   10/07/2005
1387        mailto is replaced by a html mailto to line. If
1388        you reply to the ticket via this link then an
1389        email client is started with some default values:
1390                To: <reporter>
1391                Subject: Re: <orginal subject>
1392                Body: email_comment <orginal text>
1393
1394        email2trac.conf:
1395                email_comment: # (default:  >)
1396
1397               
1398
Note: See TracBrowser for help on using the repository browser.