source: trunk/ChangeLog @ 615

Last change on this file since 615 was 615, checked in by bas, 12 years ago

Improved code for detecting which trac version is installed

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