# Red Hat Linux specific release extraction %define DISTRO %([ -f /etc/redhat-release ] && sed -e "s/\\(.\\+\\)\\( Linux release \\)\\(.\\+\\)\\( .\\+\\)/\\1 \\3/" /etc/redhat-release) %define DISTRO_REL %([ -f /etc/redhat-release ] && sed -e "s/\\(.\\+ release \\)\\(.\\+\\)\\( .\\+\\)/\\2/" /etc/redhat-release) %define REQ_RPM_REL %(rpm -q --queryformat "%{VERSION}" rpm) %define GLIBC_REL %(rpm -q --queryformat "%{VERSION}" glibc) %define USE_DB3 %(if echo %{DISTRO_REL} | grep -q ^7; then echo 1; fi) # Special version %define myversion AERAsec.6 %define copy_cmd copy() { ln -f "$1" "$2" 2>/dev/null || cp -df "$1" "$2"; } %define ROOT /var/spool/postfix %define LDAP 1 %define MYSQL 0 %define PCRE 1 %define SASL 1 %define TLS 1 %define IPV6 1 %define SMTPD_MULTILINE_GREETING 0 %define POSTDROP_GID 90 # If set to 1 if official version, 0 if snapshot %define official 0 %define ver 1.1.11 %define releasedate 20021029 %define alternatives 1 %if %{official} Version: %{ver} %define ftp_directory official %else Version: %{ver}.%{releasedate} %define ftp_directory experimental %endif %define tlsno pfixtls-0.8.11a-1.1.11-0.9.6d %define tlsipv6no 1.7/tls+ipv6-1.7pre3-pf-%{ver}-%{releasedate} # Postfix requires one exlusive uid/gid and a 2nd exclusive gid for its own # use. Let me know if the second gid collides with another package. # Be careful: Redhat's 'mail' user & group isn't unique! %define postfix_uid 89 %define postfix_gid 89 %define maildrop_group postdrop %define maildrop_gid %{POSTDROP_GID} Name: postfix Group: System Environment/Daemons URL: http://www.postfix.org License: IBM Public License PreReq: /sbin/chkconfig, /sbin/service, sh-utils PreReq: fileutils, textutils, %if %alternatives PreReq: /usr/sbin/alternatives %else Obsoletes: sendmail exim qmail %endif PreReq: %{_sbindir}/groupadd, %{_sbindir}/useradd Epoch: 2 Provides: MTA smtpd smtpdaemon /usr/bin/newaliases Release: 5.%{DISTRO_REL}.%{myversion} Summary: Postfix Mail Transport Agent %if %{official} Source0: ftp://ftp.porcupine.org/mirrors/postfix-release/%{ftp_directory}/%{name}-%{version}.tar.bz2 %else Source0: ftp://ftp.porcupine.org/mirrors/postfix-release/%{ftp_directory}/%{name}-%{ver}-%{releasedate}.tar.gz %endif Source3: postfix-etc-init.d-postfix Source5: postfix-aliases Source6: postfix-chroot-setup.awk Source9: ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/%{tlsno}.tar.bz2 Source10: postfix-smtpd.conf Source11: README-Postifx-SASL-RedHat.txt Patch1: postfix-config.patch Patch2: postfix-smtp_sasl_proto.c.patch Patch3: postfix-alternatives.patch Patch4: postfix-1.1.4-sasl2-patch Patch10: ftp://ftp.stack.nl/pub/postfix/tls+ipv6/%{tlsipv6no}.patch # Optional patches - set the appropriate environment variables to include # them when building the package/spec file # applied if %SMTPD_MULTILINE_GREETING=1 Patch99: postfix-smtpd_multiline_greeting.patch BuildRoot: %{_tmppath}/%{name}-buildroot # Determine the different packages required for building postfix BuildRequires: gawk, perl, sed, ed %if %{USE_DB3} BuildRequires: db3-devel %else BuildRequires: db4-devel %endif %if %{LDAP} BuildRequires: openldap >= 1.2.9, openldap-devel >= 1.2.9 %endif %if %{PCRE} Requires: pcre BuildRequires: pcre, pcre-devel %endif %if %{MYSQL} Requires: mysql, mysqlclient9 BuildRequires: mysql, mysqlclient9, mysql-devel %endif %if %{SASL} Requires: cyrus-sasl BuildRequires: cyrus-sasl, cyrus-sasl-devel %endif %if %{IPV6} %define TLS 1 %endif %if %{TLS} Requires: openssl BuildRequires: openssl-devel %endif Provides: /usr/sbin/sendmail /usr/bin/mailq /usr/bin/rmail %description Postfix is a Mail Transport Agent (MTA), supporting LDAP, SMTP AUTH (SASL), TLS, IPv6 and running in a chroot environment. %prep umask 022 %if %{official} %setup -q -a 9 %else %setup -q -a 9 -n %{name}-%{ver}-%{releasedate} %endif # Apply the TLS patch, must be at first, because the changes of master.cf %if %{TLS} if [ "%{IPV6}" = "0" ]; then patch -p1 <%{tlsno}/pfixtls.diff fi %endif # Apply the IPv6+TLS patch %if %{IPV6} patch -p1 <%{P:10} %endif # Apply obligatory patches %patch1 -p1 -b .config %patch2 -p1 -b .auth %if %alternatives %patch3 -p1 -b .alternatives %endif # Apply the SASL2 patch to make postfix work correctly with SASL2. #%patch4 -p1 -b .sasl2 # Apply optional patches # Apply my SMTPD Multiline greeting patch %if %{SMTPD_MULTILINE_GREETING} %patch99 -p1 -b .multiline %endif # Move around the TLS docs %if %{TLS} mkdir html/TLS mv %{tlsno}/doc/* html/TLS for i in ACKNOWLEDGEMENTS CHANGES INSTALL README TODO; do mv %{tlsno}/$i $i.TLS done %endif # setup master.cf to be chrooted mv conf/master.cf conf/master.cf-nochroot awk -f %{_sourcedir}/postfix-chroot-setup.awk < conf/master.cf-nochroot > conf/master.cf %build umask 022 CCARGS= #CCARGS="-DDEBUG6" AUXLIBS= %ifarch s390 s390x ppc CCARGS="${CCARGS} -fsigned-char" %endif %if %{LDAP} CCARGS="${CCARGS} -DHAS_LDAP" AUXLIBS="${AUXLIBS} -L/usr/lib -lldap -llber" %endif %if %{PCRE} # -I option required for pcre 3.4 (and later?) CCARGS="${CCARGS} -DHAS_PCRE -I/usr/include/pcre" AUXLIBS="${AUXLIBS} -lpcre" %endif %if %{MYSQL} CCARGS="${CCARGS} -DHAS_MYSQL -I/usr/include/mysql" AUXLIBS="${AUXLIBS} -L/usr/lib/mysql -lmysqlclient -lm" %endif %if %{SASL} CCARGS="${CCARGS} -DUSE_SASL_AUTH" AUXLIBS="${AUXLIBS} -lsasl" %endif %if %{TLS} LIBS= CCARGS="${CCARGS} -DHAS_SSL -I/usr/include/openssl" AUXLIBS="${AUXLIBS} -lssl -lcrypto" %endif export CCARGS AUXLIBS make -f Makefile.init makefiles unset CCARGS AUXLIBS make DEBUG="" OPT="$RPM_OPT_FLAGS" %install umask 022 /bin/rm -rf $RPM_BUILD_ROOT /bin/mkdir -p $RPM_BUILD_ROOT # install postfix into $RPM_BUILD_ROOT sh postfix-install -non-interactive \ install_root=$RPM_BUILD_ROOT \ config_directory=%{_sysconfdir}/postfix \ daemon_directory=%{_libexecdir}/postfix \ command_directory=%{_sbindir} \ queue_directory=%{_var}/spool/postfix \ sendmail_path=%{_sbindir}/sendmail.postfix \ newaliases_path=%{_bindir}/newaliases.postfix \ mailq_path=%{_bindir}/mailq.postfix \ mail_owner=postfix \ setgid_group=%{maildrop_group} \ manpage_directory=%{_mandir} \ sample_directory=/samples \ readme_directory=%{_docdir}/%{name}-%{version}/README_FILES || exit 1 rm -fr ./samples mv $RPM_BUILD_ROOT/samples . # Change alias_maps and alias_database default directory to %{_sysconfdir}/postfix bin/postconf -c $RPM_BUILD_ROOT%{_sysconfdir}/postfix -e \ "alias_maps = hash:%{_sysconfdir}/postfix/aliases" \ "alias_database = hash:%{_sysconfdir}/postfix/aliases" \ || exit 1 # This installs into the /etc/rc.d/init.d directory /bin/mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d install -c %{_sourcedir}/postfix-etc-init.d-postfix \ $RPM_BUILD_ROOT/etc/rc.d/init.d/postfix # These set up the chroot directory structure mkdir -p $RPM_BUILD_ROOT%{_var}/spool/postfix/etc mkdir -p $RPM_BUILD_ROOT%{_var}/spool/postfix/lib mkdir -p $RPM_BUILD_ROOT%{_var}/spool/postfix/usr/lib/zoneinfo install -c auxiliary/rmail/rmail $RPM_BUILD_ROOT%{_bindir}/rmail # copy new aliases files and generate a ghost aliases.db file cp -f %{_sourcedir}/postfix-aliases $RPM_BUILD_ROOT%{_sysconfdir}/postfix/aliases chmod 644 $RPM_BUILD_ROOT%{_sysconfdir}/postfix/aliases touch $RPM_BUILD_ROOT/%{_sysconfdir}/postfix/aliases.db for i in active bounce corrupt defer deferred flush incoming private saved maildrop public pid; do mkdir -p $RPM_BUILD_ROOT%{_var}/spool/postfix/$i done # install smtp-sink/smtp-source by hand for i in smtp-sink smtp-source; do install -c -m 755 bin/$i $RPM_BUILD_ROOT%{_sbindir}/ done # Move stuff around so we don't conflict with sendmail mv $RPM_BUILD_ROOT%{_bindir}/rmail $RPM_BUILD_ROOT%{_bindir}/rmail.postfix mv $RPM_BUILD_ROOT%{_mandir}/man1/mailq.1 $RPM_BUILD_ROOT%{_mandir}/man1/mailq.postfix.1 mv $RPM_BUILD_ROOT%{_mandir}/man1/newaliases.1 $RPM_BUILD_ROOT%{_mandir}/man1/newaliases.postfix.1 mv $RPM_BUILD_ROOT%{_mandir}/man5/aliases.5 $RPM_BUILD_ROOT%{_mandir}/man5/aliases.postfix.5 # RPM compresses man pages automatically. # - Edit postfix-files to reflect this, so post-install won't get confused # when called during package installation. ed $RPM_BUILD_ROOT%{_sysconfdir}/postfix/postfix-files <.*,,"` if [ -e "/lib/$DBVER" ]; then copy "/lib/$DBVER" %{ROOT}/lib fi %pre # Add user and groups if necessary %{_sbindir}/groupadd -g %{maildrop_gid} -r %{maildrop_group} 2>/dev/null || : %{_sbindir}/groupadd -g %{postfix_gid} -r postfix 2>/dev/null || : %{_sbindir}/groupadd -g 12 -r mail 2>/dev/null || : %{_sbindir}/useradd -d %{_var}/spool/postfix -s /sbin/nologin -g postfix -G mail -M -r -u %{postfix_uid} postfix 2>/dev/null || : %preun umask 022 # selectively remove the rest of the queue directory structure # first remove the "queues" (and assume the hash depth is still 2) queue_directory_remove () { for dir in active bounce defer deferred flush incoming; do for a in 0 1 2 3 4 5 6 7 8 9 A B C D E F; do test -d $dir/$a && { for b in 0 1 2 3 4 5 6 7 8 9 A B C D E F; do test -d $dir/$a/$b && ( /bin/rm -f $dir/$a/$b/* /bin/rmdir $dir/$a/$b ) done /bin/rmdir $dir/$a || echo "WARNING: preun - unable to remove directory %{_var}/spool/postfix/$dir/$a" } done /bin/rmdir $dir || echo "WARNING: preun - unable to remove directory %{_var}/spool/postfix/$dir" done # now remove the other directories for dir in corrupt maildrop pid private public saved; do test -d $dir && { /bin/rm -f $dir/* /bin/rmdir $dir || echo "WARNING: preun - unable to remove directory %{_var}/spool/postfix/$dir" } done } if [ "$1" = 0 ]; then # stop postfix silently, but only if it's running /sbin/service postfix stop &>/dev/null /sbin/chkconfig --del postfix %if %alternatives /usr/sbin/alternatives --remove mta %{_sbindir}/sendmail.postfix %endif cd %{_var}/spool/postfix && { # Clean up chroot environment rm -rf %{ROOT}/lib %{ROOT}/usr %{ROOT}/etc queue_directory_remove } true # to ensure we exit safely fi # Remove unneeded symbolic links for i in samples; do test -L %{_sysconfdir}/postfix/$i && rm %{_sysconfdir}/postfix/$i || true done %postun if [ "$1" != 0 ]; then /sbin/service postfix condrestart 2>&1 > /dev/null fi exit 0 %clean /bin/rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root) %verify(not md5 size mtime) %config %dir %{_sysconfdir}/postfix %attr(0755, root, root) %config %{_sysconfdir}/postfix/postfix-script %attr(0755, root, root) %config %{_sysconfdir}/postfix/post-install %attr(0644, root, root) %{_sysconfdir}/postfix/postfix-files %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/main.cf %attr(0644, root, root) %{_sysconfdir}/postfix/main.cf.default %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/master.cf %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/access %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/aliases %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/aliases.db %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/canonical %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/pcre_table %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/regexp_table %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/relocated %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/transport %attr(0644, root, root) %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/postfix/virtual #%dir %attr(-, root, root) %{_sysconfdir}/postfix/README_FILES #%attr(0644, root, root) %{_sysconfdir}/postfix/README_FILES/* %attr(0755, root, root) %config /etc/rc.d/init.d/postfix %dir %verify(not md5 size mtime) %{_var}/spool/postfix %dir %attr(-, root, root) %verify(not md5 size mtime) %{_var}/spool/postfix/etc %dir %attr(-, root, root) %verify(not md5 size mtime) %{_var}/spool/postfix/lib %attr(-, root, root) %verify(not md5 size mtime) %{_var}/spool/postfix/usr # For correct directory permissions check postfix-install script %dir %attr(0700, postfix, root) %verify(not md5 size mtime) %{_var}/spool/postfix/active %dir %attr(0700, postfix, root) %verify(not md5 size mtime) %{_var}/spool/postfix/bounce %dir %attr(0700, postfix, root) %verify(not md5 size mtime) %{_var}/spool/postfix/corrupt %dir %attr(0700, postfix, root) %verify(not md5 size mtime) %{_var}/spool/postfix/defer %dir %attr(0700, postfix, root) %verify(not md5 size mtime) %{_var}/spool/postfix/deferred %dir %attr(0700, postfix, root) %verify(not md5 size mtime) %{_var}/spool/postfix/flush %dir %attr(0700, postfix, root) %verify(not md5 size mtime) %{_var}/spool/postfix/incoming %dir %attr(0700, postfix, root) %verify(not md5 size mtime) %{_var}/spool/postfix/private %dir %attr(0700, postfix, root) %verify(not md5 size mtime) %{_var}/spool/postfix/saved %dir %attr(0730, postfix, %{maildrop_group}) %verify(not md5 size mtime) %{_var}/spool/postfix/maildrop %dir %attr(0710, postfix, %{maildrop_group}) %verify(not md5 size mtime) %{_var}/spool/postfix/public %dir %attr(0755, root, root) %verify(not md5 size mtime) %{_var}/spool/postfix/pid %doc 0README COMPATIBILITY HISTORY INSTALL LICENSE PORTING RELEASE_NOTES README-Postifx-SASL-RedHat.txt %if %{TLS} %doc ACKNOWLEDGEMENTS.TLS CHANGES.TLS README.TLS TODO.TLS html/TLS/* %endif %doc html %doc samples %doc README_FILES %{_libdir}/sasl/smtpd.conf %dir %attr(0755, root, root) %verify(not md5 size mtime) %{_libexecdir}/postfix %{_libexecdir}/postfix/bounce %{_libexecdir}/postfix/cleanup %{_libexecdir}/postfix/error %{_libexecdir}/postfix/flush %{_libexecdir}/postfix/lmtp %{_libexecdir}/postfix/local %{_libexecdir}/postfix/master %{_libexecdir}/postfix/nqmgr %{_libexecdir}/postfix/pickup %{_libexecdir}/postfix/pipe %{_libexecdir}/postfix/qmgr %{_libexecdir}/postfix/qmqpd %{_libexecdir}/postfix/showq %{_libexecdir}/postfix/smtp %{_libexecdir}/postfix/smtpd %{_libexecdir}/postfix/spawn %{_libexecdir}/postfix/trivial-rewrite %{_libexecdir}/postfix/virtual %if %{TLS} %{_libexecdir}/postfix/tlsmgr %endif %{_sbindir}/postalias %{_sbindir}/postcat %{_sbindir}/postconf %attr(2755,root,%{maildrop_group}) %{_sbindir}/postdrop %attr(2755,root,%{maildrop_group}) %{_sbindir}/postqueue %{_sbindir}/postfix %{_sbindir}/postkick %{_sbindir}/postlock %{_sbindir}/postlog %{_sbindir}/postmap %{_sbindir}/postsuper %{_sbindir}/smtp-sink %{_sbindir}/smtp-source %{_sbindir}/sendmail.postfix %{_bindir}/mailq.postfix %{_bindir}/newaliases.postfix %attr(0755, root, root) %{_bindir}/rmail.postfix %{_mandir}/*/* %changelog * Sun Nov 3 2002 Dr. Peter Bieringer - Update to postfix snapshot 1.1.11-20021029 - Update IPv6+TLS patch - Add db autodetection to support RHL 7.x (db3) and 8.x (db4) * Wed Oct 27 2002 Dr. Peter Bieringer - Update to postfix snapshot 1.1.11-20020928 - Add IPv6+TLS patch - Disable extra SASL2 and MULTILINEGREETING patch because of conflicts * Wed Sep 11 2002 Dr. Peter Bieringer - Enable LDAP, downgrade to db3 * Wed Jul 24 2002 Karsten Hopp - make aliases.db config(noreplace) (#69612) * Tue Jul 23 2002 Karsten Hopp - postfix has its own filelist, remove LICENSE entry from it (#69069) * Tue Jul 16 2002 Karsten Hopp - fix shell in /etc/passwd (#68373) - fix documentation in /etc/postfix (#65858) - Provides: /usr/bin/newaliases (#66746) - fix autorequires by changing /usr/local/bin/perl to /usr/bin/perl in a script in %%doc (#68852), although I don't think this is necessary anymore * Mon Jul 15 2002 Phil Knirsch - Fixed missing smtpd.conf file for SASL support and included SASL Postfix Red Hat HOWTO (#62505). - Included SASL2 support patch (#68800). * Mon Jun 24 2002 Karsten Hopp - 1.1.11, TLS 0.8.11a - fix #66219 and #66233 (perl required for %%post) * Fri Jun 21 2002 Tim Powers - automated rebuild * Sun May 26 2002 Tim Powers - automated rebuild * Thu May 23 2002 Bernhard Rosenkraenzer 1.1.10-1 - 1.1.10, TLS 0.8.10 - Build with db4 - Enable SASL * Mon Apr 15 2002 Bernhard Rosenkraenzer 1.1.7-2 - Fix bugs #62358 and #62783 - Make sure libdb-3.3.so is in the chroot jail (#62906) * Mon Apr 8 2002 Bernhard Rosenkraenzer 1.1.7-1 - 1.1.7, fixes 2 critical bugs - Make sure there's a resolv.conf in the chroot jail * Wed Mar 27 2002 Bernhard Rosenkraenzer 1.1.5-3 - Add Provides: lines for alternatives stuff (#60879) * Tue Mar 26 2002 Nalin Dahyabhai 1.1.5-2 - rebuild * Tue Mar 26 2002 Bernhard Rosenkraenzer 1.1.5-1 - 1.1.5 (bugfix release) - Rebuild with current db * Thu Mar 14 2002 Bill Nottingham 1.1.4-3 - remove db trigger, it's both dangerous and pointless - clean up other triggers a little * Wed Mar 13 2002 Bernhard Rosenkraenzer 1.1.4-2 - Some trigger tweaks to make absolutely sure /etc/services is in the chroot jail * Mon Mar 11 2002 Bernhard Rosenkraenzer 1.1.4-1 - 1.1.4 - TLS 0.8.4 - Move postalias run from %%post to init script to work around anaconda being broken. * Fri Mar 8 2002 Bill Nottingham 1.1.3-5 - use alternatives --initscript support * Thu Feb 28 2002 Bill Nottingham 1.1.3-4 - run alternatives --remove in %%preun - add various prereqs * Thu Feb 28 2002 Nalin Dahyabhai 1.1.3-3 - adjust the default postfix-files config file to match the alternatives setup by altering the arguments passed to post-install in the %%install phase (otherwise, it might point to sendmail's binaries, breaking it rather rudely) - adjust the post-install script so that it silently uses paths which have been modified for use with alternatives, for upgrade cases where the postfix-files configuration file isn't overwritten - don't forcefully strip files -- that's a build root policy - remove hard requirement on openldap, library dependencies take care of it - redirect %%postun to /dev/null - don't remove the postfix user and group when the package is removed * Wed Feb 20 2002 Bernhard Rosenkraenzer 1.1.3-2 - listen on 127.0.0.1 only by default (#60071) - Put config samples in %{_docdir}/%{name}-%{version} rather than /etc/postfix (#60072) - Some spec file cleanups * Tue Feb 19 2002 Bernhard Rosenkraenzer 1.1.3-1 - 1.1.3, TLS 0.8.3 - Fix updating - Don't run the statistics cron job - remove requirement on perl Date::Calc * Thu Jan 31 2002 Bernhard Rosenkraenzer 1.1.2-3 - Fix up alternatives stuff * Wed Jan 30 2002 Bernhard Rosenkraenzer 1.1.2-2 - Use alternatives * Sun Jan 27 2002 Bernhard Rosenkraenzer 1.1.2-1 - Initial Red Hat Linux packaging, based on spec file from Simon J Mudd - Changes from that: - Set up chroot environment in triggers to make sure we catch glibc errata - Remove some hacks to support building on all sorts of distributions at the cost of specfile readability - Remove postdrop group on deletion