source: trunk/debian/changelog @ 344

Last change on this file since 344 was 344, checked in by bas, 14 years ago

We must also use the overriden reporter value in the notification function, closes #187

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 15.1 KB
RevLine 
[344]1email2trac (1.3.1-1) stable; urgency=low
2
3  * If reported field is overriden then use it also use the overriden value
4    for notification, closes #187
5   
6    Reported by: shildebrand at venturebeat dot com
7    Fixed by: Bas van der Vlies
8   
9 -- Bas van der Vlies <basv@sara.nl>  Tue, 30 Mar 2010 10:27:44 +0200
10
[337]11email2trac (1.3.0-3) stable; urgency=low
[327]12
[332]13  * Added configure option '--with-install_user=<name>', default user is 'root'.
14    The specified user is used for installation so we can install the
15    package as non-root user, closes #182.
[327]16
17    Reported by: shildebrand at venturebeat dot com
18    Fixed by: Bas van der Vlies
19
20  * Re-arranged some code so that we can override ticket fields in
[333]21    email2trac.conf, eg:
22     - default_reporter : email2trac
[327]23
[333]24    Will set the reporter ticket field to email2trac for all mail, closes #182
25
[327]26    Reported by: shildebrand at venturebeat dot com
27    Fixed by: Bas van der Vlies
28
[329]29  * Fixed a bug when there is no subject field in the message, closes #179
30    The fix in the 1.2.0 version did not work.
31    Reported by: xurizaemon and John Donners (SARA)
32    Fixed by: Bas van der Vlies
33
[331]34  * We do not write any files when dry run mode is enabled.
35    Fixed by: Bas van der Vlies
36
[337]37  * Fixed several issues when DEBUG is enabled with printing non-ascii
[331]38    characters, see #184
39    Reported by: hju add jochenkuhl dot de
40    Fixed by: Bas van der Vlies
41 
[327]42 -- Bas van der Vlies <basv@sara.nl>  Wed, 03 Mar 2010 15:50:35 +0100
43
[308]44email2trac (1.2.0-1) stable; urgency=low
45
46  * Added an option to run_email2trac to set the PYTHON_EGG_CACHE
47    environment variable (-e|--eggcache), closes #174
48    Author: pepl at cpan dot org
49    Applied by: Bas van der Vlies
50
[314]51  * Ticket fields can be set inline an email: closes #171, #88
[313]52     - controlled by parameter 'inline_properties', default behaviour off
53     - see https://subtrac.sara.nl/oss/email2trac/wiki/Email2tracParse#Updateticketfields
54
55    Author: samuel at hoffstaetter dot com
56    Applied by: Bas van der Vlies
[316]57
[319]58  * Fixed a bug when there is no subject field in the message, closes #179
[316]59    Reported by: xurizaemon
60    Fixed by: Bas van der Vlies
[319]61
62  * Added unicode support attachment filenames, closes #177
63    Reported by: obwandner add concertare dot de
64    Fixed by: Bas van der Vlies
65
66  * Email to blog did not work at all. It works but it can not handle
67    attachments. see #175.
68    Reported by: oland dot wells add gmail.com
69    Patches    : Bas van der Vlies
[320]70
71  * Show errors when we can not include attachments in the ticket, see #165
72    Requested by: hju add jochenkuhl dot de and  dereks add cool-st dot com
73    Fixed by: Bas van der Vlies
74
75  * Added a new option 'email_triggers_workflow'. When a ticket is closed and
76    an update is received via email. The ticket will be reopened or triggers
77    a ticket workflow. This action can be skipped if we set the
78    email_triggers_workflow option to 0. The default value is 1, closes #180
79    Author: zac add sprackettd dot com
80    Applied by: Bas van der Vlies
81
82   
83
[308]84 -- Bas van der Vlies <basv@sara.nl>  Wed, 27 Jan 2010 16:17:41 +0100
85
[306]86email2trac (1.1.0-6) stable; urgency=low
[288]87
88  * Workflow option did not work, closes #157
89    Reported by: thomas dot moschny at gmx dot de
90    Fixed  by: Bas van der Vlies & Thomas Moschny
91   
92  * When a ticket is updated via email. We must set a changelog id,
93    closes #156
94    Reported by: Chris dot Nelson at SIXNET dot com
95    Fixed by: Bas van der Vlies
96
[303]97  * Changed all 'str =' assignments to 's =' to solve conflicts with
98    the builtin str function
99    Fixed by: Bas van der Vlies
[288]100
[303]101  * Python egg cache enviroment setting was ignored by email2trac.
102    closes #163
103    Author: Dennis McRitchie ( dmcr at Princeton dot EDU )
104    Applied by: Bas van der Vlies
[292]105
[303]106  * Disabled code so the following line will not be displayed anymore
107    as comment in a ticket:
108     - This message has x attachment(s)
109    Suggested by: dereks at realloc dot net, closes ticket #165
110    Fixed by    : Bas van der Vlies
[292]111
[295]112
[303]113  * Added a new parameter strip_content_types. So we can strip attachments
114    based on content type, eg:
115     - strip_content_types: application/pgp-signature, application/mac-binhex40
[295]116
[303]117    Will strip attachments that has these content_types.
118    Authors:  otto at bergerdata dot de and Bas van der Vlies
[295]119
[303]120  * FIxed an error when files where added with characters that needed to be
121    escaped. Both email2trac and trac escaped the filenames. We removed the
122    code from email2trac an let trac handle the escaping, closes #149
[296]123
[303]124    Reported by: hju att jochenkuhl dot de
125    Fixed by: Bas van der Vlies
[297]126
[303]127  * Added a new parameter:
128     - subject_field_separator, default value is &
[297]129
[303]130    This is used to set tickets fields via the subject line. It used to
131    be , .For backwards compatibility we introduced this parameter.
132    closes #166
133    Suggested by: Dennis McRitchie ( dmcr at Princeton dot EDU )
134    Fixed by    : Bas van der Vlies
[300]135
[303]136  * Prevent mail loop. We could set the CC ticket field to
137    the ticket email address.
138     - For a new ticket and reply_all is set.
139     - If the ticket CC field is updated via the subject line.
[304]140
141    Also prevent setting the reporter address to the ticket email
142    address.
143
[303]144    closes #172
145    Reported by: otto at bergerdata dot de
146    Fixed vy   : Bas van der Vlies
[296]147   
[288]148 -- Bas van der Vlies <bas@sara.nl>  Thu, 22 Oct 2009 17:47:50 +0200
149
[278]150email2trac (1.0.0-1) stable; urgency=low
151
152  * Implemented a new feature to drop the HTML version of multipart/alternative
[279]153    message part. Such a message part contains the same info. The info is sent
[280]154    in different formats and the client can decide which version to use.
[279]155    closes #30
[283]156
157    to enable in email2trac.conf:
158        - drop_alternative_html_version: 1
[279]159 
[278]160    Implemented by: Bas van der Vlies
161
162 -- Bas van der Vlies <basv@sara.nl>  Tue, 25 Aug 2009 11:50:40 +0200
163
[275]164email2trac (0.90-1) stable; urgency=low
[269]165
[271]166  * updated aclocal.m4 to support python versions 2.5 and 2.6, closes #137
167  * use the email addres in the reporter field, closes #136
[269]168  * Fixed an error in blog update function
169
[271]170    All Fixes by: Bas van der Vlies
[269]171
[274]172  * if alternate notify template is set then also set ticket id. It will show
173    up as ticket change, closes #142
174    Reported by: hju att jochenkuhl dot de
175    Fixed by: Bas van der Vlies
176
[272]177  * Error in urllib.quote(filename) could not handle unicode
178    filenames, closes #138
179   
180    Reported by: debacle at debian dot org
181    Applied  by: Bas van der Vlies
182
[274]183 
184  * Fixed an error when debug is on and the body message contains unicode
185    strings, closes #144
186    Reported by: trumbitta at gmail dot com
187    Applied by: Bas van der Vlies
[271]188
[278]189  * default trac version for email2trac is now updated to 0.11
[276]190
[274]191 -- Bas van der Vlies <basv@sara.nl>  Thu, 04 Jun 2009 14:48:11 +0200
192
[259]193email2trac (0.80-1) stable; urgency=low
194
[264]195  * Fixed in parsing the reflow parameter, closes #123
196    Reported by: tomasz dot sterna at sensisoft dot com
197    Fixed by: Bas van der Vlies
[259]198
[264]199  * implemented workflow for tickets that are reopend, closes #70
200    Reported by: hju at jochenkuhl dot de
201    Author by: Bas van der Vlies
[259]202
[264]203  * added FullBlogPlugin support. So we can update/create the blogs
204    via email, #116
205    Authors: Bas van der Vlies & lucas dot eisenzimmer at t-systems-mms dot com
[260]206
[264]207  * email2trac require at least python version 2.4, closes #131
208    Reported by: otto at bergerdata dot de
209    Fixed by: Bas van der Vlies
[261]210
[264]211  * We can now set ticket fields for a new ticket via the 'subject' line:
[262]212    - Subject: <description> #?<field=value>[,<field=value>]*
[264]213    closes #130
[259]214
[264]215    Requested by: Steve
216    Implemented by: Bas van der Vlies
[262]217
218 -- Bas van der Vlies <basv@ssara.nl>  Tue, 24 Mar 2009 15:26:08 +0100
219
[252]220email2trac (0.70-1) stable; urgency=low
221
222  * New stable version
223
[262]224 -- Bas van der Vlies <basv@sara.nl>  Tue, 27 Jan 2009 15:42:32 +0100
[252]225
[244]226email2trac (0.60-1) stable; urgency=low
[235]227
[244]228  *  New stable version
[235]229
[262]230 -- Bas van der Vlies <root@subtrac2.rc.sara.nl>  Thu, 20 Nov 2008 11:29:59 +0100
[235]231
[224]232email2trac (0.40-1) stable; urgency=low
233
234  * New Version, see ChangeLog
235
[262]236 -- Bas van der Vlies <root@subtrac2.rc.sara.nl>  Fri, 10 Oct 2008 17:24:09 +0200
[224]237
[217]238email2trac (0.30-3) stable; urgency=low
239
240  * Non-maintainer upload.
241  * Reopen ticket if an email update is received
242
[262]243 -- Bas van der Vlies <root@subtrac2.rc.sara.nl>  Mon, 04 Aug 2008 16:14:12 +0200
[217]244
[213]245email2trac (0.30-2) stable; urgency=low
246
247  *  Fixed an error in formating email_header.
248
249 -- Bas van der Vlies <basv@sara.nl>  Thu, 03 Jul 2008 12:53:39 +0200
250
[210]251email2trac (0.30-1) stable; urgency=low
252
[211]253  * a lot improvements and fixes, see Changelog
[210]254
[211]255 -- Bas van der Vlies <basv@sara.nl>  Tue,  3 Jun 2008 23:00:27 +0200
256
[204]257email2trac (0.20-1) stable; urgency=low
258
259  * New version, see Changelog
260
[211]261 -- Bas van der Vlies <root@rc.sara.nl>  Tue, 27 May 2008 23:12:54 +0200
[204]262
[195]263email2trac (0.13.0-1) stable; urgency=low
264
265  * New version with a lot of improvements
266
[262]267 -- Bas van der Vlies <root@rc.sara.nl>  Mon,  4 Feb 2008 11:27:27 +0100
[195]268
[187]269email2trac (0.10.0-2) stable; urgency=low
270
271  *  Added extra info to syslog when exception occurs
272
[262]273 -- Bas van der Vlies <root@rc.sara.nl>  Fri,  3 Aug 2007 09:45:26 +0200
[187]274
[182]275email2trac (0.10.0-1) stable; urgency=low
276
277  * New release, see ChangeLog
278
[185]279 -- bas <basv@sara.nl>  Tue, 17 Jul 2007 14:15:14 +0200
[182]280
[156]281email2trac (0.9.5-1) stable; urgency=low
282
283  * New version with some new features see ChangeLog
284
285 -- bas <basv@sara.nl>  Tue, 24 Apr 2007 14:27:25 +0200
286
[144]287email2trac (0.9.0-2) stable; urgency=low
288
289  * add email2trac.conf to conffiles
290
[156]291 -- bas <basv@sara.nl>  Wed,  6 Dec 2006 14:28:04 +0100
[144]292
[142]293email2trac (0.9.0-1) stable; urgency=low
294
295  * New version nothing changed
296
[156]297 -- bas <basv@sara.nl>  Mon,  4 Dec 2006 18:57:16 +0100
[142]298
[139]299email2trac (0.8.2-2) stable; urgency=low
300
301  * Try new version with unicode fixes
302
[156]303 -- bas <basv@sara.nl>  Mon,  4 Dec 2006 12:04:30 +0100
[139]304
[132]305email2trac (0.8.2-1) stable; urgency=low
306
307  * New release version
308
[156]309 -- bas <basv@sara.nl>  Thu, 26 Oct 2006 08:19:56 +0200
[132]310
[129]311email2trac (0.8.1-6) stable; urgency=low
312
313  * Fixed a strang bug in 0.9 version, if ticket update and email has
314    attachment we are not allowed to set the description and author
315    field of the attachment else the comment text is lost
316
[156]317 -- bas <basv@sara.nl>  Fri, 20 Oct 2006 13:06:28 +0200
[129]318
[128]319email2trac (0.8.1-5) stable; urgency=low
320
321  *  Adjust delete_spam.py for version 0.10
322
[156]323 -- bas <basv@sara.nl>  Thu, 19 Oct 2006 10:57:30 +0200
[128]324
[127]325email2trac (0.8.1-4) stable; urgency=low
326
327  * Fixed an error in ticket update, when a ticket does not exists
[128]328    proceed if it is a new ticket.
[127]329
[156]330 -- bas <bas@rc.sara.nl>  Wed, 18 Oct 2006 09:50:36 +0200
[127]331
[125]332email2trac (0.8.1-3) stable; urgency=low
333
334  * setgid() must be called before setuid()
335
[156]336 -- bas <bas@rc.sara.nl>  Tue, 17 Oct 2006 11:17:13 +0200
[125]337
[124]338email2trac (0.8.1-2) stable; urgency=low
339
340  * Replace sys.exit(0) bij return else there is an exception
341
[156]342 -- bas <bas@rc.sara.nl>  Wed, 11 Oct 2006 14:08:50 +0200
[124]343
[117]344email2trac (0.8.1-1) stable; urgency=low
345
346  * Fixed some errors in delete_spam.py
[120]347  * added drop_spam option
[121]348  * add author and description field when adding a attachment
[117]349
[156]350 -- bas <bas@rc.sara.nl>  Thu,  5 Oct 2006 15:03:23 +0200
[117]351
[112]352email2trac (0.8.0-2) stable; urgency=low
353
[113]354  * Do not send notification when message is marked as Spam
[112]355
[156]356 -- bas <bas@subtrac.sara.nl>  Mon,  2 Oct 2006 10:57:09 +0200
[112]357
[111]358email2trac (0.8.0-1) stable; urgency=low
359
360  * See ChangeLog
361
[156]362 -- bas <bas@subtrac.sara.nl>  Fri, 29 Sep 2006 12:29:30 +0200
[111]363
[106]364email2trac (0.7.7-1) stable; urgency=low
365
366  * added RPM specfile
367
[156]368 -- bas <bas@rc.sara.nl>  Mon, 28 Aug 2006 10:11:30 +0200
[106]369
[105]370email2trac (0.7.6-5) stable; urgency=low
371
372  *  Fixed reply_all bug, thanks to ncarlson@ibsys.com
373
374 -- Bas van der Vlies <basv@sara.nl>  Fri, 21 Jul 2006 14:45:14 +0200
375
[103]376email2trac (0.7.6-4) stable; urgency=low
377
378  *  Remove the temporarly create files by trac for attachment insertion
379
[105]380 -- Bas van der Vlies <basv@sara.nl>  Mon, 17 Jul 2006 10:46:29 +0200
[103]381
[100]382email2trac (0.7.6-3) stable; urgency=low
383
384  * Hopefully now fixed the unicode/encode problems
385
386 -- Bas van der Vlies <basv@sara.nl>  Fri, 14 Jul 2006 10:59:25 +0200
387
[99]388email2trac (0.7.6-2) stable; urgency=low
389
390  * Fixed delete_spam.py for versions higher then 0.8
391
392 -- Bas van der Vlies <basv@sara.nl>  Thu, 13 Jul 2006 14:28:55 +0200
393
394email2trac (0.7.6-1) stable; urgency=low
395
396  * Fixes delete_spam.py also delete from attachment table
397    Fixes: Jaap Dijkshoorn
398
[156]399 -- bas <bas@rc.sara.nl>  Thu, 13 Jul 2006 12:33:41 +0200
[99]400
[98]401email2trac (0.7.5-1) stable; urgency=low
402
403  * Fix for release greater than 0.8, now attachments where saved
404    when a new ticket was inserted
405
[156]406 -- bas <bas@rc.sara.nl>  Thu, 13 Jul 2006 10:23:27 +0200
[98]407
[96]408email2trac (0.7.4-2) stable; urgency=low
409
410  * New bug fixes for unicode support
411
[156]412 -- bas <bas@subtrac.sara.nl>  Tue, 11 Jul 2006 14:52:58 +0200
[96]413
414email2trac (0.7.4-1) stable; urgency=low
415
416  * Unicode bug fixes
417
[156]418 -- bas <bas@subtrac.sara.nl>  Tue, 11 Jul 2006 09:24:00 +0200
[96]419
[92]420email2trac (0.7.3-7) stable; urgency=low
421
422  * removed some unicode data conversions
423
[156]424 -- bas <bas@subtrac.sara.nl>  Thu,  6 Jul 2006 09:04:35 +0200
[92]425
[91]426email2trac (0.7.3-6) stable; urgency=low
427
428  * Fixed an encoding problem when email_header is set to 1
429
[156]430 -- bas <bas@subtrac.sara.nl>  Fri, 30 Jun 2006 13:42:38 +0200
[91]431
[90]432email2trac (0.7.3-5) stable; urgency=low
433
434  *  Description always changed when accesing the ticket via the web.
435     Suggestion/Patch by: Christian Boos
436
[156]437 -- bas <bas@subtrac.sara.nl>  Fri, 30 Jun 2006 09:50:32 +0200
[90]438
[89]439email2trac (0.7.3-4) stable; urgency=low
440
441  * Fixed a LookupError 
442
[156]443 -- bas <basv@sara.nl>  Mon, 26 Jun 2006 09:58:07 +0200
[89]444
[88]445email2trac (0.7.3-3) stable; urgency=low
446
447  * Fixed and spell error, self.mail_addr must be self.email_addr
448
[156]449 -- bas <basv@sara.nl>  Thu, 22 Jun 2006 15:17:55 +0200
[88]450
[87]451email2trac (0.7.3-1) stable; urgency=low
452
453  * Enabled syslog option
454
[156]455 -- bas <bas@subtrac.sara.nl>  Thu, 22 Jun 2006 12:45:37 +0200
[87]456
457email2trac (0.7.2-0) stable; urgency=low
458
459  * Added new try/except statement and fixed LookupError
460
[156]461 -- bas <bas@subtrac.sara.nl>  Thu, 22 Jun 2006 09:59:02 +0200
[87]462
[85]463email2trac (0.7.1-3) stable; urgency=low
464
465  * Fixed an error for already added attachments. Do not close the
466    database connection
467
[156]468 -- bas <bas@subtrac.sara.nl>  Fri, 16 Jun 2006 13:52:26 +0200
[85]469
[81]470email2trac (0.7.0-2) stable; urgency=low
471
472  * Fixed some language errors by Nathaniel Irons
473
[156]474 -- bas <bas@subtrac.sara.nl>  Fri,  2 Jun 2006 09:27:22 +0200
[81]475
[78]476email2trac (0.7.0-1) stable; urgency=low
477
478  * Added Ticket merging
479
[156]480 -- bas <bas@subtrac.sara.nl>  Fri, 26 May 2006 15:01:03 +0200
[78]481
[69]482email2trac (0.6.0-1) stable; urgency=low
483
484  * New Version 0.6
485
[156]486 -- bas <bas@sara.nl>  Tue, 16 May 2006 11:14:11 +0200
[69]487
[66]488email2trac (0.5.7-1) stable; urgency=low
489
490  * New version that fixes serveral bugs
491
[156]492 -- bas <bas@subtrac.sara.nl>  Wed, 12 Apr 2006 15:54:30 +0200
[66]493
[55]494email2trac (0.5.0-4) stable; urgency=low
495
496  *  Continue instead of going on
497
[156]498 -- bas <bas@subtrac.sara.nl>  Fri, 17 Feb 2006 14:29:48 +0100
[55]499
500email2trac (0.5.0-3) stable; urgency=low
501
502  *  Fixed delete_spam.py if there are not enough permissions to
503     delete tickets
504
[156]505 -- bas <bas@subtrac.sara.nl>  Fri, 17 Feb 2006 12:38:19 +0100
[55]506
[54]507email2trac (0.5.0-2) stable; urgency=low
508
509  * leave out the body tag for email urls
510
[156]511 -- bas <bas@subtrac.sara.nl>  Thu, 16 Feb 2006 16:01:02 +0100
[54]512
[49]513email2trac (0.5.0-1) stable; urgency=low
514
515  *  First package
516
517 -- Bas van der Vlies  <bas@sara.nl>  Thu, 29 Dec 2005 14:40:11 +0100
Note: See TracBrowser for help on using the repository browser.