/[smeserver]/rpms/spamassassin/sme10/spamassassin.spec
ViewVC logotype

Contents of /rpms/spamassassin/sme10/spamassassin.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download)
Fri Nov 27 15:41:07 2020 UTC (3 years, 6 months ago) by jpp
Branch: MAIN
CVS Tags: spamassassin-3_4_4-8_el7_sme
Changes since 1.3: +8 -1 lines
* Fri Nov 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.4.4-8.sme
- import in SME Server 10 [SME: 11206]
  I just added BuildRequires for perl(ExtUtils::MakeMaker)
  all credit to John Crisp sweat on this one !

1 # OVERRIDE RHEL VERSION HERE, RHEL BUILDSYSTEM DOESN'T HAVE DIST TAG
2 #%%define rhel 4
3
4 # Define dist tags for old RHEL releases
5 %if 0%{?rhel} == 4
6 %define dist .el4
7 %endif
8 %if 0%{?rhel} == 5
9 %define dist .el5
10 %endif
11 %if 0%{?rhel} == 6
12 %define dist .el6
13 %endif
14
15 # Define variables to use in conditionals
16 %define option_ssl 0
17 %define perl_devel 0
18 %define dkim_deps 1
19 %global patricia_deps 0
20 %global razor_deps 1
21 %define require_encode_detect 0
22 %define use_systemd 1
23
24 # SSL and IPv6 (FC6+, RHEL5+)
25 %if 0%{?fedora} > 5 || 0%{?rhel} >= 5
26 %define option_ssl 1
27 %endif
28
29 # Split perl-devel (FC7+ and RHEL-8+)
30 %if 0%{?fedora} > 6 || 0%{?rhel} > 7
31 %define perl_devel 1
32 %endif
33
34 # Encode::Detect, not strictly required but helpful if you enable language detection (FC7+)
35 %if 0%{?fedora} > 6 || 0%{?rhel} >= 6
36 %define require_encode_detect 1
37 %endif
38
39 # Mail::DKIM by default (F11+)
40 %if 0%{?fedora} >= 11 || 0%{?rhel} >= 6
41 %define dkim_deps 1
42 %endif
43
44 %if 0%{?fedora} >= 16 || 0%{?rhel} >= 7
45 %define use_systemd 1
46 %endif
47
48 %if ! 0%{?rhel}
49 %global patricia_deps 1
50 %global razor_deps 1
51 %endif
52
53 %define real_name Mail-SpamAssassin
54 %{!?perl_vendorlib: %define perl_vendorlib %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)}
55
56 %global saversion 3.004004
57 #%%global prerev rc2
58
59 Summary: Spam filter for email which can be invoked from mail delivery agents
60 Name: spamassassin
61 Version: 3.4.4
62 #Release: 0.8.%%{prerev}%%{?dist}
63 Release: 8%{?dist}
64 License: ASL 2.0
65 URL: https://spamassassin.apache.org/
66 Source0: https://www.apache.org/dist/%{name}/source/%{real_name}-%{version}.tar.bz2
67 #Source0: %%{real_name}-%%{version}-%%{prerev}.tar.bz2
68 Source1: https://www.apache.org/dist/%{name}/source/%{real_name}-rules-%{version}.r1873061.tgz
69 #Source1: %%{real_name}-rules-%%{version}.%%{prerev}.tgz
70 Source2: redhat_local.cf
71 Source3: spamassassin-default.rc
72 Source4: spamassassin-spamc.rc
73 Source5: spamassassin.sysconfig
74 Source6: sa-update.logrotate
75 Source7: sa-update.crontab
76 Source8: sa-update.cronscript
77 Source9: sa-update.force-sysconfig
78 Source10: spamassassin-helper.sh
79 Source11: spamassassin-official.conf
80 Source13: README.RHEL.Fedora
81 %if %{use_systemd}
82 Source14: spamassassin.service
83 %endif
84 Source15: spamassassin.sysconfig.el
85 Source16: sa-update.service
86 Source17: sa-update.timer
87
88 # Patches 0-99 are RH specific
89 # https://bugzilla.redhat.com/show_bug.cgi?id=1055593
90 # Switch to using gnupg2 instead of gnupg1
91 Patch0: spamassassin-3.3.2-gnupg2.patch
92 Patch1: spamassassin-3.4.1-add-logfile-homedir-options.patch
93 # Patches 100+ are SVN backports (DO NOT REUSE!)
94 # end of patches
95 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
96 %if %{use_systemd} == 0
97 Requires: /sbin/chkconfig /sbin/service
98 %endif
99 Requires(post): diffutils
100
101 BuildRequires: gcc
102 BuildRequires: perl-interpreter >= 2:5.8.0
103 BuildRequires: perl-generators
104 BuildRequires: perl(Net::DNS)
105 BuildRequires: perl(Time::HiRes)
106 BuildRequires: perl(HTML::Parser)
107 BuildRequires: perl(NetAddr::IP)
108 BuildRequires: openssl-devel
109 # These are here for config checking, they are only really needed as Requires (runtime)
110 BuildRequires: perl(DB_File)
111 BuildRequires: perl(Mail::SPF)
112 BuildRequires: perl(Net::CIDR::Lite)
113 BuildRequires: perl(LWP::UserAgent)
114 BuildRequires: perl(Digest::SHA1)
115 BuildRequires: perl(Test::More)
116 ## added to build on Koozali SME Server builders
117 BuildRequires: perl(ExtUtils::MakeMaker)
118 # Fedora package needs fixing before we can depend on it
119 #BuildRequires: re2c
120 %if %{use_systemd}
121 BuildRequires: systemd-units
122 %endif
123
124 Requires: perl(HTTP::Date)
125 Requires: perl(LWP::UserAgent)
126 Requires: perl(Net::DNS)
127 Requires: perl(Time::HiRes)
128 Requires: perl(DB_File)
129 Requires: perl(Mail::SPF)
130 Requires: perl(Net::CIDR::Lite)
131 %if %{require_encode_detect}
132 Requires: perl(Encode::Detect)
133 %endif
134 Requires: perl(BSD::Resource)
135 Requires: procmail
136 Requires: gnupg2
137 Requires: perl(XSLoader)
138 Requires: perl(ExtUtils::MakeMaker)
139 # Fedora package needs fixing before we can depend on it
140 #Requires: re2c
141
142 # Hard requirements
143 BuildRequires: perl-HTML-Parser >= 3.43
144 Requires: perl-HTML-Parser >= 3.43
145 BuildRequires: perl(Archive::Tar)
146 Requires: perl(Archive::Tar)
147
148 # Optional requirements that might make things better/faster
149 %if %{patricia_deps}
150 Requires: perl(Net::Patricia)
151 BuildRequires: perl(Net::Patricia)
152 %endif
153 %if %{razor_deps}
154 Requires: perl-Razor-Agent
155 BuildRequires: perl-Razor-Agent
156 %endif
157
158 %if %{option_ssl}
159 # Needed for spamc/spamd SSL
160 Requires: perl(IO::Socket::SSL)
161 BuildRequires: perl(IO::Socket::SSL)
162 # Needed for IPv6
163 Requires: perl(IO::Socket::INET6)
164 BuildRequires: perl(IO::Socket::INET6)
165 %endif
166 %if %{perl_devel}
167 BuildRequires: perl-devel
168 %endif
169 # Mail::DKIM for F12+, works from RHEL5+ from EPEL5 but we don't require them
170 %if %{dkim_deps}
171 Requires: perl(Mail::DKIM)
172 BuildRequires: perl(Mail::DKIM)
173 %endif
174
175 %if %{use_systemd}
176 Requires(post): systemd-units
177 Requires(post): systemd-sysv
178 Requires(preun): systemd-units
179 Requires(postun): systemd-units
180 %endif
181
182 # For completeness, explicitly require perl modules already
183 # pulled in by perl-interpreter
184 Requires: perl(Digest::SHA)
185 Requires: perl(Socket)
186 Requires: perl(Data::Dumper)
187 Requires: perl(Digest::MD5)
188 Requires: perl(Errno)
189 Requires: perl(Exporter)
190 Requires: perl(List::Util)
191
192 %description
193 SpamAssassin provides you with a way to reduce if not completely eliminate
194 Unsolicited Commercial Email (SPAM) from your incoming email. It can
195 be invoked by a MDA such as sendmail or postfix, or can be called from
196 a procmail script, .forward file, etc. It uses a genetic-algorithm
197 evolved scoring system to identify messages which look spammy, then
198 adds headers to the message so they can be filtered by the user's mail
199 reading software. This distribution includes the spamd/spamc components
200 which create a server that considerably speeds processing of mail.
201
202 To enable spamassassin, if you are receiving mail locally, simply add
203 this line to your ~/.procmailrc:
204 INCLUDERC=/etc/mail/spamassassin/spamassassin-default.rc
205
206 To filter spam for all users, add that line to /etc/procmailrc
207 (creating if necessary).
208
209 %prep
210 %setup -q -n Mail-SpamAssassin-%{version}
211 # Patches 0-99 are RH specific
212 %patch0 -p1
213 %patch1 -p1
214 # Patches 100+ are SVN backports (DO NOT REUSE!)
215 # end of patches
216
217 echo "RHEL=%{?rhel} FEDORA=%{?fedora}"
218
219 %build
220 export CFLAGS="$RPM_OPT_FLAGS"
221 export LDFLAGS="%{build_ldflags}"
222 %{__perl} Makefile.PL DESTDIR=$RPM_BUILD_ROOT/ SYSCONFDIR=%{_sysconfdir} INSTALLDIRS=vendor ENABLE_SSL="yes" < /dev/null
223 %make_build OPTIMIZE="$RPM_OPT_FLAGS"
224
225 %install
226 rm -rf $RPM_BUILD_ROOT
227 %make_install PREFIX=%buildroot/%{prefix} \
228 INSTALLMAN1DIR=%buildroot/%{_mandir}/man1 \
229 INSTALLMAN3DIR=%buildroot/%{_mandir}/man3 \
230 LOCAL_RULES_DIR=%{buildroot}/etc/mail/spamassassin
231 chmod 755 %buildroot/%{_bindir}/* # allow stripping
232
233 %if %{use_systemd} == 0
234 install -d %buildroot/%{_initrddir}
235 install -m 0755 spamd/redhat-rc-script.sh %buildroot/%{_initrddir}/spamassassin
236 %endif
237
238 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/mail/spamassassin
239 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
240 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
241 install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/mail/spamassassin/local.cf
242 %if %{use_systemd}
243 install -m644 %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/spamassassin
244 %else
245 install -m644 %{SOURCE15} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/spamassassin
246 %endif
247
248 install -m 0644 %{SOURCE3} %buildroot/etc/mail/spamassassin
249 install -m 0644 %{SOURCE4} %buildroot/etc/mail/spamassassin
250 # installed mode 755 as it's executed by users.
251 install -m 0755 %{SOURCE10} %buildroot/etc/mail/spamassassin
252 install -m 0644 %{SOURCE6} %buildroot/etc/logrotate.d/sa-update
253
254
255 %if %{use_systemd} == 0
256 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/cron.d
257 install -m 0644 %{SOURCE7} %buildroot/etc/cron.d/sa-update
258 %endif
259 install -m 0644 %{SOURCE9} %buildroot%{_sysconfdir}/sysconfig/sa-update
260 # installed mode 744 as non root users can't run it, but can read it.
261 install -m 0744 %{SOURCE8} %buildroot%{_datadir}/spamassassin/sa-update.cron
262 %if %{use_systemd}
263 mkdir -p %buildroot%{_unitdir}
264 install -m 0644 %{SOURCE14} %buildroot%{_unitdir}/spamassassin.service
265 install -m 0644 %{SOURCE16} %buildroot%{_unitdir}/sa-update.service
266 install -m 0644 %{SOURCE17} %buildroot%{_unitdir}/sa-update.timer
267 %endif
268
269 [ -x /usr/lib/rpm/brp-compress ] && /usr/lib/rpm/brp-compress
270
271 find $RPM_BUILD_ROOT \( -name perllocal.pod -o -name .packlist \) -exec rm -v {} \;
272 find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
273
274 # Default rules from separate tarball
275 cd $RPM_BUILD_ROOT%{_datadir}/spamassassin/
276 tar xfvz %{SOURCE1}
277 sed -i -e 's|\@\@VERSION\@\@|%{saversion}|' *.cf
278 cd -
279
280 find $RPM_BUILD_ROOT/usr -type f -print |
281 sed "s@^$RPM_BUILD_ROOT@@g" |
282 grep -v perllocal.pod |
283 grep -v "\.packlist" > %{name}-%{version}-filelist
284 if [ "$(cat %{name}-%{version}-filelist)X" = "X" ] ; then
285 echo "ERROR: EMPTY FILE LIST"
286 exit -1
287 fi
288 find $RPM_BUILD_ROOT%{perl_vendorlib}/* -type d -print |
289 sed "s@^$RPM_BUILD_ROOT@%dir @g" >> %{name}-%{version}-filelist
290
291 mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/spamassassin
292
293 # sa-update channels and keyring directory
294 mkdir -m 0700 $RPM_BUILD_ROOT%{_sysconfdir}/mail/spamassassin/sa-update-keys/
295 mkdir -m 0755 $RPM_BUILD_ROOT%{_sysconfdir}/mail/spamassassin/channel.d/
296 install -m 0644 %{SOURCE11} $RPM_BUILD_ROOT%{_sysconfdir}/mail/spamassassin/channel.d/
297
298 install -m 0644 %{SOURCE13} $RPM_BUILD_DIR/Mail-SpamAssassin-%{version}/
299 %if %{razor_deps}
300 mkdir -m 0700 -p $RPM_BUILD_ROOT%{_sharedstatedir}/razor/
301 %endif
302
303 %files -f %{name}-%{version}-filelist
304 %doc LICENSE NOTICE CREDITS Changes README TRADEMARK UPGRADE
305 %doc USAGE sample-nonspam.txt sample-spam.txt
306 %doc README.RHEL.Fedora
307 %if %{use_systemd} == 0
308 %{_initrddir}/spamassassin
309 %{_sysconfdir}/cron.d/sa-update
310 %endif
311 %dir %{_sysconfdir}/mail
312 %config(noreplace) %{_sysconfdir}/mail/spamassassin
313 %config(noreplace) %{_sysconfdir}/sysconfig/spamassassin
314 %config(noreplace) %{_sysconfdir}/sysconfig/sa-update
315 %dir %{_datadir}/spamassassin
316 %dir %{_localstatedir}/lib/spamassassin
317 %if %{razor_deps}
318 %dir %{_sharedstatedir}/razor
319 %endif
320 %config(noreplace) %{_sysconfdir}/logrotate.d/sa-update
321 %if %{use_systemd}
322 %{_unitdir}/spamassassin.service
323 %{_unitdir}/sa-update.service
324 %{_unitdir}/sa-update.timer
325 %endif
326
327 %post
328 %if %{use_systemd} == 0
329 /sbin/chkconfig --add spamassassin
330 %endif
331
332 %if %{use_systemd}
333 %systemd_post spamassassin.service
334 %systemd_post sa-update.timer
335 %endif
336
337 # -a and --auto-whitelist options were removed from 3.0.0
338 # prevent service startup failure
339 TMPFILE=$(/bin/mktemp /etc/sysconfig/spamassassin.XXXXXX) || exit 1
340 cp /etc/sysconfig/spamassassin $TMPFILE
341 perl -p -i -e 's/(["\s]-\w+)a/$1/ ; s/(["\s]-)a(\w+)/$1$2/ ; s/(["\s])-a\b/$1/' $TMPFILE
342 perl -p -i -e 's/ --auto-whitelist//' $TMPFILE
343 # replace /etc/sysconfig/spamassassin only if it actually changed
344 cmp /etc/sysconfig/spamassassin $TMPFILE || cp $TMPFILE /etc/sysconfig/spamassassin
345 rm $TMPFILE
346
347 if [ -f /etc/spamassassin.cf ]; then
348 %{__mv} /etc/spamassassin.cf /etc/mail/spamassassin/migrated.cf
349 fi
350 if [ -f /etc/mail/spamassassin.cf ]; then
351 %{__mv} /etc/mail/spamassassin.cf /etc/mail/spamassassin/migrated.cf
352 fi
353
354 %postun
355 %if %{use_systemd} == 0
356 if [ "$1" -ge "1" ]; then
357 /sbin/service spamassassin condrestart > /dev/null 2>&1
358 fi
359 exit 0
360 %endif
361
362 %if %{use_systemd}
363 %systemd_postun spamassassin.service
364 %systemd_postun sa-update.timer
365 %endif
366
367 %preun
368 %if %{razor_deps}
369 rm -f %{_sharedstatedir}/razor/*
370 %endif
371 %if %{use_systemd} == 0
372 if [ $1 = 0 ] ; then
373 /sbin/service spamassassin stop >/dev/null 2>&1
374 /sbin/chkconfig --del spamassassin
375 fi
376 exit 0
377 %endif
378
379 %if %{use_systemd}
380 %systemd_preun spamassassin.service
381 %systemd_preun sa-update.timer
382 %endif
383
384 %if %{use_systemd}
385 %triggerun -- spamassassin < 3.3.2-2
386 %{_bindir}/systemd-sysv-convert --save spamassassin >/dev/null 2>&1 ||:
387
388 # Run these because the SysV package being removed won't do them
389 /sbin/chkconfig --del spamassassin >/dev/null 2>&1 || :
390 /bin/systemctl try-restart spamassassin.service >/dev/null 2>&1 || :
391 %endif
392
393 %changelog
394 * Fri Nov 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.4.4-8.sme
395 - import in SME Server 10 [SME: 11206]
396 I just added BuildRequires for perl(ExtUtils::MakeMaker)
397 all credit to John Crisp sweat on this one !
398
399 * Thu Nov 26 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 3.4.4-7.sme
400 - First import to SME v10
401
402 * Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.4-6
403 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
404
405 * Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 3.4.4-5
406 - Use make macros
407 - https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
408
409 * Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.4-4
410 - Perl 5.32 rebuild
411
412 * Wed Apr 22 2020 Kevin Fenzi <kevin@scrye.com> - 3.4.4-3
413 - Switch update timer to not need spamassassin service. Fixes bug #1645826
414
415 * Wed Mar 18 2020 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.4-2
416 - Remove references to the SOUGHT channel
417
418 * Mon Feb 03 2020 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.4-1
419 - Update to 3.4.4
420 - Resolves: rhbz#1796196
421
422 * Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.3-3
423 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
424
425 * Sat Jan 04 2020 Kevin Fenzi <kevin@scrye.com> - 3.4.3-2
426 - Fix mistaken version in rules. Fixes bug #1787739
427
428 * Thu Dec 12 2019 Kevin Fenzi <kevin@scrye.com> - 3.4.3-1
429 - Update to 3.4.3. Fixes bug #1782611
430
431 * Tue Oct 01 2019 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.2-8
432 - Fix issues found by Coverity Scan
433
434 * Tue Oct 01 2019 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.2-7
435 - Fix rawbody rules documentation
436
437 * Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.2-6
438 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
439
440 * Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.2-5
441 - Perl 5.30 rebuild
442
443 * Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.2-4
444 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
445
446 * Mon Oct 15 2018 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.2-3
447 - Add missing dependencies of sa-compile
448
449 * Thu Sep 20 2018 Kevin Fenzi <kevin@scrye.com> - 3.4.2-2
450 - Misc small bug fixes and cleanups.
451
452 * Sun Sep 16 2018 Kevin Fenzi <kevin@scrye.com> - 3.4.2-1
453 - Update to 3.4.2
454 - Fixes: CVE-2017-15705, CVE-2016-1238, CVE-2018-11780 & CVE-2018-11781
455
456 * Mon Jul 23 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 3.4.1-25
457 - perl-Razor-Agent and perl-Net-Patricia not used on RHEL
458
459 * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-24
460 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
461
462 * Tue Jul 10 2018 Tomas Korbar <tkorbar@redhat.com> - 3.4.1-23
463 - Fix daemonize subroutine
464 - See https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7594
465
466 * Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-22
467 - Perl 5.28 rebuild
468
469 * Wed Jun 20 2018 Kevin Fenzi <kevin@scrye.com> - 3.4.1-21
470 - Conditionalize Requires for /sbin/service and /sbin/chkconfig. Fixes bug #1592390
471
472 * Thu Jun 07 2018 Tomas Korbar <tomas.korb@seznam.cz> - 3.4.1-20
473 - Add razor log path and home directory option
474
475 * Tue Apr 10 2018 Rafael Santos <rdossant@redhat.com> - 3.4.1-19
476 - Use standard Fedora linker flags (bug #1548561)
477
478 * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-18
479 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
480
481 * Mon Oct 23 2017 Kevin Fenzi <kevin@scrye.com> - 3.4.1-17
482 - Add upstream patch to stop sa-learn warnings. Fixes bug #1505317
483 - Add upstream patch to stop DNS warnings. Fixes bug #1364932
484
485 * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-16
486 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
487
488 * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-15
489 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
490
491 * Tue Jun 06 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-14
492 - Perl 5.26 rebuild
493
494 * Thu May 18 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-13
495 - Fix building on Perl without '.' in @INC
496
497 * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-12
498 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
499
500 * Mon Oct 31 2016 Kevin Fenzi <kevin@scrye.com> - 3.4.1-11
501 - Add patch for openssl 1.1.x support. https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7361
502
503 * Sat Sep 03 2016 Kevin Fenzi <kevin@scrye.com> - 3.4.1-10
504 - Drop perl-Mail-spamassassin obsolete that was added in 2004
505
506 * Sat Jun 11 2016 Kevin Fenzi <kevin@scrye.com> - 3.4.1-9
507 - Add perl-Razor-Agent and perl-Net-Patricia To Requires, they might help processing. Fixes bug #1337924
508 - Add patch for netdns 1.0.1+ dns lookups.
509
510 * Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-8
511 - Perl 5.24 rebuild
512
513 * Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-7
514 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
515
516 * Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.1-6
517 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
518
519 * Tue Jun 09 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-5
520 - Perl 5.22 rebuild
521
522 * Sun Jun 07 2015 Kevin Fenzi <kevin@scrye.com> 3.4.1-4
523 - Fix sa-update to handle systemctl or service as the case may be.
524
525 * Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-3
526 - Perl 5.22 rebuild
527
528 * Sun May 03 2015 Kevin Fenzi <kevin@scrye.com> 3.4.1-2
529 - Fix base rules version issue. Bug #1217990
530 - Drop run dir we don't use it.
531
532 * Wed Apr 29 2015 Kevin Fenzi <kevin@scrye.com> 3.4.1-1
533 - Update to 3.4.1
534
535 * Fri Apr 03 2015 Kevin Fenzi <kevin@scrye.com> 3.4.0-14
536 - Switch to systemd timer unit from cron for rules updates. Fixes bug #1064537
537
538 * Fri Apr 03 2015 Kevin Fenzi <kevin@scrye.com> 3.4.0-13
539 - Remove last parts of portreserve. Fixes bug #1175798
540 - Fix typo in Razor2 plugin. Fixes bug #1208776
541 - Disabled the AHBL blacklist thats no longer in service in base rules. Fixes bug #1180338
542
543 * Thu Sep 25 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-12
544 - Apply fix for amavisd and spampd reloading after rules updates. Fixes bug #1145654
545
546 * Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.0-11
547 - Perl 5.20 rebuild
548
549 * Tue Aug 26 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-10
550 - CLean up portreserve conditionals. Fixes bug #1128708
551
552 * Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 3.4.0-9
553 - Rebuild for rpm bug 1131960
554
555 * Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-8.el6
556 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
557
558 * Fri Jun 20 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-7
559 - Add patch to work with newer perl-Net-DNS. Fixes bug #1111586
560
561 * Wed Jun 18 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-6
562 - Adjust systemd unit to not log to syslog since spamd does it already.
563 - Fixes bug #1107541
564
565 * Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-5
566 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
567
568 * Fri May 23 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-4
569 - Fix versioning on initial rules.
570 - Add note to README.RHEL.Fedora to note -d option in sysconfig
571
572 * Wed Mar 19 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-3
573 - Cleaned up spec, added conditionals to build on el again.
574
575 * Sun Feb 16 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-2
576 - Simplify systemd unit file. Thanks misc. Fixes bug #1065762
577
578 * Tue Feb 11 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-1
579 - Update to 3.4.0
580
581 * Sun Feb 02 2014 Kevin Fenzi <kevin@scrye.com> 3.3.2-19
582 - Use pgrep -f for full command line. Fixes bug #1057926
583 - Patch to use gnupg2 instead of gnupg1. Fixes bug #1055593
584 - Use pgrep for spampd as well. Fixes bug #1058976
585
586 * Sat Jan 04 2014 Kevin Fenzi <kevin@scrye.com> 3.3.2-18
587 - Add patch to fix warning to syslog with recent perl.·
588 - Fixes bug #1023670
589
590 * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-17
591 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
592
593 * Mon Jul 22 2013 Petr Pisar <ppisar@redhat.com> - 3.3.2-16
594 - Perl 5.18 rebuild
595
596 * Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-15
597 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
598
599 * Thu Nov 15 2012 Kevin Fenzi <kevin@scrye.com> 3.3.2-14
600 - Fix incorrect pgrep path. Fixes bug #875844
601
602 * Sat Aug 25 2012 Kevin Fenzi <kevin@scrye.com> 3.3.2-13
603 - Add systemd macros for presets. Fixes bug #850320
604
605 * Fri Aug 03 2012 Kevin Fenzi <kevin@scrye.com> - 3.3.2-12
606 - Fix sa-update not detecting spamd running. Fixes bug #755644
607 - Add restart=always to systemd file to work around upstream bug. Bug #812359
608
609 * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-11
610 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
611
612 * Wed Jun 13 2012 Petr Pisar <ppisar@redhat.com> - 3.3.2-10
613 - Perl 5.16 rebuild
614
615 * Thu Jan 19 2012 Kevin Fenzi <kevin@scrye.com> - 3.3.2-9
616 - Fix unit file to write pid correctly. Fixes bug #783108
617
618 * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-8
619 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
620
621 * Mon Sep 12 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-7
622 - Use sysvinit on F15, not systemd
623
624 * Thu Sep 08 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-6
625 - Don't install sysvinit script if using systemd
626
627 * Wed Sep 07 2011 Jesse Keating <jkeating@redhat.com> - 3.3.2-5
628 - Add details for RHEL 7
629
630 * Sat Aug 13 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-4
631 - Build with systemd unit file for f16 and f17
632
633 * Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 3.3.2-3
634 - Perl mass rebuild
635
636 * Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 3.3.2-2
637 - Perl mass rebuild
638
639 * Mon Jun 6 2011 Warren Togami <warren@togami.com> - 3.3.2-1
640 - 3.3.2
641
642 * Mon May 30 2011 Warren Togami <warren@togami.com> - 3.3.2-0.8.rc2
643 - 3.3.2-rc2
644
645 * Mon May 16 2011 Warren Togami <warren@togami.com> - 3.3.2-0.7.rc1
646 - 3.3.2-rc1
647
648 * Sun Feb 27 2011 Ville Skyttä <ville.skytta@iki.fi> - 3.3.2-0.6.svn1071394
649 - Own /etc/mail dir (#645035).
650
651 * Wed Feb 16 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-0.5.svn1071394
652 - Oops, I left off svn in the Release of 3.3.2-0.4.svn1071394
653
654 * Wed Feb 16 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-0.4.svn1071394
655 - replace @@VERSION@@ with current saversion
656 - restart spampd after sa-update cronjob runs
657 - update to svn1071394
658
659 * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-0.3.svn1027144
660 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
661
662 * Fri Oct 29 2010 Kevin Fenzi <kevin@tummy.com> - 3.3.2-0.2.svn1027144
663 - Fix sa-update sysconfig script line wrapping
664
665 * Mon Oct 25 2010 Nick Bebout <nb@fedoraproject.org> - 3.3.2-0.1.svn1027144
666 - Update to 3.3.2 - svn1027144 to solve bug
667
668 * Sat Jul 03 2010 Dennis Gilmore <dennis@ausil.us> - 3.3.1-5
669 - rebuild against perl-5.12.0 again
670
671 * Wed Jun 02 2010 Nick Bebout <nb@fedoraproject.org> - 3.3.1-4
672 - Add perl-Mail-SPF dependency
673
674 * Wed Jun 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 3.3.1-3
675 - Mass rebuild with perl-5.12.0
676
677 * Tue Mar 16 2010 Warren Togami <wtogami@redhat.com> - 3.3.1-2
678 - 3.3.1 take 2
679
680 * Mon Mar 15 2010 Warren Togami <wtogami@redhat.com> - 3.3.1-1
681 - 3.3.1 bug fix only release
682
683 * Wed Feb 17 2010 Warren Togami <wtogami@redhat.com> - 3.3.0-6
684 - Minor fix to update script
685
686 * Thu Jan 21 2010 Warren Togami <wtogami@redhat.com> - 3.3.0-2
687 - 3.3.0
688 - README.RHEL.Fedora contains notes specific to our package
689
690 * Thu Jan 14 2010 Warren Togami <wtogami@redhat.com> - 3.3.0-0.32.rc3
691 - 3.3.0-rc3
692 - if mimedefang is enabled, reload rules after sa-update
693
694 * Mon Jan 11 2010 Warren Togami <wtogami@redhat.com> - 3.3.0-0.31.rc2
695 - 3.3.0-rc2
696
697 * Mon Dec 28 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.29.rc1
698 - sa-update channels defined in /etc/mail/spamassassin/channel.d/*.conf files
699
700 * Mon Dec 28 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.27.rc1
701 - sa-update runs in cron automatically if spamd or amavisd is running
702 If you use neither, you may force sa-update by editing /etc/sysconfig/sa-update
703
704 * Mon Dec 21 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.26.rc1
705 - 3.3.0-rc1.proposed2 with fixed spamc
706
707 * Fri Dec 18 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.23.rc1
708 - 3.3.0-rc1
709 - Bug #103401: portreserve protect spamd port 783 on F-10+
710
711 * Thu Dec 03 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.21.beta1
712 - 3.3.0-beta1
713
714 * Fri Nov 20 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.20.svn882672
715 - svn882672 snapshot
716
717 * Thu Nov 12 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.19.svn816416
718 - Encode::Detect is important to spamassassin, require for anything newer than RHEL-5
719
720 * Thu Sep 24 2009 Warren Togami <wtogami@redhat.com> - 3.3.3-0.18.svn816416
721 - Enable SOUGHT ruleset in nightly sa-update http://wiki.apache.org/spamassassin/SoughtRules
722 You must enable the sa-update cron job manually in /etc/cron.d/sa-update
723 - Custom channels may be specified in these config files:
724 /etc/mail/spamassassin/sa-update-channels.txt
725 /etc/mail/spamassassin/sa-update-keys.txt
726
727 * Thu Sep 17 2009 Warren Togami <wtogami@redhat.com> - 3.3.3-0.14.svn816416
728 - 3.3.0 svn816416 snapshot, pre-alpha3
729 Upstream just fixed important bug SA#6206. Many other bugs fixed since alpha2.
730
731 * Thu Sep 17 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.13.alpha2
732 - F11+ requires Mail::DKIM
733
734 * Sun Sep 13 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.12.alpha2
735 - require perl(Mail::DKIM), useful due to USER_IN_DEF_DKIM_WL
736
737 * Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 3.3.0-0.6.alpha2
738 - rebuilt with new openssl
739
740 * Mon Aug 10 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.5.alpha1
741 - 3.3.0-alpha2
742
743 * Tue Jul 07 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.2.alpha1
744 - Include default rules to prevent mass confusion and complaints.
745 You should really use sa-update though. Really.
746 Edit /etc/cron.d/sa-update to automate it.
747
748 * Mon Jul 06 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.1.alpha1
749 - 3.3.0-alpha1
750
751 * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.5-5
752 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
753
754 * Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 3.2.5-4
755 - rebuild with new openssl
756
757 * Mon Dec 15 2008 Kevin Fenzi <kevin@tummy.com> - 3.2.5-3
758 - Update for merge review - bug 226426
759
760 * Thu Sep 4 2008 Tom "spot" Callaway <tcallawa@redhat.com> 3.2.5-2
761 - fix license tag
762
763 * Fri Jun 27 2008 Warren Togami <wtogami@redhat.com> - 3.2.5-1
764 - 3.2.5
765
766 * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.2.4-4
767 - Rebuild for perl 5.10 (again)
768
769 * Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.2.4-3
770 - Autorebuild for GCC 4.3
771
772 * Thu Jan 31 2008 Tom "spot" Callaway <tcallawa@redhat.com> 3.2.4-2
773 - rebuild for new perl
774
775 * Tue Jan 01 2008 Warren Togami <wtogami@redhat.com> 3.2.4-1
776 - 3.2.4 major bugfix release
777
778 * Tue Aug 21 2007 Warren Togami <wtogami@redhat.com> 3.2.3-2
779 - rebuild
780
781 * Mon Aug 13 2007 Warren Togami <wtogami@redhat.com> 3.2.3-1
782 - 3.2.3 major bugfix release
783
784 * Thu Aug 2 2007 Warren Togami <wtogami@redhat.com> 3.2.2-2
785 - Fix SA#5574 which cripples dcc/pyzor users
786
787 * Wed Jul 25 2007 Warren Togami <wtogami@redhat.com> 3.2.2-1
788 - 3.2.2 minor bugfix release
789
790 * Mon Jun 11 2007 Warren Togami <wtogami@redhat.com> 3.2.1-1
791 - 3.2.1 CVE-2007-2873
792
793 * Wed May 02 2007 Warren Togami <wtogami@redhat.com> 3.2.0-1
794 - 3.2.0
795
796 * Fri Apr 13 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.5.rc3
797 - 3.2.0 rc3
798
799 * Fri Apr 13 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.4.rc2
800 - 3.2.0 rc2
801
802 * Mon Apr 02 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.3.rc1
803 - 3.2.0 rc1
804
805 * Tue Mar 06 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.2.pre2
806 - Conditional to require perl-devel during build for FC7+ (#226276)
807
808 * Fri Mar 02 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.1.pre2
809 - 3.2.0-pre2
810
811 * Mon Feb 19 2007 Warren Togami <wtogami@redhat.com> 3.1.8-2
812 - Fix sa-learn regression (#228968)
813
814 * Tue Feb 13 2007 Warren Togami <wtogami@redhat.com> 3.1.8-1
815 - 3.1.8 CVE-2007-0451
816
817 * Tue Feb 13 2007 Warren Togami <wtogami@redhat.com> 3.1.7-9
818 - silence sa-update cron script
819
820 * Wed Feb 07 2007 Warren Togami <wtogami@redhat.com> 3.1.7-8
821 - only restart spamd if necessary after sa-update (#227756)
822
823 * Wed Feb 07 2007 Warren Togami <wtogami@redhat.com> 3.1.7-7
824 - requires gnupg (#227738)
825
826 * Sun Jan 28 2007 Warren Togami <wtogami@redhat.com> 3.1.7-6
827 - explicit requires on perl(HTTP::Date) and perl(LWP::UserAgent)
828 (Bug #193100)
829
830 * Mon Jan 22 2007 Warren Togami <wtogami@redhat.com> 3.1.7-5
831 - fix typo in logrotate.d (#223817)
832
833 * Thu Jan 18 2007 Warren Togami <wtogami@redhat.com>
834 - Options for RHEL4
835 * spamc/spamd cannot connect over IPv6 or SSL
836 * sa-update is disabled
837 The above functionality requires perl modules not included in RHEL4.
838 You may still use them if you get those perl modules from elsewhere.
839 RHEL5 ships these perl modules.
840
841 * Thu Dec 14 2006 Warren Togami <wtogami@redhat.com> - 3.1.7-4
842 - add standardized sa-update cron script, disabled by default
843
844 * Thu Dec 14 2006 Warren Togami <wtogami@redhat.com> - 3.1.7-2
845 - own directory /var/lib/spamassassin
846
847 * Mon Nov 20 2006 Warren Togami <wtogami@redhat.com> - 3.1.7-1
848 - 3.1.7 maintenance release
849
850 * Wed Aug 02 2006 Warren Togami <wtogami@redhat.com> - 3.1.4-1
851 - 3.1.4 maintenance release
852
853 * Mon Jul 17 2006 Warren Togami <wtogami@redhat.com> - 3.1.3-5
854 - req perl-IO-Socket-SSL for spamc/spamd SSL communication
855 - req perl-IO-Socket-INET6 for IPv6
856
857 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.1.3-3.1
858 - rebuild
859
860 * Tue Jun 27 2006 Florian La Roche <laroche@redhat.com> - 3.1.3-3
861 - require diffutils for the post script (cmp is used)
862
863 * Wed Jun 07 2006 Warren Togami <wtogami@redhat.com> - 3.1.3-2
864 - start spamd before sendmail (#193818)
865 - require perl-Archive-Tar (#193100)
866
867 * Mon Jun 05 2006 Warren Togami <wtogami@redhat.com> - 3.1.3-1
868 - CVE-2006-2447
869
870 * Fri May 26 2006 Warren Togami <wtogami@redhat.com> - 3.1.2-1
871 - 3.1.2 bug fix release
872
873 * Tue May 09 2006 Warren Togami <wtogami@redhat.com> - 3.0.5-4
874 - Preserve timestamp and context of /etc/sysconfig/spamassassin (#178580)
875
876 * Sat Mar 11 2006 Warren Togami <wtogami@redhat.com> - 3.1.1-1
877 - 3.1.1
878
879 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.1.0-5
880 - bump again for double-long bug on ppc(64)
881
882 * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.1.0-5
883 - rebuilt for new gcc4.1 snapshot and glibc changes
884
885 * Wed Jan 18 2006 Warren Togami <wtogami@redhat.com> - 3.1.0-5
886 - include SPAM_PID dir (#177788)
887
888 * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
889 - rebuilt
890
891 * Thu Dec 01 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-3
892 - #174579 nls spamd init script (Rudolf Kastl)
893
894 * Tue Nov 08 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-2
895 - #161785 ensure that service restart works
896
897 * Tue Sep 13 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-1
898 - 3.1.0
899
900 * Sun Aug 28 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-0.rc2
901 - 3.1.0-rc2
902
903 * Tue Aug 16 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-0.rc1
904 - 3.1.0-rc1
905
906 * Fri Jul 15 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-0.pre4
907 - 3.1.0-pre4
908
909 * Sun Jun 05 2005 Warren Togami <wtogami@redhat.com> - 3.0.4-1
910 - 3.0.4
911
912 * Tue May 17 2005 Warren Togami <wtogami@redhat.com> - 3.0.3-4
913 - allow user-level disabling of subject rewriting pref (#147464)
914
915 * Wed Apr 27 2005 Warren Togami <wtogami@redhat.com> - 3.0.3-3
916 - 3.0.3
917 - SA#4287 retval fix
918 - allow replacement of rc service script during upgrades
919
920 * Mon Apr 25 2005 Warren Togami <wtogami@redhat.com> - 3.0.3-0.r164513
921 - 3.0.3-r164513 (almost final)
922
923 * Thu Apr 21 2005 Warren Togami <wtogami@redhat.com> - 3.0.2-9
924 - SA#4191 uri_to_domain() is broken for urls with empty port
925 SA#4232 multipart message with 0 parts -> uninitialized in m//
926 SA#4121 Score for user defined rules become ignored
927 SA#3944 get_envelope_from not handling received header
928
929 * Sun Apr 10 2005 Ville Skyttä <ville.skytta@iki.fi> - 3.0.2-8
930 - Own /usr/share/spamassassin (#152534).
931 - Drop no longer needed dependency filter script.
932
933 * Sat Apr 02 2005 Warren Togami <wtogami@redhat.com> 3.0.2-7
934 - req DB_File (#143186)
935
936 * Sat Apr 02 2005 Warren Togami <wtogami@redhat.com> 3.0.2-6
937 - test svn 3.0 stable r122144 snapshot
938 SA#3826 #4044 #4050 #4048 #4075 #4064 #4075 #4034 #3952
939
940 * Thu Mar 24 2005 Florian La Roche <laroche@redhat.com>
941 - add "exit 0" to postun script
942
943 * Thu Mar 24 2005 Joe Orton <jorton@redhat.com> 3.0.2-4
944 - package the NOTICE file
945
946 * Thu Mar 17 2005 Warren Togami <wtogami@redhat.com> - 3.0.2-3
947 - reinclude ia64, thanks jvdias
948
949 * Tue Mar 15 2005 Warren Togami <wtogami@redhat.com> - 3.0.2-2
950 - exclude ia64 for now due to Bug #151127
951
952 * Mon Dec 20 2004 Warren Togami <wtogami@redhat.com> - 3.0.2-1
953 - 3.0.2
954
955 * Sun Oct 31 2004 Warren Togami <wtogami@redhat.com> - 3.0.1-1
956 - 3.0.1
957
958 * Mon Oct 18 2004 Warren Togami <wtogami@redhat.com> - 3.0.0-3
959 - Fix local.cf rewrite subject option (#133355 Christof Damian)
960
961 * Sat Sep 25 2004 Warren Togami <wtogami@redhat.com> - 3.0.0-2
962 - Update URL, cleanup name (Robert Scheck #133622)
963
964 * Thu Sep 23 2004 Warren Togami <wtogami@redhat.com> - 3.0.0-1
965 - match upstream version
966 - #133422 Future proof krb5 back compat (Milan Kerslager)
967
968 * Wed Sep 22 2004 Warren Togami <wtogami@redhat.com> - 3.0-10
969 - 3.0.0 final
970
971 * Sun Sep 12 2004 Warren Togami <wtogami@redhat.com> - 3.0-9.rc4
972 - 3.0 rc4
973 - update krb5 backcompat patch (John Lundin)
974
975 * Sat Sep 04 2004 Warren Togami <wtogami@redhat.com> - 3.0-8.rc3
976 - 3.0 rc3
977
978 * Sun Aug 29 2004 Warren Togami <wtogami@redhat.com> - 3.0-7.rc2
979 - 3.0 rc2
980
981 * Sat Aug 21 2004 Warren Togami <wtogami@redhat.com> - 3.0-6.rc1
982 - fix perl module syntax in req and buildreqs
983
984 * Thu Aug 19 2004 Warren Togami <wtogami@redhat.com> - 3.0-5.rc1
985 - 3.0 rc1
986
987 * Sat Aug 07 2004 Warren Togami <wtogami@redhat.com> - 3.0-3.pre4
988 - 3.0 pre4
989
990 * Wed Jul 28 2004 Warren Togami <wtogami@redhat.com> - 3.0-3.pre2
991 - 3.0 pre2
992
993 * Sun Jun 20 2004 Warren Togami <wtogami@redhat.com> - 3.0-2.pre1
994 - 3.0.0 pre1
995 - remove unnecessary patches applied upstream
996 - update krb5 backcompat patch
997
998 * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
999 - rebuilt
1000
1001 * Mon May 31 2004 Warren Togami <wtogami@redhat.com> - 3.0-svn20040530
1002 - svn snapshot 20040530
1003 - #124870 prevent service startup failure due to old -a option
1004 - #124871 more docs
1005 - #124872 unowned directories
1006
1007 * Mon May 24 2004 Warren Togami <wtogami@redhat.com> - 3.0-svn20040524
1008 - #123432 do not start service by default
1009 - #122488 remove CRLF's
1010 - #123706 correct license
1011 - svn snapshot 20040524
1012 - svn snapshot 20040518
1013
1014 * Sun May 2 2004 Ville Skyttä <ville.skytta@iki.fi> - 2.63-8
1015 - #122233
1016 - Require perl(:MODULE_COMPAT_*).
1017 - Use %%{_mandir} and %%{_initrddir}.
1018 - Fix License tag and include License in docs.
1019 - Backslashify multiline init script description.
1020
1021 * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1022 - rebuilt
1023
1024 * Wed Feb 11 2004 Warren Togami <wtogami@redhat.com> 2.63-6
1025 - require sitelib instead
1026
1027 * Wed Jan 21 2004 Warren Togami <wtogami@redhat.com> 2.63-3
1028 - krb5-backcompat.patch so older krb5-devel does not fail
1029
1030 * Wed Jan 21 2004 Warren Togami <wtogami@redhat.com> 2.63-2
1031 - upgrade to 2.63
1032
1033 * Mon Jan 19 2004 Warren Togami <wtogami@redhat.com> 2.62-3
1034 - Ville Skyttä's fixes from #113596 including:
1035 - Fix buildroot traces
1036 - enable openssl
1037 - Trailing slash to DESTDIR (bug 90202 comment 14).
1038 - export optflags so they're honored, affects spamc only.
1039
1040 * Mon Jan 19 2004 Warren Togami <wtogami@redhat.com> 2.62-2
1041 - upgrade to 2.62
1042 - Prereq -> Requires, former is deprecated
1043 - Require current version of perl
1044 - Remove urban myth clean test
1045 - TODO: Get rid of prefix
1046
1047 * Wed Dec 31 2003 Dan Walsh <dwalsh@redhat.com> 2.61-2
1048 - Change sysconfdir to not use full path
1049
1050 * Tue Dec 9 2003 Chip Turner <cturner@redhat.com> 2.61-1
1051 - upgrade to 2.61
1052
1053 * Fri Sep 26 2003 Chip Turner <cturner@redhat.com> 2.60-2
1054 - update to 2.60
1055
1056 * Sat Jul 5 2003 Chip Turner <cturner@redhat.com> 2.55-3
1057 - change perl dependency to more accurate versions with explicit epochs
1058
1059 * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
1060 - rebuilt
1061
1062 * Sat May 31 2003 Chip Turner <cturner@redhat.com> 2.55-1
1063 - move to upstream version 2.55
1064
1065 * Tue May 13 2003 Chip Turner <cturner@redhat.com>
1066 - bump for build
1067 - change init.d script to not default to started
1068
1069 * Sun May 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1070 - remove Distribution: tag in spec file
1071
1072 * Wed Apr 16 2003 Chip Turner <cturner@redhat.com> 2.53-5
1073 - remove SIGCHILD patch to properly return it to SIG_IGN now that
1074 waitpid isn't used on Linux
1075
1076 * Mon Apr 14 2003 Chip Turner <cturner@redhat.com> 2.53-4.8.x
1077 - update to 2.53 from upstream
1078
1079 * Fri Mar 21 2003 Chip Turner <cturner@redhat.com> 2.50-3.8.x
1080 - update patch for servicename; should fix restarting/runlevel issues (#85975)
1081
1082 * Thu Mar 13 2003 Chip Turner <cturner@redhat.com> 2.50-2.8.x
1083 - update to 2.50
1084
1085 * Tue Feb 25 2003 Elliot Lee <sopwith@redhat.com>
1086 - rebuilt
1087
1088 * Fri Feb 21 2003 Chip Turner <cturner@redhat.com>
1089 - revert double fix for 84774
1090
1091 * Mon Feb 17 2003 Bill Nottingham <notting@redhat.com>
1092 - fix startup (#84445)
1093
1094 * Thu Feb 13 2003 Bill Nottingham <notting@redhat.com>
1095 - fix paths in initscript (#84216)
1096
1097 * Thu Feb 13 2003 Chip Turner <cturner@redhat.com>
1098 - removing -P option since it is the default now, bug 84144
1099
1100 * Wed Feb 12 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1101 - fix SIGCHLD handling
1102
1103 * Mon Feb 10 2003 Bill Nottingham <notting@redhat.com>
1104 - move condrestart to %%postun
1105
1106 * Sun Feb 2 2003 Chip Turner <cturner@redhat.com>
1107 - update to 2.44
1108 - add condrestart to service script
1109
1110 * Thu Jan 30 2003 Chip Turner <cturner@redhat.com>
1111 - release bump and rebuild
1112
1113 * Wed Jan 29 2003 Chip Turner <cturner@redhat.com>
1114 - add upstream bsmtp off-by-one patch
1115
1116 * Mon Jan 20 2003 Chip Turner <cturner@redhat.com>
1117 - add wrapper for 'spamassassin -e' for native evolution spam filtering
1118
1119 * Sat Jan 4 2003 Jeff Johnson <jbj@redhat.com> 2.43-10
1120 - use internal dep generator.
1121
1122 * Wed Jan 1 2003 Chip Turner <cturner@redhat.com>
1123 - rebuild
1124
1125 * Tue Dec 17 2002 Bill Nottingham <notting@redhat.com> 2.43-7
1126 - don't run by default
1127
1128 * Sat Dec 14 2002 Tim Powers <timp@redhat.com> 2.43-6
1129 - don't use rpms internal dep generator
1130 - buildrequire perl-Time-HiRes instead of perl(Time:HiRes) so we can satisfy build deps in the build system
1131
1132 * Fri Nov 22 2002 Tim Powers <timp@redhat.com>
1133 - rebuilt to solve broken perl deps
1134
1135 * Thu Aug 15 2002 Chip Turner <cturner@redhat.com>
1136 - speedup patch from upstream
1137
1138 * Tue Aug 6 2002 Chip Turner <cturner@redhat.com>
1139 - automated release bump and build
1140
1141 * Thu Jul 18 2002 Chip Turner <cturner@redhat.com>
1142 - better control of service level, improvement in %%post script.
1143 - (contribs from schirmer@taytron.net)
1144
1145 * Fri Jun 28 2002 Chip Turner <cturner@redhat.com>
1146 - added proper BuildRequire
1147
1148 * Wed Jun 26 2002 Chip Turner <cturner@redhat.com>
1149 - updated to 2.31, added .rc file for procmail to INCLUDERC to enable
1150
1151 * Fri Apr 19 2002 Theo Van Dinter <felicity@kluge.net>
1152 - Updated for 2.20 release
1153 - made /etc/mail/spamassassin a config directory so local.cf doesn't get wiped out
1154 - added a patch to remove findbin stuff
1155
1156 * Wed Feb 27 2002 Craig Hughes <craig@hughes-family.org>
1157 - Updated for 2.1 release
1158
1159 * Sat Feb 02 2002 Theo Van Dinter <felicity@kluge.net>
1160 - Updates for 2.01 release
1161 - Fixed rc file
1162 - RPM now buildable as non-root
1163 - fixed post_service errors
1164 - fixed provides to include perl modules
1165 - use file find instead of manually specifying files
1166
1167 * Tue Jan 15 2002 Craig Hughes <craig@hughes-family.org>
1168 - Updated for 2.0 release
1169
1170 * Wed Dec 05 2001 Craig Hughes <craig@hughes-family.org>
1171 - Updated for final 1.5 distribution.
1172
1173 * Sun Nov 18 2001 Craig Hughes <craig@hughes-family.org>
1174 - first version of rpm.
1175

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed