source: trunk/ChangeLog @ 673

Last change on this file since 673 was 673, checked in by bas, 8 years ago

updated changelogs

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