Name: milter-regex Version: 2.4 Release: 1%{?dist} Summary: Milter plug-in for regular expression filtering License: BSD URL: http://www.benzedrine.ch/milter-regex.html Source0: http://www.benzedrine.ch/milter-regex-%{version}.tar.gz Source1: milter-regex-initscript Source2: milter-regex-options Source3: milter-regex.conf Patch0: milter-regex-2.0-yyparse.patch BuildRequires: byacc BuildRequires: coreutils BuildRequires: gcc BuildRequires: groff BuildRequires: make BuildRequires: sendmail-devel >= 8.13 BuildRequires: sed Requires(pre): shadow-utils %description Milter-regex is a milter based filter that makes it possible to filter emails using regular expressions. %prep %setup -q # yyparse() should be declared extern, not static %patch0 # Customize config file location and dæmon user sed -i -e 's|/etc/milter-regex\.conf|%{_sysconfdir}/mail/milter-regex.conf|; s|_milter-regex|mregex|' milter-regex.[8c] # Copy out the license text from the source code head -n +31 milter-regex.c > LICENSE %build make %{?_smp_mflags} -f Makefile.linux CFLAGS="%{optflags} -Wextra -Wwrite-strings -DYYMAXDEPTH=8192" %install mkdir -p \ %{buildroot}%{_initddir} \ %{buildroot}%{_localstatedir}/spool/milter-regex \ %{buildroot}%{_mandir}/man8 \ %{buildroot}%{_sbindir} \ %{buildroot}%{_sysconfdir}/{mail,sysconfig} install -p -m 755 milter-regex %{buildroot}%{_sbindir}/ install -p -m 644 milter-regex.8 %{buildroot}%{_mandir}/man8/ install -p -m 755 %{SOURCE1} %{buildroot}%{_initddir}/milter-regex install -p -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/milter-regex install -p -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/mail/milter-regex.conf # Create a ghost sock file so we can remove it on package deletion : > %{buildroot}%{_localstatedir}/spool/milter-regex/sock %pre getent group mregex >/dev/null || groupadd -r mregex getent passwd mregex >/dev/null || \ useradd -r -g mregex -d %{_localstatedir}/spool/milter-regex \ -s /sbin/nologin -c "Regex Milter" mregex exit 0 %post /sbin/chkconfig --add milter-regex || : %preun if [ $1 -eq 0 ] ; then %{_initddir}/milter-regex stop &> /dev/null || : /sbin/chkconfig --del milter-regex || : fi %postun [ $1 -ge 1 ] && %{_initddir}/milter-regex try-restart &> /dev/null || : %files %doc LICENSE %{_sbindir}/milter-regex %{_initddir}/milter-regex %config(noreplace) %{_sysconfdir}/sysconfig/milter-regex %config(noreplace) %{_sysconfdir}/mail/milter-regex.conf %dir %attr(755,root,mregex) %{_localstatedir}/spool/milter-regex/ %ghost %{_localstatedir}/spool/milter-regex/sock %{_mandir}/man8/milter-regex.8* %changelog * Wed Apr 3 2019 Paul Howarth - 2.4-1 - Update to 2.4 - Bug fix: for actions followed by multiple expressions (not just one arbitrarily complex expression), when multiple expressions become defined during the same sequence point, but with different values (e.g. one true, another false), depending on the expression order, the action might not be taken, when it should be - Add -f option to set syslog facility * Sun Mar 24 2019 Paul Howarth - 2.2-3 - Fix ownership of /var/spool/milter-regex so that dac_override isn't needed (#1678040) * Fri Aug 24 2018 Paul Howarth - 2.2-1 - Update to 2.2 - Add -U, -G, and -P options to set pipe user, group, and permissions * Fri Aug 24 2018 Paul Howarth - 2.1-1 - Update to 2.1 - Default maximum log level to 6 (LOG_INFO), i.e. exclude LOG_DEBUG - Upstream switched from benezedrine.cx to bezendrine.ch * Fri Jan 26 2018 Paul Howarth - 2.0-11 - List build requirements one per line - Don't use full paths for commands in scriptlets, to improve readability - Drop legacy Group: tag - Specify all build requirements * Mon Mar 2 2015 Paul Howarth - 2.0-1 - Update to 2.0 - Add -l option to specify maximum log level - Drop upstreamed cleanup and starttls patches - Add patch to fix declaration of yyparse() * Mon Mar 2 2015 Paul Howarth - 1.9-3 - Add support for STARTTLS macro checking (#840665) * Mon Mar 2 2015 Paul Howarth - 1.9-1 - Update to 1.9 - Add -j option to chroot - Improve building on various platforms - Fix some typos in documentation and example config - Drop upstreamed strlcat patch - Drop gcc patch, no longer needed - Build with additional warnings enabled, and add patch to fix warnings where possible (libmilter API is missing some 'const' attributes, so it's not possible to get rid of all of them) * Mon Mar 2 2015 Paul Howarth - 1.8-3 - Clean up for modern rpmbuild - Drop Sendmail references as the milter should work with Postfix too - Nobody else likes macros for commands * Fri Aug 13 2010 Paul Howarth - 1.8-1 - Update to 1.8 (log symbolic host name together with numeric IP address) - Add missing function strlcat from openbsd libc - Fix %%postun to restart the milter properly on package upgrades - Use %%{_initddir} rather than the deprecated %%{_initrddir} where possible * Sat Jul 25 2009 Fedora Release Engineering - 1.7-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Wed Feb 25 2009 Fedora Release Engineering - 1.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Fri Feb 13 2009 Paul Howarth - 1.7-4 - Rebuild for shared libmilter in Fedora 11 development * Mon Feb 18 2008 Paul Howarth - 1.7-3 - Support config files with more than 507 rules (#304071) * Wed Aug 22 2007 Paul Howarth - 1.7-2 - Rebuild for BuildID inclusion (http://fedoraproject.org/wiki/Releases/FeatureBuildId) * Mon Aug 6 2007 Paul Howarth - 1.7-1 - Update to 1.7 (sendmail macro filtering support added) - Tarball now includes a versioned directory name - Split milter-regex.conf out from being a here document in the spec and have it as a separate source file instead - Unexpand tabs - Use the standard scriptlet for user/group creation in %%pre - Use %%{_initrddir} rather than %%{_sysconfdir}/rc.d/init.d for initscript - Use %%{__install} rather than %%{__cp} in %%install - Drop scriptlet dependencies on /sbin/service by calling initscript directly - LSB-ize initscript (#246983) * Wed Apr 18 2007 Paul Howarth - 1.6-7 - Add patch for compile errors on Fedora 7 - Use sed rather than perl for quick scripted edits * Tue Aug 29 2006 Paul Howarth - 1.6-6 - Rebuild for dynamic linking speedups (FE6) * Thu May 25 2006 Paul Howarth - 1.6-5 - Address issues raised in review (#189611) - Add sendmail dependency - Honor %%{optflags} * Fri Apr 21 2006 Paul Howarth - 1.6-4 - Minor cosmetic changes for resubmission for Fedora Extras * Fri Nov 18 2005 Paul Howarth - 1.6-3 - Remove redundant ver_ and rel_ macros - Don't include package name in the summary - Use macros consistently - Generate LICENSE file in %%prep rather than %%install - Don't strip binary, so debuginfo package is useful - Combine groupadd+useradd into a single useradd command - Use /sbin/nologin for mregex shell instead of non-existent /bin/nologin - Don't delete user+group on package removal (see http://www.redhat.com/archives/fedora-extras-commits/2005-June/msg00271.html) - Install initscript in %%{_sysconfdir} rather than /etc/init.d - Don't enable service by default on installation - Add scriptlet dependencies - Add buildreq groff - Use full URL for source - Edit username in man page as well as in code - Use install rather than cp to install %%{SOURCE1} and %%{SOURCE2} so that permissions don't need to be set in SRPM - Ghost the socket for clean package removal - Buildreq sendmail-devel ≥ 8.13.0 because of the use of SMFIF_QUARANTINE - Use dist tag * Tue Jan 25 2005 Victor Ramirez - 1.6-2 - Initial rpm release - Modified user and configuration file location.