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

Diff of /rpms/spamassassin/sme10/spamassassin.spec

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

Revision 1.1 by vip-ire, Fri Feb 5 16:20:39 2016 UTC Revision 1.6 by jcrisp, Tue Dec 7 17:07:33 2021 UTC
# Line 1  Line 1 
1  %define pkgname Mail-SpamAssassin  # 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  Name: spamassassin
61  Version: 3.4.1  Version: 3.4.6
62    #Release: 0.8.%%{prerev}%%{?dist}
63  Release: 1%{?dist}  Release: 1%{?dist}
64  Summary: Spam filter for email which can be invoked from mail delivery agents  License: ASL 2.0
65  License: Apache  URL: https://spamassassin.apache.org/
66  Group: Applications/Internet  Source0: https://www.apache.org/dist/%{name}/source/%{real_name}-%{version}.tar.bz2
67  URL: http://spamassassin.apache.org/  #Source0: %%{real_name}-%%{version}-%%{prerev}.tar.bz2
68  Source0: http://www.apache.org/dist/spamassassin/source/Mail-SpamAssassin-%{version}.tar.bz2  Source1: https://www.apache.org/dist/%{name}/source/%{real_name}-rules-%{version}.r1888502.tgz
69  Source1: http://www.apache.org/dist/spamassassin/source/Mail-SpamAssassin-rules-%{version}.r1675274.tgz  #Source1: %%{real_name}-rules-%%{version}.%%{prerev}.tgz
70  Source2: redhat_local3.cf  Source2: redhat_local.cf
71  Source3: spamassassin-default.rc  Source3: spamassassin-default.rc
72  Source4: spamassassin-spamc.rc  Source4: spamassassin-spamc.rc
73  Source5: spamassassin.sysconfig  Source5: spamassassin.sysconfig
74  Source6: sa-update.logrotate  Source6: sa-update.logrotate
75  Source88: sa-update.cron.in  Source7: sa-update.crontab
76  Source89: gpgkeys  Source8: sa-update.cronscript
77  Source90: channels  Source9: sa-update.force-sysconfig
78  Source10: spamassassin-helper.sh  Source10: spamassassin-helper.sh
79  Source20: http://www.timj.co.uk/linux/bogus-virus-warnings.cf  Source11: spamassassin-official.conf
80  #Source30: http://saupdates.openprotect.com/pub.gpg  Source13: README.RHEL.Fedora
81  Source40: http://spamassassin.apache.org/updates/GPG.KEY  %if %{use_systemd}
82  Source50: http://www.apache.org/dist/spamassassin/KEYS  Source14: spamassassin.service
83  #Source60: http://yerp.org/rules/GPG.KEY  %endif
84  Source60: GPG-sought.KEY  Source15: spamassassin.sysconfig.el
85  Patch0: Mail-SpamAssassin-3.0.0-krb5.patch  Source16: sa-update.service
86  Buildroot: %{_tmppath}/%{name}-root  Source17: sa-update.timer
87  Requires(pre): /sbin/chkconfig /sbin/service  
88    # Patches 0-99 are RH specific
89  BuildRequires: openssl-devel, krb5-devel  # https://bugzilla.redhat.com/show_bug.cgi?id=1055593
90  BuildRequires: autoconf  # Switch to using gnupg2 instead of gnupg1
91  BuildRequires: perl >= 2:5.8.1  Patch0: spamassassin-3.3.2-gnupg2.patch
92  #  Patch1: spamassassin-3.4.1-add-logfile-homedir-options.patch
93  BuildRequires: perl(Digest::SHA)  # Patches 100+ are SVN backports (DO NOT REUSE!)
94  BuildRequires: perl(File::Spec) >= 0.8  # end of patches
95  BuildRequires: perl(File::Copy) >= 2.02  Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
96  BuildRequires: perl(Pod::Usage) >= 1.10  %if %{use_systemd} == 0
97  BuildRequires: perl(HTML::Parser) >= 3.43  Requires: /sbin/chkconfig /sbin/service
98  BuildRequires: perl(Archive::Tar) >= 1.23  %endif
99  BuildRequires: perl(Mail::DKIM) >= 0.37  Requires(post): diffutils
100  BuildRequires: perl(Net::DNS) >= 0.58  
101  BuildRequires: perl(NetAddr::IP) >= 4.010  BuildRequires: gcc
102  BuildRequires: perl(Sys::Hostname)  BuildRequires: perl-interpreter >= 2:5.8.0
103    BuildRequires: perl-generators
104    BuildRequires: perl(Net::DNS)
105  BuildRequires: perl(Time::HiRes)  BuildRequires: perl(Time::HiRes)
106  BuildRequires: perl(Time::Local)  BuildRequires: perl(HTML::Parser)
107  BuildRequires: perl(Errno)  BuildRequires: perl(NetAddr::IP)
108  #  BuildRequires: openssl-devel
109  BuildRequires: perl(MIME::Base64)  # These are here for config checking, they are only really needed as Requires (runtime)
110  BuildRequires: perl(DB_File)  BuildRequires: perl(DB_File)
 BuildRequires: perl(Net::SMTP)  
111  BuildRequires: perl(Mail::SPF)  BuildRequires: perl(Mail::SPF)
112  BuildRequires: perl(IP::Country::Fast)  BuildRequires: perl(Net::CIDR::Lite)
113  BuildRequires: perl(Razor2::Client::Version) >= 2.61  BuildRequires: perl(LWP::UserAgent)
114  BuildRequires: perl(Net::Ident)  BuildRequires: perl(Digest::SHA1)
115  BuildRequires: perl(IO::Socket::INET6)  BuildRequires: perl(Test::More)
116  BuildRequires: perl(IO::Socket::SSL)  ## added to build on Koozali SME Server builders
117  BuildRequires: perl(Compress::Zlib)  BuildRequires: perl(ExtUtils::MakeMaker)
118  BuildRequires: perl(DBI)  # Fedora package needs fixing before we can depend on it
119  #BuildRequires: perl(DBD::...)  #BuildRequires: re2c
120  BuildRequires: perl(Getopt::Long) >= 2.34  %if %{use_systemd}
121  BuildRequires: perl(LWP), perl(LWP::UserAgent)  BuildRequires: systemd-units
122  BuildRequires: perl(HTTP::Date)  %endif
 BuildRequires: perl(IO::Zlib) >= 1.04  
 BuildRequires: perl(Encode::Detect)  
 #  
 BuildRequires: perl(Apache::Test)  
 BuildRequires: mod_perl  
   
 BuildRequires: %{_bindir}/dccproc  
 BuildRequires: %{_bindir}/pyzor  
123    
124  ###  Requires: perl(HTTP::Date)
125  Requires: perl(Digest::SHA)  Requires: perl(LWP::UserAgent)
126  Requires: perl(File::Spec) >= 0.8  Requires: perl(Net::DNS)
 Requires: perl(File::Copy) >= 2.02  
 Requires: perl(Pod::Usage) >= 1.10  
 Requires: perl(HTML::Parser) >= 3.43  
 Requires: perl(Archive::Tar) >= 1.23  
 Requires: perl(Mail::DKIM) >= 0.37  
 Requires: perl(Net::DNS) >= 0.58  
 Requires: perl(NetAddr::IP)  
 Requires: perl(Sys::Hostname)  
127  Requires: perl(Time::HiRes)  Requires: perl(Time::HiRes)
 Requires: perl(Time::Local)  
 Requires: perl(Errno)  
 #  
 Requires: perl(MIME::Base64)  
128  Requires: perl(DB_File)  Requires: perl(DB_File)
 Requires: perl(Net::SMTP)  
129  Requires: perl(Mail::SPF)  Requires: perl(Mail::SPF)
130  Requires: perl(IP::Country::Fast)  Requires: perl(Net::CIDR::Lite)
131  Requires: perl(Razor2::Client::Version) >= 2.61  %if %{require_encode_detect}
 Requires: perl(Net::Ident)  
 Requires: perl(IO::Socket::INET6)  
 Requires: perl(IO::Socket::SSL)  
 Requires: perl(Compress::Zlib)  
 Requires: perl(DBI)  
 #Requires: perl(DBD::...)  
 Requires: perl(Getopt::Long) >= 2.34  
 Requires: perl(LWP), perl(LWP::UserAgent)  
 Requires: perl(HTTP::Date)  
 Requires: perl(IO::Zlib) >= 1.04  
132  Requires: perl(Encode::Detect)  Requires: perl(Encode::Detect)
133  #  %endif
134  Requires: perl(Apache::Test)  Requires: perl(BSD::Resource)
 Requires: mod_perl  
 ###  
   
 Requires: perl(Getopt::Long) >= 2.34  
 Requires: %{_bindir}/dccproc  
 Requires: %{_bindir}/pyzor  
   
135  Requires: procmail  Requires: procmail
136  Requires: gnupg  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  Obsoletes: perl-Mail-SpamAssassin <= %{eversion}  %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  %description
193  SpamAssassin provides you with a way to reduce if not completely eliminate  SpamAssassin provides you with a way to reduce if not completely eliminate
# Line 128  which create a server that considerably Line 201  which create a server that considerably
201    
202  To enable spamassassin, if you are receiving mail locally, simply add  To enable spamassassin, if you are receiving mail locally, simply add
203  this line to your ~/.procmailrc:  this line to your ~/.procmailrc:
204  INCLUDERC=%{_sysconfdir}/mail/spamassassin/spamassassin-default.rc  INCLUDERC=/etc/mail/spamassassin/spamassassin-default.rc
205    
206  To filter spam for all users, add that line to /etc/procmailrc  To filter spam for all users, add that line to /etc/procmailrc
207  (creating if necessary).  (creating if necessary).
208    
209  %prep  %prep
210  %setup -q -n %{pkgname}-%{version}  %setup -q -n Mail-SpamAssassin-%{version}
211  %patch0 -p1 -b .krb5  # 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  %build
220  (cd spamc; autoconf)  export CFLAGS="$RPM_OPT_FLAGS"
221  %define _perl_buildroot %{nil}  export LDFLAGS="%{build_ldflags}"
222  test -z "$PERL5LIB" && export PERL5LIB=%{buildroot}%{perl_vendorarch}:%{buildroot}%{perl_vendorlib} || \  %{__perl} Makefile.PL DESTDIR=$RPM_BUILD_ROOT/ SYSCONFDIR=%{_sysconfdir} INSTALLDIRS=vendor ENABLE_SSL="yes" < /dev/null
223    export PERL5LIB="$PERL5LIB":%{buildroot}%{perl_vendorarch}:%{buildroot}%{perl_vendorlib}  %make_build OPTIMIZE="$RPM_OPT_FLAGS"
 test -z "$CFLAGS" && export CFLAGS="%{optflags}"  
 %{__perl} Makefile.PL 'PREFIX=%{_perl_buildroot}%{_prefix}' INSTALLDIRS=vendor ENABLE_SSL=yes  
 %{__perl} -pi -e 's/^\tLD_RUN_PATH=[^\s]+\s*/\t/' Makefile  
 %{__make} OPTIMIZE="$RPM_OPT_FLAGS"  
 %if %{?_without_check:0}%{!?_without_check:1}  
 %{__make} test || :  
 %endif  
 mv spamd/README spamd/README.spamd  
224    
225  %install  %install
226  rm -rf %{buildroot}  rm -rf $RPM_BUILD_ROOT
227  %{__make} install DESTDIR_REDIRECT=%{buildroot} DESTDIR=%{buildroot}  %make_install PREFIX=%buildroot/%{prefix} \
228  find %{buildroot} \( -name .packlist -or -name perllocal.pod -or \( -name '*.bs' -a -empty \) \) -exec rm -f {} \;          INSTALLMAN1DIR=%buildroot/%{_mandir}/man1 \
229  install -d %{buildroot}/%{_initrddir}          INSTALLMAN3DIR=%buildroot/%{_mandir}/man3 \
230  install -p -m 0755 spamd/redhat-rc-script.sh %{buildroot}/%{_initrddir}/spamassassin          LOCAL_RULES_DIR=%{buildroot}/etc/mail/spamassassin
231    chmod 755 %buildroot/%{_bindir}/* # allow stripping
232  mkdir -p %{buildroot}%{_sysconfdir}/mail/spamassassin  
233  mkdir -p -m 0700 %{buildroot}%{_sysconfdir}/mail/spamassassin/sa-update-keys  %if %{use_systemd} == 0
234  mkdir -p %{buildroot}%{_sysconfdir}/sysconfig  install -d %buildroot/%{_initrddir}
235  mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d  install -m 0755 spamd/redhat-rc-script.sh %buildroot/%{_initrddir}/spamassassin
236  mkdir -p %{buildroot}%{_sysconfdir}/cron.daily  %endif
 install -p -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/mail/spamassassin/local.cf  
 install -p -m 0644 %{SOURCE5} %{buildroot}%{_sysconfdir}/sysconfig/spamassassin  
   
 install -p -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/mail/spamassassin  
 install -p -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/mail/spamassassin  
 install -p -m 0755 %{SOURCE10} %{buildroot}%{_sysconfdir}/mail/spamassassin  
 install -p -m 0644 %{SOURCE6} %{buildroot}/etc/logrotate.d/sa-update  
 install -p -m 0644 %{SOURCE89} %{SOURCE90} %{buildroot}%{_sysconfdir}/mail/spamassassin  
 sed -e's,@configdir@,%{_sysconfdir}/mail/spamassassin,g' \  
     -e's,@homedir@,/var/lib/spamassassin,g' \  
     -e's,@logdir@,/var/log/sa-update.log,g' \  
   < %{SOURCE88} > %{buildroot}/etc/cron.daily/sa_update  
 chmod 0755 %{buildroot}/etc/cron.daily/sa_update  
 touch -r %{SOURCE88} %{buildroot}/etc/cron.daily/sa_update  
   
 pushd %{buildroot}%{_datadir}/spamassassin/  
 gunzip -c %{SOURCE1} | tar xf -  
 popd  
   
 install -p -m 0644 %{SOURCE20} %{buildroot}%{_datadir}/spamassassin/99_bogus-virus-warnings.cf  
   
 install -p -m 0644 %{SOURCE60} %{buildroot}%{_datadir}/spamassassin/sought.rules.yerp.org-key.txt  
 install -p -m 0644 %{SOURCE50} %{buildroot}%{_datadir}/spamassassin/release-spamassassin.org-key.txt  
 install -p -m 0644 %{SOURCE40} %{buildroot}%{_datadir}/spamassassin/updates.spamassassin.org-key.txt  
 #install -p -m 0644 %{SOURCE30} %{buildroot}%{_datadir}/spamassassin/saupdates.openprotect.com-key.txt  
   
 mkdir -p %{buildroot}/var/lib/spamassassin  
   
 %files  
 %defattr(-,root,root,-)  
 %doc README Changes sample-nonspam.txt sample-spam.txt spamd/README.spamd  
 %doc UPGRADE LICENSE TRADEMARK NOTICE USAGE CREDITS  
   
 %{perl_vendorlib}/Mail/SpamAssassin.pm  
 %{perl_vendorlib}/Mail/SpamAssassin  
 %{_mandir}/man3/Mail::SpamAssassin*.3pm*  
 %{_mandir}/man1/sa-awl.1*  
 %{perl_vendorlib}/spamassassin-run.pod  
 %{_datadir}/spamassassin  
   
 %{_bindir}/sa-learn  
 %{_bindir}/spamassassin  
 %{_bindir}/sa-update  
 %{_bindir}/sa-compile  
 %{_bindir}/sa-awl  
 %{_bindir}/sa-check_spamd  
 %{_mandir}/man1/sa-learn.1*  
 %{_mandir}/man1/sa-update.1*  
 %{_mandir}/man1/spamassassin*.1*  
 %{_mandir}/man1/sa-compile.1*  
 %{_mandir}/man3/spamassassin-run.3pm*  
 %config(noreplace) %{_sysconfdir}/mail/spamassassin  
 %config(noreplace) %{_sysconfdir}/sysconfig/spamassassin  
 %{_sysconfdir}/cron.daily/sa_update  
 /var/lib/spamassassin  
 %{_sysconfdir}/logrotate.d/sa-update  
237    
238  %{_bindir}/spamd  mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/mail/spamassassin
239  %{_mandir}/man1/spamd.1*  mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
240  %{_initrddir}/spamassassin  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  %{_bindir}/spamc  # Default rules from separate tarball
275  %{_mandir}/man1/spamc.1*  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  %clean  %files -f %{name}-%{version}-filelist
304  rm -rf %{buildroot}  %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  %post
328    %if %{use_systemd} == 0
329  /sbin/chkconfig --add spamassassin  /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  for old in /etc/spamassassin.cf /etc/mail/spamassassin.cf; do  if [ -f /etc/spamassassin.cf ]; then
348    mv $old %{_sysconfdir}/mail/spamassassin/migrated.cf > /dev/null 2>&1 || :          %{__mv} /etc/spamassassin.cf /etc/mail/spamassassin/migrated.cf
349  done  fi
350    if [ -f /etc/mail/spamassassin.cf ]; then
351  # Make sure we import all keys. The release key is not currently          %{__mv} /etc/mail/spamassassin.cf /etc/mail/spamassassin/migrated.cf
352  # intended for sa-update functionality, but one is better equipped to  fi
 # handle such cases in future upgrades.  
 sa-update --import %{_datadir}/spamassassin/release-spamassassin.org-key.txt  
 sa-update --import %{_datadir}/spamassassin/updates.spamassassin.org-key.txt  
 #sa-update --import %{_datadir}/spamassassin/saupdates.openprotect.com-key.txt  
 sa-update --import %{_datadir}/spamassassin/sought.rules.yerp.org-key.txt  
353    
354  %postun  %postun
355    %if %{use_systemd} == 0
356  if [ "$1" -ge "1" ]; then  if [ "$1" -ge "1" ]; then
357      /sbin/service spamassassin condrestart > /dev/null 2>&1      /sbin/service spamassassin condrestart > /dev/null 2>&1
358  fi  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  %preun
368    %if %{razor_deps}
369    rm -f %{_sharedstatedir}/razor/*
370    %endif
371    %if %{use_systemd} == 0
372  if [ $1 = 0 ] ; then  if [ $1 = 0 ] ; then
373      /sbin/service spamassassin stop >/dev/null 2>&1      /sbin/service spamassassin stop >/dev/null 2>&1
374      /sbin/chkconfig --del spamassassin      /sbin/chkconfig --del spamassassin
375  fi  fi
376  exit 0  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  %changelog
394  * Wed Jan 6 2016 Daniel Berteaud <daniel@firewall-services.com> - 3.4.1-1.sme  * Tue Dec 07 2021 John Crisp <jcrisp@safeandsoundit.co.uk>
395  - Update to 3.4.1 [SME: 9153]  - Update to 3.4.6 [SME: 11798]
396    - https://svn.apache.org/repos/asf/spamassassin/branches/3.4/build/announcements/3.4.6.txt
397    
398    * Sat Mar 27 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 3.4.5-1.sme
399    - Update to 3.4.5 [SME: 11496]
400    - https://svn.apache.org/repos/asf/spamassassin/branches/3.4/build/announcements/3.4.5.txt
401    
402    * Fri Nov 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 3.4.4-8.sme
403    - import in SME Server 10 [SME: 11206]
404    -  I just added BuildRequires for perl(ExtUtils::MakeMaker)
405    -  all credit to John Crisp sweat on this one !
406    
407    * Thu Nov 26 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 3.4.4-7.sme
408    - First import to SME v10
409    
410    * Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.4-6
411    - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
412    
413    * Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 3.4.4-5
414    - Use make macros
415    - https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
416    
417    * Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.4-4
418    - Perl 5.32 rebuild
419    
420    * Wed Apr 22 2020 Kevin Fenzi <kevin@scrye.com> - 3.4.4-3
421    - Switch update timer to not need spamassassin service. Fixes bug #1645826
422    
423    * Wed Mar 18 2020 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.4-2
424    - Remove references to the SOUGHT channel
425    
426    * Mon Feb 03 2020 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.4-1
427    - Update to 3.4.4
428    - Resolves: rhbz#1796196
429    
430    * Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.3-3
431    - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
432    
433    * Sat Jan 04 2020 Kevin Fenzi <kevin@scrye.com> - 3.4.3-2
434    - Fix mistaken version in rules. Fixes bug #1787739
435    
436    * Thu Dec 12 2019 Kevin Fenzi <kevin@scrye.com> - 3.4.3-1
437    - Update to 3.4.3. Fixes bug #1782611
438    
439    * Tue Oct 01 2019 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.2-8
440    - Fix issues found by Coverity Scan
441    
442    * Tue Oct 01 2019 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.2-7
443    - Fix rawbody rules documentation
444    
445    * Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.2-6
446    - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
447    
448    * Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.2-5
449    - Perl 5.30 rebuild
450    
451    * Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.2-4
452    - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
453    
454    * Mon Oct 15 2018 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.2-3
455    - Add missing dependencies of sa-compile
456    
457    * Thu Sep 20 2018 Kevin Fenzi <kevin@scrye.com> - 3.4.2-2
458    - Misc small bug fixes and cleanups.
459    
460    * Sun Sep 16 2018 Kevin Fenzi <kevin@scrye.com> - 3.4.2-1
461    - Update to 3.4.2
462    - Fixes: CVE-2017-15705, CVE-2016-1238, CVE-2018-11780 & CVE-2018-11781
463    
464    * Mon Jul 23 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 3.4.1-25
465    - perl-Razor-Agent and perl-Net-Patricia not used on RHEL
466    
467    * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-24
468    - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
469    
470    * Tue Jul 10 2018 Tomas Korbar <tkorbar@redhat.com> - 3.4.1-23
471    - Fix daemonize subroutine
472    - See https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7594
473    
474    * Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-22
475    - Perl 5.28 rebuild
476    
477    * Wed Jun 20 2018 Kevin Fenzi <kevin@scrye.com> - 3.4.1-21
478    - Conditionalize Requires for /sbin/service and /sbin/chkconfig. Fixes bug #1592390
479    
480    * Thu Jun 07 2018 Tomas Korbar <tomas.korb@seznam.cz> - 3.4.1-20
481    - Add razor log path and home directory option
482    
483    * Tue Apr 10 2018 Rafael Santos <rdossant@redhat.com> - 3.4.1-19
484    - Use standard Fedora linker flags (bug #1548561)
485    
486    * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-18
487    - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
488    
489    * Mon Oct 23 2017 Kevin Fenzi <kevin@scrye.com> - 3.4.1-17
490    - Add upstream patch to stop sa-learn warnings. Fixes bug #1505317
491    - Add upstream patch to stop DNS warnings. Fixes bug #1364932
492    
493    * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-16
494    - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
495    
496    * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-15
497    - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
498    
499    * Tue Jun 06 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-14
500    - Perl 5.26 rebuild
501    
502    * Thu May 18 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-13
503    - Fix building on Perl without '.' in @INC
504    
505    * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-12
506    - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
507    
508    * Mon Oct 31 2016 Kevin Fenzi <kevin@scrye.com> - 3.4.1-11
509    - Add patch for openssl 1.1.x support. https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7361
510    
511    * Sat Sep 03 2016 Kevin Fenzi <kevin@scrye.com> - 3.4.1-10
512    - Drop perl-Mail-spamassassin obsolete that was added in 2004
513    
514    * Sat Jun 11 2016 Kevin Fenzi <kevin@scrye.com> - 3.4.1-9
515    - Add perl-Razor-Agent and perl-Net-Patricia To Requires, they might help processing. Fixes bug #1337924
516    - Add patch for netdns 1.0.1+ dns lookups.
517    
518  * Fri Jul 10 2015 Daniel Berteaud <daniel@firewall-services.com> - 3.3.2-60.sme  * Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-8
519  - Expand atrpms macro and remove BuildReq on atrpms-rpm-config [SME: 8980]  - Perl 5.24 rebuild
520    
521  * Fri Jul 10 2015 Daniel Berteaud <daniel@firewall-services.com> - 3.3.2-59.sme  * Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-7
522  - Add atrpms-rpm-config to the BUildReq so it can build [SME: 8980]  - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
523    
524  * Thu Jul 9 2015 Daniel Berteaud <daniel@firewall-services.com> - 3.3.2-58.sme  * Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.1-6
525  - Update RegistrarBoundaries.pm to the one from 3.4.1 so URIBL tests are  - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
   done on new tld [SME: 8980]  
526    
527  * Thu Jul 9 2015 Daniel Berteaud <daniel@firewall-services.com> - 3.3.2-57.sme  * Tue Jun 09 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-5
528  - Remove dependency on atrpms macros [SME: 8980]  - Perl 5.22 rebuild
529    
530  * Mon Jun 10 2013 Axel Thimm <Axel.Thimm@ATrpms.net> -  * Sun Jun 07 2015 Kevin Fenzi <kevin@scrye.com> 3.4.1-4
531  - Update to 3.3.2.  - Fix sa-update to handle systemctl or service as the case may be.
532    
533  * Fri Nov 26 2010 Axel Thimm <Axel.Thimm@ATrpms.net> -  * Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.1-3
534  - Update to interim dev release 3.3.1_01.  - Perl 5.22 rebuild
535    
536  * Thu Nov 25 2010 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sun May 03 2015 Kevin Fenzi <kevin@scrye.com> 3.4.1-2
537  - Remove goto invocations to please perl 5.12.x.  - Fix base rules version issue. Bug #1217990
538    - Drop run dir we don't use it.
539    
540  * Fri Jan 29 2010 Axel Thimm <Axel.Thimm@ATrpms.net>  * Wed Apr 29 2015 Kevin Fenzi <kevin@scrye.com> 3.4.1-1
541  - Update to 3.3.0 final.  - Update to 3.4.1
542    
543  * Mon Dec 28 2009 Axel Thimm <Axel.Thimm@ATrpms.net>  * Fri Apr 03 2015 Kevin Fenzi <kevin@scrye.com> 3.4.0-14
544  - Update to 3.3.0 rc1.  - Switch to systemd timer unit from cron for rules updates. Fixes bug #1064537
545    
546  * Sun Jun 15 2008 Axel Thimm <Axel.Thimm@ATrpms.net>  * Fri Apr 03 2015 Kevin Fenzi <kevin@scrye.com> 3.4.0-13
547  - Update spamassassin update key with the cross-signed one.  - Remove last parts of portreserve. Fixes bug #1175798
548    - Fix typo in Razor2 plugin. Fixes bug #1208776
549    - Disabled the AHBL blacklist thats no longer in service in base rules. Fixes bug #1180338
550    
551  * Thu Jun 12 2008 Axel Thimm <Axel.Thimm@ATrpms.net>  * Thu Sep 25 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-12
552  - Update to 3.2.5.  - Apply fix for amavisd and spampd reloading after rules updates. Fixes bug #1145654
553    
554  * Sat Dec 22 2007 Axel Thimm <Axel.Thimm@ATrpms.net>  * Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.0-11
555  - Fix handling of gpgkeys (Jeffrey J. Kosowsky <atrpms@kosowsky.org>).  - Perl 5.20 rebuild
 - channels and gpgkeys are not anymore hardcoded in cron scripts.  
 - Many smaller cleanups.  
556    
557  * Fri Aug 10 2007 Axel Thimm <Axel.Thimm@ATrpms.net>  * Tue Aug 26 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-10
558  - Update to 3.2.3.  - CLean up portreserve conditionals. Fixes bug #1128708
 - Remove patches for suid bug (are now upstream).  
559    
560  * Tue Jul 31 2007 Axel Thimm <Axel.Thimm@ATrpms.net>  * Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 3.4.0-9
561  - Fix pyzor/dcc suid bug.  - Rebuild for rpm bug 1131960
562    
563  * Wed Jul 25 2007 Axel Thimm <Axel.Thimm@ATrpms.net>  * Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-8.el6
564  - Update to 3.2.2.  - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
565    
566  * Tue Jun 12 2007 Axel Thimm <Axel.Thimm@ATrpms.net>  * Fri Jun 20 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-7
567  - Update to 3.2.1.  - Add patch to work with newer perl-Net-DNS. Fixes bug #1111586
 - Rename %{_sysconfdir}/cron.daily/sa-update sa_update to avoid  
   conflict with mailscanner project.  
568    
569  * Sat May  5 2007 Axel Thimm <Axel.Thimm@ATrpms.net>  * Wed Jun 18 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-6
570  - Update to 3.2.0.  - Adjust systemd unit to not log to syslog since spamd does it already.
571  - Sync with rawhide's sa-update cron.  - Fixes bug #1107541
572    
573  * Thu Feb 15 2007 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-5
574  - Update to 3.1.8.  - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
575    
576  * Wed Oct 11 2006 Axel Thimm <Axel.Thimm@ATrpms.net>  * Fri May 23 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-4
577  - Update to 3.1.7.  - Fix versioning on initial rules.
578    - Add note to README.RHEL.Fedora to note -d option in sysconfig
579    
580  * Fri Oct  6 2006 Axel Thimm <Axel.Thimm@ATrpms.net>  * Wed Mar 19 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-3
581  - Update to 3.1.6.  - Cleaned up spec, added conditionals to build on el again.
582    
583  * Wed Aug 30 2006 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sun Feb 16 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-2
584  - Update to 3.1.5.  - Simplify systemd unit file. Thanks misc. Fixes bug #1065762
585    
586  * Fri Jul 28 2006 Axel Thimm <Axel.Thimm@ATrpms.net>  * Tue Feb 11 2014 Kevin Fenzi <kevin@scrye.com> 3.4.0-1
587  - Update to 3.1.4.  - Update to 3.4.0
588    
589  * Wed Jun  7 2006 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sun Feb 02 2014 Kevin Fenzi <kevin@scrye.com> 3.3.2-19
590  - Update to 3.1.3.  - Use pgrep -f for full command line. Fixes bug #1057926
591    - Patch to use gnupg2 instead of gnupg1. Fixes bug #1055593
592    - Use pgrep for spampd as well. Fixes bug #1058976
593    
594  * Fri May 26 2006 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sat Jan 04 2014 Kevin Fenzi <kevin@scrye.com> 3.3.2-18
595  - Update to 3.1.2.  - Add patch to fix warning to syslog with recent perl.·
596    - Fixes bug #1023670
597    
598  * Sun Mar 12 2006 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-17
599  - Update to 3.1.1.  - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
600    
601  * Thu Sep 15 2005 Axel Thimm <Axel.Thimm@ATrpms.net>  * Mon Jul 22 2013 Petr Pisar <ppisar@redhat.com> - 3.3.2-16
602  - Update to 3.1.0.  - Perl 5.18 rebuild
603    
604  * Thu Jun  9 2005 Axel Thimm <Axel.Thimm@ATrpms.net>  * Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-15
605  - Update to 3.0.4.  - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
606    
607  * Fri Apr 29 2005 Axel Thimm <Axel.Thimm@ATrpms.net>  * Thu Nov 15 2012 Kevin Fenzi <kevin@scrye.com> 3.3.2-14
608  - Update to 3.0.3.  - Fix incorrect pgrep path. Fixes bug #875844
609    
610  * Fri Dec 17 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sat Aug 25 2012 Kevin Fenzi <kevin@scrye.com> 3.3.2-13
611  - Update to 3.0.2.  - Add systemd macros for presets. Fixes bug #850320
612    
613  * Tue Dec 14 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Fri Aug 03 2012 Kevin Fenzi <kevin@scrye.com> - 3.3.2-12
614  - Add support for collateral spam.  - Fix sa-update not detecting spamd running. Fixes bug #755644
615    - Add restart=always to systemd file to work around upstream bug. Bug #812359
616    
617  * Sat Oct 23 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-11
618  - Update to 3.0.1.  - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
619    
620  * Wed Sep 22 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Wed Jun 13 2012 Petr Pisar <ppisar@redhat.com> - 3.3.2-10
621  - Update to 3.0.0 final.  - Perl 5.16 rebuild
622    
623  * Fri Sep 17 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Thu Jan 19 2012 Kevin Fenzi <kevin@scrye.com> - 3.3.2-9
624  - Update to 3.0.0-rc5.  - Fix unit file to write pid correctly. Fixes bug #783108
625    
626  * Thu Aug  5 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-8
627  - Update to 3.0.0-pre4.  - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
628    
629  * Thu Jul 29 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Mon Sep 12 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-7
630  - Update to 3.0.0-pre3.  - Use sysvinit on F15, not systemd
631    
632  * Thu Jan 22 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Thu Sep 08 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-6
633  - Update to 2.63.  - Don't install sysvinit script if using systemd
634    
635  * Mon Jan 19 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Wed Sep 07 2011 Jesse Keating <jkeating@redhat.com> - 3.3.2-5
636  - Update to 2.62.  - Add details for RHEL 7
637    
638  * Mon Jan 12 2004 Axel Thimm <Axel.Thimm@ATrpms.net>  * Sat Aug 13 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-4
639  - Sync with rawhide (remove servicename patch).  - Build with systemd unit file for f16 and f17
640    
641  * Tue Dec  9 2003 Axel Thimm <Axel.Thimm@ATrpms.net>  * Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 3.3.2-3
642  - Upgrade to 2.61.  - Perl mass rebuild
643    
644  * Wed Sep 24 2003 Axel Thimm <Axel.Thimm@ATrpms.net>  * Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 3.3.2-2
645  - Upgrade to 2.60.  - Perl mass rebuild
646  - Sync with rawhide.  
647    * Mon Jun 6 2011 Warren Togami <warren@togami.com> - 3.3.2-1
648    - 3.3.2
649    
650    * Mon May 30 2011 Warren Togami <warren@togami.com> - 3.3.2-0.8.rc2
651    - 3.3.2-rc2
652    
653    * Mon May 16 2011 Warren Togami <warren@togami.com> - 3.3.2-0.7.rc1
654    - 3.3.2-rc1
655    
656    * Sun Feb 27 2011 Ville Skyttä <ville.skytta@iki.fi> - 3.3.2-0.6.svn1071394
657    - Own /etc/mail dir (#645035).
658    
659    * Wed Feb 16 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-0.5.svn1071394
660    - Oops, I left off svn in the Release of 3.3.2-0.4.svn1071394
661    
662    * Wed Feb 16 2011 Nick Bebout <nb@fedoraproject.org> - 3.3.2-0.4.svn1071394
663    - replace @@VERSION@@ with current saversion
664    - restart spampd after sa-update cronjob runs
665    - update to svn1071394
666    
667    * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-0.3.svn1027144
668    - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
669    
670    * Fri Oct 29 2010 Kevin Fenzi <kevin@tummy.com> - 3.3.2-0.2.svn1027144
671    - Fix sa-update sysconfig script line wrapping
672    
673    * Mon Oct 25 2010 Nick Bebout <nb@fedoraproject.org> - 3.3.2-0.1.svn1027144
674    - Update to 3.3.2 - svn1027144 to solve bug
675    
676    * Sat Jul 03 2010 Dennis Gilmore <dennis@ausil.us> - 3.3.1-5
677    - rebuild against perl-5.12.0 again
678    
679    * Wed Jun 02 2010 Nick Bebout <nb@fedoraproject.org> - 3.3.1-4
680    - Add perl-Mail-SPF dependency
681    
682    * Wed Jun 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 3.3.1-3
683    - Mass rebuild with perl-5.12.0
684    
685    * Tue Mar 16 2010 Warren Togami <wtogami@redhat.com> - 3.3.1-2
686    - 3.3.1 take 2
687    
688    * Mon Mar 15 2010 Warren Togami <wtogami@redhat.com> - 3.3.1-1
689    - 3.3.1 bug fix only release
690    
691    * Wed Feb 17 2010 Warren Togami <wtogami@redhat.com> - 3.3.0-6
692    - Minor fix to update script
693    
694    * Thu Jan 21 2010 Warren Togami <wtogami@redhat.com> - 3.3.0-2
695    - 3.3.0
696    - README.RHEL.Fedora contains notes specific to our package
697    
698    * Thu Jan 14 2010 Warren Togami <wtogami@redhat.com> - 3.3.0-0.32.rc3
699    - 3.3.0-rc3
700    - if mimedefang is enabled, reload rules after sa-update
701    
702    * Mon Jan 11 2010 Warren Togami <wtogami@redhat.com> - 3.3.0-0.31.rc2
703    - 3.3.0-rc2
704    
705    * Mon Dec 28 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.29.rc1
706    - sa-update channels defined in /etc/mail/spamassassin/channel.d/*.conf files
707    
708    * Mon Dec 28 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.27.rc1
709    - sa-update runs in cron automatically if spamd or amavisd is running
710      If you use neither, you may force sa-update by editing /etc/sysconfig/sa-update
711    
712    * Mon Dec 21 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.26.rc1
713    - 3.3.0-rc1.proposed2 with fixed spamc
714    
715    * Fri Dec 18 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.23.rc1
716    - 3.3.0-rc1
717    - Bug #103401: portreserve protect spamd port 783 on F-10+
718    
719    * Thu Dec 03 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.21.beta1
720    - 3.3.0-beta1
721    
722    * Fri Nov 20 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.20.svn882672
723    - svn882672 snapshot
724    
725    * Thu Nov 12 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.19.svn816416
726    - Encode::Detect is important to spamassassin, require for anything newer than RHEL-5
727    
728    * Thu Sep 24 2009 Warren Togami <wtogami@redhat.com> - 3.3.3-0.18.svn816416
729    - Enable SOUGHT ruleset in nightly sa-update http://wiki.apache.org/spamassassin/SoughtRules
730      You must enable the sa-update cron job manually in /etc/cron.d/sa-update
731    - Custom channels may be specified in these config files:
732          /etc/mail/spamassassin/sa-update-channels.txt
733          /etc/mail/spamassassin/sa-update-keys.txt
734    
735    * Thu Sep 17 2009 Warren Togami <wtogami@redhat.com> - 3.3.3-0.14.svn816416
736    - 3.3.0 svn816416 snapshot, pre-alpha3
737      Upstream just fixed important bug SA#6206.  Many other bugs fixed since alpha2.
738    
739    * Thu Sep 17 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.13.alpha2
740    - F11+ requires Mail::DKIM
741    
742    * Sun Sep 13 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.12.alpha2
743    - require perl(Mail::DKIM), useful due to USER_IN_DEF_DKIM_WL
744    
745    * Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 3.3.0-0.6.alpha2
746    - rebuilt with new openssl
747    
748    * Mon Aug 10 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.5.alpha1
749    - 3.3.0-alpha2
750    
751    * Tue Jul 07 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.2.alpha1
752    - Include default rules to prevent mass confusion and complaints.
753      You should really use sa-update though.  Really.
754      Edit /etc/cron.d/sa-update to automate it.
755    
756    * Mon Jul 06 2009 Warren Togami <wtogami@redhat.com> - 3.3.0-0.1.alpha1
757    - 3.3.0-alpha1
758    
759    * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.5-5
760    - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
761    
762    * Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 3.2.5-4
763    - rebuild with new openssl
764    
765    * Mon Dec 15 2008 Kevin Fenzi <kevin@tummy.com> - 3.2.5-3
766    - Update for merge review - bug 226426
767    
768    * Thu Sep  4 2008 Tom "spot" Callaway <tcallawa@redhat.com> 3.2.5-2
769    - fix license tag
770    
771    * Fri Jun 27 2008 Warren Togami <wtogami@redhat.com> - 3.2.5-1
772    - 3.2.5
773    
774    * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.2.4-4
775    - Rebuild for perl 5.10 (again)
776    
777    * Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.2.4-3
778    - Autorebuild for GCC 4.3
779    
780    * Thu Jan 31 2008 Tom "spot" Callaway <tcallawa@redhat.com> 3.2.4-2
781    - rebuild for new perl
782    
783    * Tue Jan 01 2008 Warren Togami <wtogami@redhat.com> 3.2.4-1
784    - 3.2.4 major bugfix release
785    
786    * Tue Aug 21 2007 Warren Togami <wtogami@redhat.com> 3.2.3-2
787    - rebuild
788    
789    * Mon Aug 13 2007 Warren Togami <wtogami@redhat.com> 3.2.3-1
790    - 3.2.3 major bugfix release
791    
792    * Thu Aug 2 2007 Warren Togami <wtogami@redhat.com> 3.2.2-2
793    - Fix SA#5574 which cripples dcc/pyzor users
794    
795    * Wed Jul 25 2007 Warren Togami <wtogami@redhat.com> 3.2.2-1
796    - 3.2.2 minor bugfix release
797    
798    * Mon Jun 11 2007 Warren Togami <wtogami@redhat.com> 3.2.1-1
799    - 3.2.1 CVE-2007-2873
800    
801    * Wed May 02 2007 Warren Togami <wtogami@redhat.com> 3.2.0-1
802    - 3.2.0
803    
804    * Fri Apr 13 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.5.rc3
805    - 3.2.0 rc3
806    
807    * Fri Apr 13 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.4.rc2
808    - 3.2.0 rc2
809    
810    * Mon Apr 02 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.3.rc1
811    - 3.2.0 rc1
812    
813    * Tue Mar 06 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.2.pre2
814    - Conditional to require perl-devel during build for FC7+ (#226276)
815    
816    * Fri Mar 02 2007 Warren Togami <wtogami@redhat.com> 3.2.0-0.1.pre2
817    - 3.2.0-pre2
818    
819    * Mon Feb 19 2007 Warren Togami <wtogami@redhat.com> 3.1.8-2
820    - Fix sa-learn regression (#228968)
821    
822    * Tue Feb 13 2007 Warren Togami <wtogami@redhat.com> 3.1.8-1
823    - 3.1.8 CVE-2007-0451
824    
825    * Tue Feb 13 2007 Warren Togami <wtogami@redhat.com> 3.1.7-9
826    - silence sa-update cron script
827    
828    * Wed Feb 07 2007 Warren Togami <wtogami@redhat.com> 3.1.7-8
829    - only restart spamd if necessary after sa-update (#227756)
830    
831    * Wed Feb 07 2007 Warren Togami <wtogami@redhat.com> 3.1.7-7
832    - requires gnupg (#227738)
833    
834    * Sun Jan 28 2007 Warren Togami <wtogami@redhat.com> 3.1.7-6
835    - explicit requires on perl(HTTP::Date) and perl(LWP::UserAgent)
836      (Bug #193100)
837    
838    * Mon Jan 22 2007 Warren Togami <wtogami@redhat.com> 3.1.7-5
839    - fix typo in logrotate.d (#223817)
840    
841    * Thu Jan 18 2007 Warren Togami <wtogami@redhat.com>
842    - Options for RHEL4
843        * spamc/spamd cannot connect over IPv6 or SSL
844        * sa-update is disabled
845      The above functionality requires perl modules not included in RHEL4.
846      You may still use them if you get those perl modules from elsewhere.
847      RHEL5 ships these perl modules.
848    
849    * Thu Dec 14 2006 Warren Togami <wtogami@redhat.com> - 3.1.7-4
850    - add standardized sa-update cron script, disabled by default
851    
852    * Thu Dec 14 2006 Warren Togami <wtogami@redhat.com> - 3.1.7-2
853    - own directory /var/lib/spamassassin
854    
855    * Mon Nov 20 2006 Warren Togami <wtogami@redhat.com> - 3.1.7-1
856    - 3.1.7 maintenance release
857    
858    * Wed Aug 02 2006 Warren Togami <wtogami@redhat.com> - 3.1.4-1
859    - 3.1.4 maintenance release
860    
861    * Mon Jul 17 2006 Warren Togami <wtogami@redhat.com> - 3.1.3-5
862    - req perl-IO-Socket-SSL for spamc/spamd SSL communication
863    - req perl-IO-Socket-INET6 for IPv6
864    
865    * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.1.3-3.1
866    - rebuild
867    
868    * Tue Jun 27 2006 Florian La Roche <laroche@redhat.com> - 3.1.3-3
869    - require diffutils for the post script (cmp is used)
870    
871    * Wed Jun 07 2006 Warren Togami <wtogami@redhat.com> - 3.1.3-2
872    - start spamd before sendmail (#193818)
873    - require perl-Archive-Tar (#193100)
874    
875    * Mon Jun 05 2006 Warren Togami <wtogami@redhat.com> - 3.1.3-1
876    - CVE-2006-2447
877    
878    * Fri May 26 2006 Warren Togami <wtogami@redhat.com> - 3.1.2-1
879    - 3.1.2 bug fix release
880    
881    * Tue May 09 2006 Warren Togami <wtogami@redhat.com> - 3.0.5-4
882    - Preserve timestamp and context of /etc/sysconfig/spamassassin (#178580)
883    
884    * Sat Mar 11 2006 Warren Togami <wtogami@redhat.com> - 3.1.1-1
885    - 3.1.1
886    
887    * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.1.0-5
888    - bump again for double-long bug on ppc(64)
889    
890    * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.1.0-5
891    - rebuilt for new gcc4.1 snapshot and glibc changes
892    
893    * Wed Jan 18 2006 Warren Togami <wtogami@redhat.com> - 3.1.0-5
894    - include SPAM_PID dir (#177788)
895    
896    * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
897    - rebuilt
898    
899    * Thu Dec 01 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-3
900    - #174579 nls spamd init script (Rudolf Kastl)
901    
902    * Tue Nov 08 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-2
903    - #161785 ensure that service restart works
904    
905    * Tue Sep 13 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-1
906    - 3.1.0
907    
908    * Sun Aug 28 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-0.rc2
909    - 3.1.0-rc2
910    
911    * Tue Aug 16 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-0.rc1
912    - 3.1.0-rc1
913    
914    * Fri Jul 15 2005 Warren Togami <wtogami@redhat.com> - 3.1.0-0.pre4
915    - 3.1.0-pre4
916    
917    * Sun Jun 05 2005 Warren Togami <wtogami@redhat.com> - 3.0.4-1
918    - 3.0.4
919    
920    * Tue May 17 2005 Warren Togami <wtogami@redhat.com> - 3.0.3-4
921    - allow user-level disabling of subject rewriting pref (#147464)
922    
923    * Wed Apr 27 2005 Warren Togami <wtogami@redhat.com> - 3.0.3-3
924    - 3.0.3
925    - SA#4287 retval fix
926    - allow replacement of rc service script during upgrades
927    
928    * Mon Apr 25 2005 Warren Togami <wtogami@redhat.com> - 3.0.3-0.r164513
929    - 3.0.3-r164513 (almost final)
930    
931    * Thu Apr 21 2005 Warren Togami <wtogami@redhat.com> - 3.0.2-9
932    - SA#4191 uri_to_domain() is broken for urls with empty port
933      SA#4232 multipart message with 0 parts -> uninitialized in m//
934      SA#4121 Score for user defined rules become ignored
935      SA#3944 get_envelope_from not handling received header
936    
937    * Sun Apr 10 2005 Ville Skyttä <ville.skytta@iki.fi> - 3.0.2-8
938    - Own /usr/share/spamassassin (#152534).
939    - Drop no longer needed dependency filter script.
940    
941    * Sat Apr 02 2005 Warren Togami <wtogami@redhat.com> 3.0.2-7
942    - req DB_File (#143186)
943    
944    * Sat Apr 02 2005 Warren Togami <wtogami@redhat.com> 3.0.2-6
945    - test svn 3.0 stable r122144 snapshot
946      SA#3826 #4044 #4050 #4048 #4075 #4064 #4075 #4034 #3952
947    
948    * Thu Mar 24 2005 Florian La Roche <laroche@redhat.com>
949    - add "exit 0" to postun script
950    
951    * Thu Mar 24 2005 Joe Orton <jorton@redhat.com> 3.0.2-4
952    - package the NOTICE file
953    
954    * Thu Mar 17 2005 Warren Togami <wtogami@redhat.com> - 3.0.2-3
955    - reinclude ia64, thanks jvdias
956    
957    * Tue Mar 15 2005 Warren Togami <wtogami@redhat.com> - 3.0.2-2
958    - exclude ia64 for now due to Bug #151127
959    
960    * Mon Dec 20 2004 Warren Togami <wtogami@redhat.com> - 3.0.2-1
961    - 3.0.2
962    
963    * Sun Oct 31 2004 Warren Togami <wtogami@redhat.com> - 3.0.1-1
964    - 3.0.1
965    
966    * Mon Oct 18 2004 Warren Togami <wtogami@redhat.com> - 3.0.0-3
967    - Fix local.cf rewrite subject option (#133355 Christof Damian)
968    
969    * Sat Sep 25 2004 Warren Togami <wtogami@redhat.com> - 3.0.0-2
970    - Update URL, cleanup name (Robert Scheck #133622)
971    
972    * Thu Sep 23 2004 Warren Togami <wtogami@redhat.com> - 3.0.0-1
973    - match upstream version
974    - #133422 Future proof krb5 back compat (Milan Kerslager)
975    
976    * Wed Sep 22 2004 Warren Togami <wtogami@redhat.com> - 3.0-10
977    - 3.0.0 final
978    
979    * Sun Sep 12 2004 Warren Togami <wtogami@redhat.com> - 3.0-9.rc4
980    - 3.0 rc4
981    - update krb5 backcompat patch (John Lundin)
982    
983    * Sat Sep 04 2004 Warren Togami <wtogami@redhat.com> - 3.0-8.rc3
984    - 3.0 rc3
985    
986    * Sun Aug 29 2004 Warren Togami <wtogami@redhat.com> - 3.0-7.rc2
987    - 3.0 rc2
988    
989    * Sat Aug 21 2004 Warren Togami <wtogami@redhat.com> - 3.0-6.rc1
990    - fix perl module syntax in req and buildreqs
991    
992    * Thu Aug 19 2004 Warren Togami <wtogami@redhat.com> - 3.0-5.rc1
993    - 3.0 rc1
994    
995    * Sat Aug 07 2004 Warren Togami <wtogami@redhat.com> - 3.0-3.pre4
996    - 3.0 pre4
997    
998    * Wed Jul 28 2004 Warren Togami <wtogami@redhat.com> - 3.0-3.pre2
999    - 3.0 pre2
1000    
1001    * Sun Jun 20 2004 Warren Togami <wtogami@redhat.com> - 3.0-2.pre1
1002    - 3.0.0 pre1
1003    - remove unnecessary patches applied upstream
1004    - update krb5 backcompat patch
1005    
1006    * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1007    - rebuilt
1008    
1009    * Mon May 31 2004 Warren Togami <wtogami@redhat.com> - 3.0-svn20040530
1010    - svn snapshot 20040530
1011    - #124870 prevent service startup failure due to old -a option
1012    - #124871 more docs
1013    - #124872 unowned directories
1014    
1015    * Mon May 24 2004 Warren Togami <wtogami@redhat.com> - 3.0-svn20040524
1016    - #123432 do not start service by default
1017    - #122488 remove CRLF's
1018    - #123706 correct license
1019    - svn snapshot 20040524
1020    - svn snapshot 20040518
1021    
1022    * Sun May  2 2004 Ville Skyttä <ville.skytta@iki.fi> - 2.63-8
1023    - #122233
1024    - Require perl(:MODULE_COMPAT_*).
1025    - Use %%{_mandir} and %%{_initrddir}.
1026    - Fix License tag and include License in docs.
1027    - Backslashify multiline init script description.
1028    
1029    * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1030    - rebuilt
1031    
1032    * Wed Feb  11 2004 Warren Togami <wtogami@redhat.com> 2.63-6
1033    - require sitelib instead
1034    
1035    * Wed Jan  21 2004 Warren Togami <wtogami@redhat.com> 2.63-3
1036    - krb5-backcompat.patch so older krb5-devel does not fail
1037    
1038    * Wed Jan  21 2004 Warren Togami <wtogami@redhat.com> 2.63-2
1039    - upgrade to 2.63
1040    
1041    * Mon Jan  19 2004 Warren Togami <wtogami@redhat.com> 2.62-3
1042    - Ville Skyttä's fixes from #113596 including:
1043    - Fix buildroot traces
1044    - enable openssl
1045    - Trailing slash to DESTDIR (bug 90202 comment 14).
1046    - export optflags so they're honored, affects spamc only.
1047    
1048    * Mon Jan  19 2004 Warren Togami <wtogami@redhat.com> 2.62-2
1049    - upgrade to 2.62
1050    - Prereq -> Requires, former is deprecated
1051    - Require current version of perl
1052    - Remove urban myth clean test
1053    - TODO: Get rid of prefix
1054    
1055    * Wed Dec  31 2003 Dan Walsh <dwalsh@redhat.com> 2.61-2
1056    - Change sysconfdir to not use full path
1057    
1058    * Tue Dec  9 2003 Chip Turner <cturner@redhat.com> 2.61-1
1059    - upgrade to 2.61
1060    
1061    * Fri Sep 26 2003 Chip Turner <cturner@redhat.com> 2.60-2
1062    - update to 2.60
1063    
1064  * Sat Jul  5 2003 Chip Turner <cturner@redhat.com> 2.55-3  * Sat Jul  5 2003 Chip Turner <cturner@redhat.com> 2.55-3
1065  - change perl dependency to more accurate versions with explicit epochs  - change perl dependency to more accurate versions with explicit epochs
1066    
1067    * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
1068    - rebuilt
1069    
1070    * Sat May 31 2003 Chip Turner <cturner@redhat.com> 2.55-1
1071    - move to upstream version 2.55
1072    
1073    * Tue May 13 2003 Chip Turner <cturner@redhat.com>
1074    - bump for build
1075    - change init.d script to not default to started
1076    
1077    * Sun May 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1078    - remove Distribution: tag in spec file
1079    
1080  * Wed Apr 16 2003 Chip Turner <cturner@redhat.com> 2.53-5  * Wed Apr 16 2003 Chip Turner <cturner@redhat.com> 2.53-5
1081  - remove SIGCHILD patch to properly return it to SIG_IGN now that  - remove SIGCHILD patch to properly return it to SIG_IGN now that
1082    waitpid isn't used on Linux    waitpid isn't used on Linux


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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