source: trunk/ChangeLog @ 606

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

added strip_signature_regex option, closes #296, #155

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