source: trunk/ChangeLog @ 593

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

Changed license to apache version 2.0

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