source: trunk/ChangeLog @ 620

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

fixed a UnicodeDecode? Error in printing filename
added pseudo code for pip and virtual env

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