source: trunk/ChangeLog @ 666

Last change on this file since 666 was 666, checked in by bas, 9 years ago

added a new option: save_raw_message

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