source: emailtotracscript/trunk/ChangeLog @ 99

Last change on this file since 99 was 99, checked in by bas, 18 years ago

EmailtoTracScript?:

delete_spam.py.in:

  • Fixed several erros
  • Property svn:mime-type set to text/x-trac-wiki
File size: 7.7 KB
RevLine 
[98]12006-XXXXX     
[95]2        * Use X11R5 install-sh to install email2trac components to hide
[98]3          native install program differences.
4          Author: Michel Jouvin <jouvin@lal.in2p3.fr>
[95]5
[98]6        * Fixed an error in saving attachments for new tickets for trac
7          versions greater then 0.9.
8          Fixed by: Bas van der Vlies
9
10        * When something went wrong save the offending email for debug
11          purposes.
12          Fixed by: Bas van der Vlies
13
[99]14        * delete_spam.py
15           - did not clean up the attachment table. So we got nasty new
16             mails with fake attachments.
17           - It works now for versions higher then 0.8
18       
[92]192006-07-06
[95]20        * Fixed an error in already added attachments. Do not close
[85]21          the database connection.
22          Fixed by: Walter de Jong en Bas van der Vlies
23
[95]24        * Added enable_syslog option. If enabled log errors to syslog
[89]25          instead of stderr. If enabled no errors are send back to the
26          user.
[87]27          Implemented by: Bas van der Vlies
28
[95]29        * Fixed an error with updating tickets with attachments for trac
[87]30          versions 0.9 and 0.10. Field "id" is not known when a existing
31          ticket is fetched (Error = KeyError: 'id')
32          Fixed By: See tickets #258 and #449 on trac-hacks
33
[95]34        * Fixed and spell error, self.mail_addr must be self.email_addr
[88]35          Fixed by: Bas van der Vlies
36
[95]37        * Catch a LookupError in unicode/encode conversion in function
[91]38          get_body_text()
[89]39          Fixed by: Bas van der Vlies
40
[95]41        * Description field was always changed when updating the ticket
[90]42          via the web. Asked the mailing list for a solution and got one
43          ;-)
44          Patch/Suggestion by: Christian Boos
45          Applied by: Bas van der Vlies
46
[95]47        * Fixed an encoding problem when email_header is set to 1
[91]48          Fixed by: Bas van der Vlies
49
[95]50        * Fixed a bug in to_unicode() function.
[92]51          Fixed by: Bas van der Vlies
52
[95]53        * Fixed an unicodedata.normalize TypeError bug for filenames in the
[92]54          attachment function
55          Fixed by: Bas van der Vlies
56
57
[81]582006-06-02
[95]59        * Added ticketing merging. To enable it there are two options for
[76]60          both options enable 'ticket_update' in email2trac.conf
[81]61          1 - Configure trac notification, eg:
[95]62                * (ticket address: ticket@test.nl)
[81]63                [notification]
64                smtp_enabled = true
65                smtp_always_cc = test@test.nl
66                smtp_server = localhost
[82]67                smtp_from =  ticket@test.nl
[76]68                always_notify_reporter = true
69
70          2 - Use the mailto_cc in email2trac.conf if you want to sent
[81]71              an email to the user and the trac ticket email address.
[76]72
73          With both options you get the right format of the subject line.
74
[95]75        * Use the short options for the install command. So it works for
[76]76          MacOSx Reported by: Nathaniel Irons.
[81]77
[95]78        * Updated inline documentation by Nathaniel Irons.
[76]79                 
[68]802006-05-16
[95]81        * Fixed a bug when there was no plain text body.
[63]82          Reported by: Greg Deakyne
[95]83        * Fixed a small bug if default component owner is unknown.
[63]84          Just fill in some bogus info.
[95]85        * Use the short options for the install command. So it works for
[64]86          MacOSx
87          Reported by: Nathaniel Irons
[95]88        * Messages that has X-Virus-found in header are marked as SPAM
[68]89          Implemented by: Walter de Jong
[95]90        * Some modules are changed for version 0.10, Added and made some
[68]91          minor changes: Patch supplied by: Markus Tacker 
[95]92        * Ported delete_spam.py to version 0.9 and higher:
[69]93          Reported by: Nathaniel Irons
[63]94
[64]95
[58]962006-03-08
97        - Fixed an bug for 0.9, there was a space in front of the ' ticket' directory.
98          removed it.
99          Reported by: mi-trachacks@moensolutions.com   
100          Fixed by: Bas van der Vlies
[95]101        * Fixed an exception error in delete_spam.py
[58]102          when shutil has not enough priveledges to remove the
103          attachments it is reported
104          Fixed by: Bas van der Vlies
[95]105        * email2trac.py: When you include the body tag, some
[58]106          mailers (like Thunderbird) will leave out the signature.
107          Therefore this version leaves out the body tag.
108          Fixed by: Walter de Jong
[95]109        * Added msg.txt for testing
[58]110          Fixed by: Bas van der Vlies
111
[46]1122006-02-01  Bas van der Vlies <basv@sara.nl>:
113        * Added Tikcet notification, send email when there is
114          a new ticket. Depends on notification setting in
115          trac.ini.
116          Implemented by: Kilian Cavalotti
[52]117        * Can use different template for ticket notification,
118          eg: alternate_notify_template: "a_tkt.css"
119          Implemented by: Kilian Cavalotti
[46]120        * Added reply_all config parameter. If set put all
121          CC-addresses from orginal mail in ticket CC-field.
122          Suggested by: Kilian Cavalotti
123        * Text in ticket description is also properly UTF-8
124          encoded
125          Implemented by: Kilian Cavalotti
126        * Removed reply_address from config file. Is not
127          necessary anymore. See Ticket notification.
128        * Added support for known users. If email address is
129          known then use the trac known username instead
130          of the email-address (only for trac version > 0.9)
131          Implemented by: Kilian Cavalotti
[48]132        * Fixed an error in saving attachments for version < 0.9.
133          Sometimes we got bogus attachments.
134          Fixed by: Walter de Jong
[50]135        * Added support to make an debian package
136          Implemented by: Bas van der Vlies
[46]137
[36]1382006-01-21  Bas van der Vlies <basv@sara.nl>:
139        * Fixed run_email2trac.c, did not work
140        * Added TRAC_SCRIPT_NAME to Makefile.in to
141          solve run_email2trac problem
142
143        Both errors reported by: kilian.cavalotti@lip6.fr
144
[33]1452006-01-20  Bas van der Vlies <basv@sara.nl>:
146        * A warning error is fixed by kilian.cavalotti@lip6.fr
147        * Several errors in make install ;-(, reported by
148          tacker
149
[23]1502006-01-15  Bas van der Vlies <basv@sara.nl>:
151        * Added configure script.
152
[18]1532006-01-10  Bas van der Vlies <basv@sara.nl>:
154        * Removed project_root from source and config file
155        * Adjust code so we can use mulitple stanza's in config file, eg:
156          [bas]
157          project: /data/trac/bas
158          spam_level: 3
159
160          use option "-p|--project bas" to select the stanza
161
[5]1622006-01-04  Bas van der Vlies <basv@sara.nl>:
163
164        * Fixed getopt for -f option
165        * Added suppport for different TRAC versions (0.8 and 0.9)
166
1672006-01-03  Michel Jouvin  <jouvin@lal.in2p3.fr>
168
169        * email2trac.py (ReadConfig) : allow project name relative to project root in configuration file
170       
171        * email2trac.py (TicketEmailParser.parse): save entire email for debugging only if debug >= 2
172
173        * run_email2trac.c: pass wrapper arguments to Python script, filtering out --file
174
175        * 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)
176
177        * 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)
178
1792005-12-22  Michel Jouvin  <jouvin@lal.in2p3.fr>
180
181        * Makefile: add a Makefile to build and install email2trac
182
183        * email2trac.py: migrate to Trac 0.9 API
184
1852005-12-21  Michel Jouvin  <jouvin@lal.in2p3.fr>
186
187        * run_email2trac.c: add error messages if DEBUG macro defined
188
189        * run_email2trac.c: add error testing and specific return values for each error
190
191        * run_email2trac.c: Move site specific paramaters to run_email2trac.h
192
193        * run_email2trac.h: include file to define site specific paramaters
194
1950.2.4 01/11/2005
196        Added email_header option if set then show TO/CC fields in
197        description of the ticket.
198
199        Fixed an error in the mailto URL. This was an old error that
200        supposed to be fixed but reoccured in this version.
201       
2020.2.3 31/10/2005
203        Fixed a bug with base64 encoded attachments/emails
204        Fixed by: Walter de Jong
205
2060.2.2 10/10/2005
207        according to RFC 2368 (titled "the mailto URL scheme") the mailto
208        URL can only work with short &body messages. It fails with long
209        messages and the link won't work. Therefore the mail body is
210        no longer copied into the mail reply.
211
2120.2.1 10/07/2005
213        body of reply email looks better
214
215
2160.2   10/07/2005
217        mailto is replaced by a html mailto to line. If
218        you reply to the ticket via this link then an
219        email client is started with some default values:
220                To: <reporter>
221                Subject: Re: <orginal subject>
222                Body: email_comment <orginal text>
223
224        email2trac.conf:
225                email_comment: # (default:  >)
226
227               
228
Note: See TracBrowser for help on using the repository browser.