- Include default rules to prevent mass confusion and complaints. You
should really use sa-update though. Really. Edit /etc/cron.d/sa-update to automate it.
This commit is contained in:
parent
0b9818bb60
commit
0824f36d3c
@ -1 +1,2 @@
|
|||||||
Mail-SpamAssassin-3.3.0-alpha1.tar.bz2
|
Mail-SpamAssassin-3.3.0-alpha1.tar.bz2
|
||||||
|
spamassassin-rules-791756.tar.bz2
|
||||||
|
1
sources
1
sources
@ -1 +1,2 @@
|
|||||||
04141392e1f20ea4a91bb63937351c65 Mail-SpamAssassin-3.3.0-alpha1.tar.bz2
|
04141392e1f20ea4a91bb63937351c65 Mail-SpamAssassin-3.3.0-alpha1.tar.bz2
|
||||||
|
26eaca54924365ed7db538fdbeef7b11 spamassassin-rules-791756.tar.bz2
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# OVERRIDE RHEL VERSION HERE, RHEL BUILDSYSTEM DOESN'T HAVE DIST TAG
|
# OVERRIDE RHEL VERSION HERE, RHEL BUILDSYSTEM DOESN'T HAVE DIST TAG
|
||||||
#%%define rhel 4
|
#%%define rhel 5
|
||||||
|
|
||||||
# Define Variables that must exist
|
# Define Variables that must exist
|
||||||
%{?!rhel:%define rhel 0}
|
%{?!rhel:%define rhel 0}
|
||||||
@ -42,11 +42,13 @@ Summary: Spam filter for email which can be invoked from mail delivery agents
|
|||||||
Name: spamassassin
|
Name: spamassassin
|
||||||
Version: 3.3.0
|
Version: 3.3.0
|
||||||
%define prename alpha1
|
%define prename alpha1
|
||||||
Release: 0.1.alpha1%{?dist}
|
Release: 0.2.alpha1%{?dist}
|
||||||
|
%define rules_ver 791756
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
URL: http://spamassassin.apache.org/
|
URL: http://spamassassin.apache.org/
|
||||||
Source0: http://www.apache.org/dist/%{name}/%{real_name}-%{version}-%{prename}.tar.bz2
|
Source0: http://www.apache.org/dist/%{name}/%{real_name}-%{version}-%{prename}.tar.bz2
|
||||||
|
Source1: spamassassin-rules-%{rules_ver}.tar.bz2
|
||||||
Source2: redhat_local.cf
|
Source2: redhat_local.cf
|
||||||
Source3: spamassassin-default.rc
|
Source3: spamassassin-default.rc
|
||||||
Source4: spamassassin-spamc.rc
|
Source4: spamassassin-spamc.rc
|
||||||
@ -119,6 +121,8 @@ To filter spam for all users, add that line to /etc/procmailrc
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n Mail-SpamAssassin-%{version}
|
%setup -q -n Mail-SpamAssassin-%{version}
|
||||||
|
# Default rules from separate tarball
|
||||||
|
tar xfvj %{SOURCE1}
|
||||||
# Patches 0-99 are RH specific
|
# Patches 0-99 are RH specific
|
||||||
# none yet
|
# none yet
|
||||||
# Patches 100+ are SVN backports (DO NOT REUSE!)
|
# Patches 100+ are SVN backports (DO NOT REUSE!)
|
||||||
@ -162,6 +166,10 @@ install -m 0744 %{SOURCE8} %buildroot%{_datadir}/spamassassin/sa-update.cron
|
|||||||
find $RPM_BUILD_ROOT \( -name perllocal.pod -o -name .packlist \) -exec rm -v {} \;
|
find $RPM_BUILD_ROOT \( -name perllocal.pod -o -name .packlist \) -exec rm -v {} \;
|
||||||
find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
|
find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
|
||||||
|
|
||||||
|
# Default rules from separate tarball
|
||||||
|
mv updates_spamassassin_org/* $RPM_BUILD_ROOT%{_datadir}/spamassassin/
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_datadir}/spamassassin/MIRRORED.BY
|
||||||
|
|
||||||
find $RPM_BUILD_ROOT/usr -type f -print |
|
find $RPM_BUILD_ROOT/usr -type f -print |
|
||||||
sed "s@^$RPM_BUILD_ROOT@@g" |
|
sed "s@^$RPM_BUILD_ROOT@@g" |
|
||||||
grep -v perllocal.pod |
|
grep -v perllocal.pod |
|
||||||
@ -226,13 +234,13 @@ fi
|
|||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jul 07 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.2.alpha1
|
||||||
|
- Include default rules to prevent mass confusion and complaints.
|
||||||
|
You should really use sa-update though. Really.
|
||||||
|
Edit /etc/cron.d/sa-update to automate it.
|
||||||
|
|
||||||
* Mon Jul 06 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.1.alpha1
|
* Mon Jul 06 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.1.alpha1
|
||||||
- 3.3.0-alpha1
|
- 3.3.0-alpha1
|
||||||
- WARNING: spamassassin-3.3.0+ no longer ships with rules.
|
|
||||||
You must run sa-update to download rules before you use spamassassin.
|
|
||||||
Failure to download rules means spamassassin always returns unfiltered.
|
|
||||||
Should we ship a set of rules with spamassassin? Please discuss on
|
|
||||||
fedora-devel-list.
|
|
||||||
|
|
||||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.5-5
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.5-5
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
Loading…
Reference in New Issue
Block a user