source: trunk/ChangeLog @ 637

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

strip_quotes used python 'print' instead of logging functions, breaks run_email2trac, closes #325

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