Subversion Repositories

?revision_form?Rev ?revision_input??revision_submit??revision_endform?

Rev 94 | Rev 96 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
95 magnus 1
sa-exim (4.2.1-19) unstable; urgency=medium
2
 
3
  * no_eval.patch: [CVE-2019-19920] Manually parse option string in
4
    Greylisting plugin, avoiding use of eval() (Closes: #946829, #947198).
5
 
6
 -- Magnus Holmgren <holmgren@debian.org>  Sat, 08 Feb 2020 18:10:43 +0100
7
 
93 magnus 8
sa-exim (4.2.1-18) unstable; urgency=medium
9
 
10
  * Build with -DLOCAL_SCAN.
94 magnus 11
  * sprintf_no_format_string.patch: With exim 4.93, string_sprintf()
12
    requires at least two arguments (Closes: #943571). Thanks to Andreas
13
    Metzler.
93 magnus 14
 
94 magnus 15
 -- Magnus Holmgren <holmgren@debian.org>  Sat, 23 Nov 2019 22:40:24 +0100
93 magnus 16
 
89 magnus 17
sa-exim (4.2.1-17) unstable; urgency=medium
18
 
19
  * remove-header-crs.patch (new): Strip out carriage returns from header
20
    lines returned by spamd when the spool file is in wire format
21
    (Probably closes: #879687; it's a bit unclear what the bug is about).
90 magnus 22
  * api-limitation.patch: Do expansion of $primary_hostname on every call;
23
    for some reason, it were getting overwritten between calls despite
91 magnus 24
    using the permanent memory pool in accordance with Exim documentation.
25
    Also start using body_linecount again since it's now part of the API,
26
    but don't update it when it's zero, indicating that the spool file is
27
    in wire format.
89 magnus 28
 
92 magnus 29
 -- Magnus Holmgren <holmgren@debian.org>  Wed, 08 May 2019 23:11:16 +0200
89 magnus 30
 
87 magnus 31
sa-exim (4.2.1-16) unstable; urgency=low
32
 
33
  * reproducible-build.patch: Make ACKNOWLEDGEMENTS always UTF-8 encoded
34
    rather than depending on the environment.
35
 
36
 -- Magnus Holmgren <holmgren@debian.org>  Tue, 02 Aug 2016 23:08:31 +0200
37
 
84 magnus 38
sa-exim (4.2.1-15) unstable; urgency=low
75 magnus 39
 
40
  * reproducible-build.patch (new): Make build reproducible by replacing
41
    the build date with the source date via ${SOURCE_DATE_EPOCH} when
42
    available (Closes: #831649).  Thanks to Chris Lamb.
77 magnus 43
  * greylisting-ipv6.patch (new): Finally add IPv6 support to the
44
    greylisting plugin (Closes: #508161). Replaces grey-only-ipv4.patch.
45
    Based on Robert Tasarz's patch, though I decided to do things a little
76 magnus 46
    differently by keeping the greylistfourthbyte option for backwards
47
    compatibility and not adding separate options for IPv4 and IPv6 at
48
    this time. Also, with that option enabled, there will only be one
49
    directory level for all the last 64 bits of an IPv6 address.
78 magnus 50
  * delete-ext-html-references.patch (new): sa.html, which is shipped in
51
    the doc directory, is a copy of the author's webpage on sa-exim from
52
    his website, but without the images or linked pages, which means that
53
    most of the images and links don't work, except the SourceForge logo,
54
    which was fetched from sourceforge.net, causing a privacy concern. We
55
    drop the images and make the non-absolute links relative to
56
    http://marc.merlins.org/linux/exim/.
79 magnus 57
  * postinst, postrm: Remove hard-coded path to invoke-rc.d.
80 magnus 58
  * postrm: On purge, always delete the greylisting tuplets directory
59
    first. Normally, /var/spool/sa-exim is then empty and can be removed
60
    without asking the user, avoiding leaving unowned files (Closes:
61
    #657140).
81 magnus 62
  * greylist-lint.patch: disable greylisting plugin during spamassassin
63
    --lint to avoid warnings about missing headers (Closes: #760860).
64
    Thanks to Chaskiel Grundman.
82 magnus 65
  * Use dpkg-buildflags.
84 magnus 66
  * Bump Standards-Version to 3.9.8.
85 magnus 67
  * Override Lintian warning about virtual exim4-localscanapi dependency
68
    regardless of API version.
75 magnus 69
 
85 magnus 70
 -- Magnus Holmgren <holmgren@debian.org>  Fri, 22 Jul 2016 11:26:45 +0200
75 magnus 71
 
64 magnus 72
sa-exim (4.2.1-14) unstable; urgency=low
73
 
74
  * Updated Danish and Dutch Debconf template translations (Closes:
75
    #608447, #634314).
66 magnus 76
  * Drop the defaults for SAspamcHost and SAspamcPort, deferring to spamc
77
    as to what the defaults will be if those options are not set in
78
    sa-exim.conf (Closes: #506571).
67 magnus 79
  * The "nobody" user and "nogroup" group should not own files. Therefore,
80
    create /var/spool/sa-exim/tuplets with Debian-exim as owner on new
81
    installations and run greylistclean as Debian-exim by default. Don't
82
    change ownership of already existing /var/spool/sa-exim or
83
    /var/spool/sa-exim/tuplets, since the local admin may have different
84
    preferences, but give the Debian-exim group the write permission it
85
    needs if /var/spool/sa-exim/tuplets is owned by "nobody" and spamd
86
    runs as the calling user (Closes: #563492). Add documentation to
87
    README.Debian and remove recommendation to run spamd as "nobody" from
88
    README and README.greylisting.
68 magnus 89
  * Some tidying of debian/rules and the packaging in general:
90
    * Add build-arch and build-indep targets.
91
    * Remove configure target; it's not a mandatory target.
92
    * Remove install target and use dh_install (and dh_lintian) to put the
93
      files in the staging directory.
94
    * Replace /var/spool/exim with /var/spool/sa-exim in the Debian patch
95
      instead of using sed.
96
    * Pass SUFF='' to the makefile instead of renaming sa-exim-4.2.1.so
97
      afterwards.
98
    * Put our version of the crontab file in debian/greylistclean.cron.d
99
      and install it using dh_installcron.
100
    * Upgrade to Debhelper compat level 7. Replace dh_clean -k with
101
      dh_prep.
70 magnus 102
  * Switch to source package format 3.0 (quilt), splitting the Debian
103
    patch as follows:
104
    * api-limitations.patch: Changes needed because Exim exports only the
105
      symbols that are part of the official API.
106
    * spamc-args.patch: Changes related to the arguments sent to spamc.
107
    * grey-clean-sender.patch: Simplify the sender address so that senders
108
      using VERP, SRS, etc. hopefully won't be greylisted each and every
109
      time.
110
    * grey-only-ipv4.patch: Bail out if a non-IPv4 address is encountered.
111
    * improved-default-conf.patch: General improvements (in my opinion) of
112
      the default sa-exim.conf.
113
    * spamd-not-nobody.patch: Strike the recommendation that spamd run as
114
      nobody.
115
    * save-path.patch: Put saved mail in /var/spool/sa-exim instead of
116
      /var/spool/exim.
117
    * readme.patch: Other additions to the README file(s).
71 magnus 118
  * Update Standards-Version to 3.9.2.
64 magnus 119
 
72 magnus 120
 -- Magnus Holmgren <holmgren@debian.org>  Sun, 25 Dec 2011 12:13:22 +0100
64 magnus 121
 
62 magnus 122
sa-exim (4.2.1-13) unstable; urgency=low
123
 
124
  * Updated Spanish Debconf template translation (Closes: #543310).
125
    Submitted by Francisco Javier Cuadrado.
126
 
127
 -- Magnus Holmgren <holmgren@debian.org>  Sun, 14 Mar 2010 18:33:42 +0100
128
 
52 magnus 129
sa-exim (4.2.1-12) unstable; urgency=low
130
 
131
  * Debconf templates and debian/control reviewed by the debian-l10n-
132
    english team as part of the Smith review project (Closes: #517169).
133
  * Corresponding Debconf translation updates:
134
    * Brazilian Portuguese from Adriano Rafael Gomes. (Closes: #519422).
135
    * Czech from Miroslav Kure (Closes: #518989).
136
    * Finnish from Esko Arajärvi (Closes: #518200).
137
    * German from Matthias Julius (Closes: #518332).
138
    * Galician from Marce Villarino. (Closes: #519487).
139
    * Italian from Luca Monducci (Closes: #519177).
140
    * Japanese from Hideki Yamane (Closes: #518502).
141
    * Portuguese from Miguel Figueiredo. (Closes: #519002).
142
    * Swedish from Martin Bagge (Closes: #518325).
143
    * Vietnamese from Clytie Siddall (Closes: #517813).
60 magnus 144
  	* French from Christian Perrier (Closes: #532560).
59 magnus 145
    The following translations have not been updated yet: da, es, fr, nl.
60 magnus 146
  * Add Russian Debconf translation (Closes: #529808). Thanks to Yuri Kozlov.
53 magnus 147
  * debian/postinst: Don't call mv with a prepended path.
54 magnus 148
  * debian/control: Put back ${misc:Depends} in Depends.
55 magnus 149
  * debian/copyright: Point to the GPL 2.0 license text since this package
150
    is licensed under that version only.
56 magnus 151
  * Bump Standards-Version to 3.8.1.
57 magnus 152
  * Increase Debhelper compat level to 5.
58 magnus 153
  * Override Lintian warning about depending on exim4-localscanapi-1.1
154
    without a real package as a primary alternative, since adding that
155
    would defeat the purpose of not having to keep track of which version
156
    of Exim provides which API/ABI version.
52 magnus 157
 
60 magnus 158
 -- Magnus Holmgren <holmgren@debian.org>  Sat, 01 Aug 2009 13:55:21 +0200
52 magnus 159
 
47 magnus 160
sa-exim (4.2.1-11) unstable; urgency=low
44 magnus 161
 
162
  * Add Brazilian Portuguese Debconf template translation (Closes:
163
    #484986). Thanks to Adriano Rafael Gomes and Felipe Augusto van de
164
    Wiel.
45 magnus 165
  * Don't ignore make clean errors.
46 magnus 166
  * README.Debian: Remove outdated information about patching pre-3.0
47 magnus 167
    SpamAssassin. Add information regarding auto-expire problems
168
    (Closes: #461219).
48 magnus 169
  * Stop including the SA 2.x greylisting patches altogether (due to a
170
    typo only of them was included anyway).
49 magnus 171
  * This package seems to comply with policy 3.8.0 already.
44 magnus 172
 
51 magnus 173
 -- Magnus Holmgren <holmgren@debian.org>  Wed, 25 Jun 2008 19:11:02 +0200
44 magnus 174
 
37 magnus 175
sa-exim (4.2.1-10) unstable; urgency=low
176
 
177
  * Add Finnish Debconf template translation (Closes: #472788). Thanks to
178
    Esko Arajärvi.
38 magnus 179
  * New maintainer email address.
39 magnus 180
  * Use modern fields in debian/control (Homepage; Vcs-* fields without
181
    XS-).
40 magnus 182
  * Greylisting.pm: Bail out if a non-IPv4 address is encountered
183
    (Closes: #300103, #479955).
41 magnus 184
  * Greylisting.pm: Simplify the sender address so that senders using
185
    VERP, SRS, etc. hopefully won't be greylisted each and every time
186
    (Closes: #347590).
42 magnus 187
  * Increase Standards-Version to 3.7.3; no changes.
37 magnus 188
 
41 magnus 189
 -- Magnus Holmgren <holmgren@debian.org>  Tue, 03 Jun 2008 23:01:19 +0200
37 magnus 190
 
34 magnus 191
sa-exim (4.2.1-9) unstable; urgency=high
31 magnus 192
 
193
  * Fix ugly bug caused by expanding $primary_hostname to the
194
    non-permanent memory pool, where it will be overwritten when
195
    receiveing multiple messages over the same connection (strangely
196
    enough, nobody noticed).
32 magnus 197
  * Depend on the local_scan ABI version returned by
198
    exim4-localscan-plugin-config instead of all exim4-daemon-* variants
199
    (Closes: #426425).
33 magnus 200
  * debian/control: Indent Homepage: line and add XS-Vcs-* fields.
31 magnus 201
 
34 magnus 202
 -- Magnus Holmgren <magnus@kibibyte.se>  Tue, 21 Aug 2007 22:28:01 +0200
31 magnus 203
 
24 magnus 204
sa-exim (4.2.1-8) unstable; urgency=medium
205
 
25 magnus 206
  * Urgency medium to reach testing before exim4.
24 magnus 207
  * Since version 4.67-1, exim4 only exports those symbols that are part
208
    of the official local_scan API. Unfortunately, sa-exim cheated and
209
    declared three extern variables by itself:
210
    · primary_hostname: Now retrieved by expanding "$primary_hostname".
211
    · smtp_out: Use smtp_fflush() to get error indication.
212
    · body_linecount: No workaround; $body_linecount simply won't be
213
      updated. I'm working to get Exim to update it along with other
214
      variables such as $message_size.
25 magnus 215
    (Closes: #420443, #420555, #420736)
24 magnus 216
 
25 magnus 217
 -- Magnus Holmgren <magnus@kibibyte.se>  Thu, 26 Apr 2007 16:05:26 +0200
24 magnus 218
 
18 magnus 219
sa-exim (4.2.1-7) unstable; urgency=low
15 magnus 220
 
221
  * Don't depend on debconf in postrm; if we can't prompt the user,
16 magnus 222
    leave the spool directory alone (Closes: #417027).
17 magnus 223
  * Do not pass a '-u' parameter to spamc if SAspamcUser expands to the
224
    empty string.
15 magnus 225
 
19 magnus 226
 -- Magnus Holmgren <magnus@kibibyte.se>  Tue,  3 Apr 2007 13:02:48 +0200
15 magnus 227
 
13 magnus 228
sa-exim (4.2.1-6) unstable; urgency=low
229
 
230
  * Added Portuguese Debconf template translation (Closes: #415537).
231
    Thanks to Pedro Ribeiro.
232
  * It is now possible to pass a username to spamc. See the SAspamcUser
233
    option in sa-exim.conf.
234
  * Build-depend on exim4-dev.
235
 
236
 -- Magnus Holmgren <magnus@kibibyte.se>  Tue, 20 Mar 2007 14:25:31 +0100
237
 
11 magnus 238
sa-exim (4.2.1-5) unstable; urgency=low
239
 
240
  * Added Italian debconf template translation (Closes: #411396). Thanks
241
    to Luca Monducci.
242
  * Added Galician Debconf template translation (Closes: #412804).
243
    Thanks to Jacobo Tarrio.
244
  * Added Dutch debconf template translation (Closes: #413702). Thanks
245
    to Bart Cornelis.
246
  * Added debian/watch.
247
 
248
 -- Magnus Holmgren <magnus@kibibyte.se>  Wed,  7 Mar 2007 15:46:16 +0100
249
 
9 magnus 250
sa-exim (4.2.1-4) unstable; urgency=low
251
 
252
  * Added Spanish debconf template translation (Closes: #404490).
253
    Thanks to Rudy Godoy.
254
 
255
 -- Magnus Holmgren <magnus@kibibyte.se>  Tue,  9 Jan 2007 16:39:43 +0100
256
 
6 magnus 257
sa-exim (4.2.1-3) unstable; urgency=low
258
 
259
  * New maintainer (Closes: #352533).
260
  * Updated package description to explain what SA-Exim can do that
261
    exim-daemon-heavy can't, and vice versa (Closes: #378732).
262
  * Added German debconf template translation (Closes: #399963).
263
    Thanks to Matthias Julius.
264
  * Updated Swedish debconf templates.
265
  * Encourage use of ACL variables in sa-exim.conf. Also exclude ::1
266
    from SA scanning.
267
  * Removed unnecessary question in long description of debconf
268
    template.
269
  * Upgraded to Standards-Version 3.7.2. No changes needed.
270
  * Moved greylistclean to /usr/share/sa-exim. If you have modified
271
    the crontab file, you have to update it manually.
272
  * Added Recommends: perl (needed by greylistclean, but greylistclean
273
    isn't completely necessary.
274
 
275
 -- Magnus Holmgren <magnus@kibibyte.se>  Sun,  3 Dec 2006 00:41:01 +0100
276
 
4 magnus 277
sa-exim (4.2.1-2) unstable; urgency=medium
278
 
6 magnus 279
  * Fixed rights on /var/spool/sa-exim. Closes: #297623
4 magnus 280
  + Content-type bug closed by 4.2.1-1: Closes: #286069
281
  * Fixed README.greylisting Closes: #325335
282
  + Added cs, sv, vi translations Closes: #315995, #332363, #317869
283
  + Added note about unsupported linecontinuation to README
284
    sa-exim.conf already has note Closes: #276080
285
  + Removed SAtempreject from default sa-exim.conf Closes: #281567
286
 
287
 -- Sander Smeenk <ssmeenk@debian.org>  Mon, 27 Mar 2006 13:42:06 +0200
288
 
1 magnus 289
sa-exim (4.2.1-1) unstable; urgency=high
290
 
291
  * SECURITY: new upstream does a better job at being safe when deleting
4 magnus 292
    greylisting tuplets Closes: #345071
293
  * Fixed sa-exim.conf typo Closes: #305890
1 magnus 294
  * Disable former insecure /etc/cron.daily/greylistclean
295
 
4 magnus 296
 -- Sander Smeenk <ssmeenk@debian.org>  Mon, 09 Jan 2006 09:01:25 -0800
1 magnus 297
 
298
sa-exim (4.2-1) unstable; urgency=high
299
 
300
  * New upstream version
301
  * Ship new SA-Exim Greylisting plugin for SA 3.0 or better
302
  * Ship new /etc/cron.daily/greylistclean
303
  * Updated README.Debian
304
 
305
 -- Marc MERLIN <marc_soft@merlins.org>  Mon, 17 Dec 2005 00:14:03 -0800
306
 
307
sa-exim (4.1-1) unstable; urgency=high
308
 
309
  * New upstream version
310
  * SECURITY: new upstream provides SA greylisting patch with shell safe
311
    filenames and directories (only affected users who use the SA greylisting
312
    patch _and_ an unsafe shell cron job to delete old files and directories)
313
  * Updated README.debian to warn that the SA 2.4 greylisting patch is out
314
    of date and unmaintained.
315
 
316
 -- Marc MERLIN <marc_soft@merlins.org>  Mon, 16 Aug 2004 08:32:36 -0700
317
 
318
sa-exim (4.0-3) unstable; urgency=low
319
 
320
  + Changed hard depend on spamc, since that's all sa-exim needs.
321
    You have to choose to install spamassassin, or run spamc to
322
    another host. This entry closes: #253393
323
  + Documentation was assed to explain about sa-exim defaulting
324
    to exim4 configured to use exim4/use_split_config. Devine
325
    intervention is needed when using monolithic configs. One day
326
    sa-exim might detect this and act on it?
327
    This entry closes: #251755, #265820
328
  + Incorrect scoring of messages due to incorrect last-Received:
329
    header is now fixed by newer versions of the exim4 package.
330
    Dependencies have been changed. This entry closes: #250726, #246715
331
  + Updated Japanese translations of debconf templates. A typo in the
332
    english templates has been fixed too. This entry closes: #252341
333
 
334
 -- Sander Smeenk <ssmeenk@debian.org>  Wed, 15 Aug 2004 19:40:05 +0200
335
 
336
sa-exim (4.0-2) unstable; urgency=low
337
 
338
  * Clarified SA-greylisting patches in README.Debian
339
    Closes: #245573
340
  + Added Danish translations
341
  + Added French translations
342
    Closes: #238537, #239258
343
 
344
 -- Sander Smeenk <ssmeenk@debian.org>  Sat, 24 Apr 2004 11:34:35 +0200
345
 
346
sa-exim (4.0-1) unstable; urgency=low
347
 
348
  * New upstream version
349
  * Added new docs (README.greylisting / SA patches)
350
  * Create /var/spool/sa-exim/tuplets for the new greylisting support
351
 
352
 -- Marc MERLIN <marc_soft@merlins.org>  Tue, 03 Mar 2004 08:52:49 -0800
353
 
354
sa-exim (3.1-4) unstable; urgency=low
355
 
356
  * Fixed minor packaging bugs.
357
  * Debconf gettextized for translators (Closes: #237105)
358
 
359
 -- Sander Smeenk <ssmeenk@debian.org>  Sun, 07 Mar 2004 15:38:47 +0100
360
 
361
sa-exim (3.1-3) unstable; urgency=low
362
 
363
  * Clean up properly on purge, asking per debconf about removing saved mails
364
    in spool-directory if necessary.
365
  * Update to work with exim4 running as Debian-exim (don't include
366
    /var/spool/sa-exim in deb, generate it in postinst; stricter
367
    dependencies).
368
  * sa-exim uses spamc - Correct depends accordingly.
369
 
370
 -- Sander Smeenk <ssmeenk@debian.org>  Sun, 22 Feb 2004 10:32:03 +0100
371
 
372
sa-exim (3.1-2) unstable; urgency=low
373
 
374
  * Minor updates to control suggested by Andreas Metzler
375
  * Minor updates on upstream source (INSTALL / sa-exim.conf)
376
  * Uploaded to Debian (Closes: #196100)
377
 
378
 -- Marc MERLIN <marc_soft@merlins.org>  Wed, 20 Aug 2003 09:18:42 -0700
379
 
380
sa-exim (3.1-1) unstable; urgency=low
381
 
382
  * Upstream update
383
 
384
 -- Marc MERLIN <marc_soft@merlins.org>  Tue, 19 Aug 2003 09:48:13 -0700
385
 
386
sa-exim (3.0+cvs-20030802) unstable; urgency=low
387
 
388
  * Updated sa-exim to cvs version
389
  * Restored plugin location to /usr/lib/exim4/local_scan/
390
  * Added contrib contents to docs
391
 
392
 -- Marc MERLIN <marc_soft@merlins.org>  Sat, 02 Aug 2003 20:57:50 -0700
393
 
394
sa-exim (3.0+cvs-20030728) unstable; urgency=low
395
 
396
  * Updated sa-exim to cvs version
397
 
398
 -- Marc MERLIN <marc_soft@merlins.org>  Mon, 28 Jul 2003 21:08:24 -0500
399
 
400
sa-exim (3.0+cvs-1) unstable; urgency=low
401
 
402
  * Updated sa-exim to cvs version (and new sa-exim.conf config file)
403
 
404
 -- Marc MERLIN <marc_soft@merlins.org>  Mon, 08 Jun 2003 23:19:11 -0700
405
 
406
sa-exim (3.0-3) unstable; urgency=low
407
 
408
  * Taken over from Andreas, thanks for the template
409
  * Rewrote description in control
410
  * Updated docs to contain all the documentation files
411
  * /var/spool/sa-exim will contain the saved mails and is 770/mail.mail
412
  * Do not patch sample sa-exim.conf, run sed during the install
413
  * Removed ${misc:Depends} from control, my dpkg-gencontrol says it's unknown
414
  * Fixes to debian/control, debian/rules and debian/copyright for policy
415
    compliance and to make lintian more happy. Increased Standards-Version to
416
    3.5.10. (Andreas Metzler)
417
  * Add some magic to maintainerscripts, disabling the sa-exim part of exim's
418
    main configuration file when sa-exim is uninstalled. (Andreas Metzler)
419
 
420
 -- Marc MERLIN <marc_soft@merlins.org>  Mon, 26 May 2003 23:22:56 -0700
421
 
422
sa-exim (3.0-2) unstable; urgency=low
423
 
424
  * Small fixes
425
 
426
 -- Andreas Metzler <ametzler@debian.org>  Fri,  2 May 2003 20:20:11 +0200
427
 
428
sa-exim (3.0-1) unstable; urgency=low
429
 
430
  * renamed package to sa-exim
431
  * upgrade to 3.0
432
 
433
 -- Andreas Metzler <ametzler@debian.org>  Fri,  2 May 2003 17:36:28 +0200
434
 
435
exim4-sa-plugin (2.2-1) unstable; urgency=low
436
 
437
  * Initial Release.
438
 
439
 -- Andreas Metzler <ametzler@debian.org>  Thu, 13 Mar 2003 17:16:46 +0100
440