source: trunk/ChangeLog @ 650

Last change on this file since 650 was 650, checked in by bas, 10 years ago

added bloodhound comments to Changelog, see #331

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