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