source: trunk/ChangeLog @ 610

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

Updated changelog

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