source: trunk/ChangeLog @ 641

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

added a new option cc_black_list

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