diff --git a/ChangeLog b/ChangeLog index dad5f68..473e2c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,19 @@ E-MailRelay Change Log ====================== +0.9.9 -> 1.0.0 +-------------- +* Briefer "--help" output; works with "--verbose". +* Option to listen on a specific network interface ("--interface"). +* Option for an external address verifier program ("--verifier"). +* Some Linux Standard Base stuff added to the "init.d" script. +* Pid files world-readable and deleted on abnormal termination. +* Compiles with gcc 3.0 and intel 6.0. +* Autoconf tweak for MacOS X. +* Corrected the "Received:" typo [bug-id 572236]. +* EHLO response parsing is now case-insensitive [bug-id 561522]. +* Fewer missing-secrets warnings [bug-id 564987]. + 0.9.8 -> 0.9.9 -------------- * More flexible logging options ("--verbose" and "--debug" work better). diff --git a/INSTALL b/INSTALL index cb1f796..a1a5ca9 100644 --- a/INSTALL +++ b/INSTALL @@ -1,16 +1,20 @@ Introduction ============ + What follows are generic installation instructions for doing a standard GNU "./configure; make; make install" installation from source under Linux, FreeBSD etc. The Windows installation instructions are in a separate document. - Note that a non-standard "configure" switch is available, "--enable-fhs", -which overrides all other directory modifiers, forcing compliance with the File -Hierarchy Standard. There are also a set of variables which can be defined on -the "configure" command line for controlling all the installation directories -in more detail, augmenting the standard command-line switches like "--sbindir" -and "--libexecdir". For more information refer to the E-MailRelay reference -document. + A non-standard "configure" switch is available, "--enable-fhs", which overrides +all other directory modifiers, forcing compliance with the File Hierarchy Standard. +This switch is used in building the RPMs, and may become the default in future +releases. + + There are also a set of variables which can be defined on the "configure" command +line for controlling all the installation directories in more detail, augmenting +the standard command-line switches like "--sbindir" and "--libexecdir". For more +information refer to the E-MailRelay reference document under +"Files and directories". The E-MailRelay user guide describes what needs to be done after the "make install" in order to get the emailrelay daemon to start up at boot-time, @@ -18,6 +22,7 @@ automatically forward e-mail and bounce failed mail. Basic Installation ================== + The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. diff --git a/Makefile.am b/Makefile.am index 464720b..936832e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,4 +21,6 @@ SUBDIRS = src bin lib doc e_doc_DATA = NEWS README changelog.gz CLEANFILES = changelog.gz changelog.gz: ChangeLog - if test -n "$(GZIP)" ; then $(GZIP) -c $< > changelog.tmp && mv changelog.tmp changelog.gz ; fi + if test -n "$(GZIP)" ; then $(GZIP) -c $(top_srcdir)/ChangeLog > changelog.tmp && mv changelog.tmp changelog.gz ; fi +uninstall-local: + -rmdir $(DESTDIR)$(e_docdir) 2>/dev/null diff --git a/Makefile.in b/Makefile.in index 312f5d4..2d21618 100644 --- a/Makefile.in +++ b/Makefile.in @@ -79,6 +79,7 @@ POST_UNINSTALL = : AR = @AR@ AWK = @AWK@ CC = @CC@ +COMPILER_VERSION = @COMPILER_VERSION@ CXX = @CXX@ GZIP = @GZIP@ HAVE_DOXYGEN = @HAVE_DOXYGEN@ @@ -346,7 +347,7 @@ install-data: install-data-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am install: install-recursive -uninstall-am: uninstall-e_docDATA +uninstall-am: uninstall-e_docDATA uninstall-local uninstall: uninstall-recursive all-am: Makefile $(DATA) config.h all-redirect: all-recursive-am @@ -398,12 +399,15 @@ maintainer-clean-recursive tags tags-recursive mostlyclean-tags \ distclean-tags clean-tags maintainer-clean-tags distdir info-am info \ dvi-am dvi check check-am installcheck-am installcheck all-recursive-am \ install-exec-am install-exec install-data-am install-data install-am \ -install uninstall-am uninstall all-redirect all-am all installdirs-am \ -installdirs mostlyclean-generic distclean-generic clean-generic \ -maintainer-clean-generic clean mostlyclean distclean maintainer-clean +install uninstall-local uninstall-am uninstall all-redirect all-am all \ +installdirs-am installdirs mostlyclean-generic distclean-generic \ +clean-generic maintainer-clean-generic clean mostlyclean distclean \ +maintainer-clean changelog.gz: ChangeLog - if test -n "$(GZIP)" ; then $(GZIP) -c $< > changelog.tmp && mv changelog.tmp changelog.gz ; fi + if test -n "$(GZIP)" ; then $(GZIP) -c $(top_srcdir)/ChangeLog > changelog.tmp && mv changelog.tmp changelog.gz ; fi +uninstall-local: + -rmdir $(DESTDIR)$(e_docdir) 2>/dev/null # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/NEWS b/NEWS index 5589d96..ae51f8d 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1 @@ - -To do... -* optionally enforce authentication by clients -* OS-X port -* better windows gui (esp. client side) -* sample pre-processor script for spamassassin - +no news diff --git a/README b/README index fbb5d58..510eba8 100644 --- a/README +++ b/README @@ -12,8 +12,8 @@ than to a local postmaster. Because of this functional simplicity it is extremely easy to configure, typically only requiring the address of the next-hop SMTP server to be put on the command line. -C++ source code is available for Linux, FreeBSD and Windows. Distribution is -under the GNU General Public License. +C++ source code is available for Linux, FreeBSD (etc) and Windows. +Distribution is under the GNU General Public License. Quick start ----------- @@ -78,11 +78,12 @@ and ported to Windows 98 using: The code has also been built successfully on: * Windows NT 4.0 +* MacOS X +* FreeBSD on Intel hardware +* Solaris 8, using gcc, on Sparc hardware * Linux on Alpha hardware (Debian 2.2) * Linux on Sparc hardware * Linux on RS6000 PPC hardware -* FreeBSD on Intel hardware -* Solaris, using gcc, on Sparc hardware Feedback diff --git a/acinclude.m4 b/acinclude.m4 index e25740e..cd100c7 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -18,6 +18,62 @@ dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dnl dnl === +dnl derived from lars brinkhoff... +AC_DEFUN(ACLOCAL_TYPE_SOCKLEN_T, +[AC_CACHE_CHECK([for socklen_t], aclocal_cv_type_socklen_t, +[ + AC_TRY_COMPILE( + [#include +#include ], + [socklen_t len = 42; return len;], + aclocal_cv_type_socklen_t=yes, + aclocal_cv_type_socklen_t=no) +]) + if test $aclocal_cv_type_socklen_t = yes; then + AC_DEFINE(HAVE_SOCKLEN_T, 1,[Define if socklen_t type definition in sys/socket.h]) + else + AC_DEFINE(HAVE_SOCKLEN_T, 0,[Define if socklen_t type definition in sys/socket.h]) + fi +]) + +AC_DEFUN([ACLOCAL_CHECK_GMTIME_R], +[AC_CACHE_CHECK([for gmtime_r], aclocal_cv_gmtime_r, +[ + AC_TRY_COMPILE( + [#include ], + [gmtime_r((time_t*)0,(struct tm*)0) ;], + aclocal_cv_gmtime_r=yes , + aclocal_cv_gmtime_r=no ) +]) + if test $aclocal_cv_gmtime_r = yes; then + AC_DEFINE(HAVE_GMTIME_R,1,[Define if gmtime_r in time.h]) + else + AC_DEFINE(HAVE_GMTIME_R,0,[Define if gmtime_r in time.h]) + fi +]) + +AC_DEFUN([ACLOCAL_CHECK_LOCALTIME_R], +[AC_CACHE_CHECK([for localtime_r], aclocal_cv_localtime_r, +[ + AC_TRY_COMPILE( + [#include ], + [localtime_r((time_t*)0,(struct tm*)0) ;], + aclocal_cv_localtime_r=yes , + aclocal_cv_localtime_r=no ) +]) + if test $aclocal_cv_localtime_r = yes; then + AC_DEFINE(HAVE_LOCALTIME_R,1,[Define if localtime_r in time.h]) + else + AC_DEFINE(HAVE_LOCALTIME_R,0,[Define if localtime_r in time.h]) + fi +]) + +AC_DEFUN([ACLOCAL_COMPILER_VERSION], +[ + COMPILER_VERSION=`$CXX --version 2>/dev/null | sed 's/\./ /;s/\..*//;s/ /\./;s/ .*//;s/^/gcc/'` + AC_SUBST(COMPILER_VERSION) +]) + AC_DEFUN([ENABLE_FHS], [ if test "$enable_fhs" = "yes" diff --git a/aclocal.m4 b/aclocal.m4 index bfc41fc..ab7c840 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -30,6 +30,62 @@ dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dnl dnl === +dnl derived from lars brinkhoff... +AC_DEFUN(ACLOCAL_TYPE_SOCKLEN_T, +[AC_CACHE_CHECK([for socklen_t], aclocal_cv_type_socklen_t, +[ + AC_TRY_COMPILE( + [#include +#include ], + [socklen_t len = 42; return len;], + aclocal_cv_type_socklen_t=yes, + aclocal_cv_type_socklen_t=no) +]) + if test $aclocal_cv_type_socklen_t = yes; then + AC_DEFINE(HAVE_SOCKLEN_T, 1,[Define if socklen_t type definition in sys/socket.h]) + else + AC_DEFINE(HAVE_SOCKLEN_T, 0,[Define if socklen_t type definition in sys/socket.h]) + fi +]) + +AC_DEFUN([ACLOCAL_CHECK_GMTIME_R], +[AC_CACHE_CHECK([for gmtime_r], aclocal_cv_gmtime_r, +[ + AC_TRY_COMPILE( + [#include ], + [gmtime_r((time_t*)0,(struct tm*)0) ;], + aclocal_cv_gmtime_r=yes , + aclocal_cv_gmtime_r=no ) +]) + if test $aclocal_cv_gmtime_r = yes; then + AC_DEFINE(HAVE_GMTIME_R,1,[Define if gmtime_r in time.h]) + else + AC_DEFINE(HAVE_GMTIME_R,0,[Define if gmtime_r in time.h]) + fi +]) + +AC_DEFUN([ACLOCAL_CHECK_LOCALTIME_R], +[AC_CACHE_CHECK([for localtime_r], aclocal_cv_localtime_r, +[ + AC_TRY_COMPILE( + [#include ], + [localtime_r((time_t*)0,(struct tm*)0) ;], + aclocal_cv_localtime_r=yes , + aclocal_cv_localtime_r=no ) +]) + if test $aclocal_cv_localtime_r = yes; then + AC_DEFINE(HAVE_LOCALTIME_R,1,[Define if localtime_r in time.h]) + else + AC_DEFINE(HAVE_LOCALTIME_R,0,[Define if localtime_r in time.h]) + fi +]) + +AC_DEFUN([ACLOCAL_COMPILER_VERSION], +[ + COMPILER_VERSION=`$CXX --version 2>/dev/null | sed 's/\./ /;s/\..*//;s/ /\./;s/ .*//;s/^/gcc/'` + AC_SUBST(COMPILER_VERSION) +]) + AC_DEFUN([ENABLE_FHS], [ if test "$enable_fhs" = "yes" diff --git a/bin/Makefile.am b/bin/Makefile.am index b3a9cdc..421bd64 100644 --- a/bin/Makefile.am +++ b/bin/Makefile.am @@ -37,9 +37,12 @@ emailrelay: emailrelay.sh cp emailrelay.sh emailrelay chmod ugo+x emailrelay -install-data-local: +install-data-local: install-e_examplesDATA install-e_initSCRIPTS chmod ugo+x $(DESTDIR)$(e_examplesdir)/emailrelay-notify.sh chmod ugo+x $(DESTDIR)$(e_examplesdir)/emailrelay-resubmit.sh chmod ugo+x $(DESTDIR)$(e_examplesdir)/emailrelay-deliver.sh chmod ugo+x $(DESTDIR)$(e_examplesdir)/emailrelay-process.sh +uninstall-local: + -rmdir $(DESTDIR)$(e_examplesdir) 2>/dev/null + diff --git a/bin/Makefile.in b/bin/Makefile.in index 8d8a597..368c09b 100644 --- a/bin/Makefile.in +++ b/bin/Makefile.in @@ -79,6 +79,7 @@ POST_UNINSTALL = : AR = @AR@ AWK = @AWK@ CC = @CC@ +COMPILER_VERSION = @COMPILER_VERSION@ CXX = @CXX@ GZIP = @GZIP@ HAVE_DOXYGEN = @HAVE_DOXYGEN@ @@ -232,7 +233,8 @@ install-data: install-data-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am install: install-am -uninstall-am: uninstall-e_initSCRIPTS uninstall-e_examplesDATA +uninstall-am: uninstall-e_initSCRIPTS uninstall-e_examplesDATA \ + uninstall-local uninstall: uninstall-am all-am: Makefile $(SCRIPTS) $(DATA) all-redirect: all-am @@ -274,10 +276,10 @@ maintainer-clean: maintainer-clean-am uninstall-e_examplesDATA install-e_examplesDATA tags distdir \ check-TESTS info-am info dvi-am dvi check check-am installcheck-am \ installcheck install-exec-am install-exec install-data-local \ -install-data-am install-data install-am install uninstall-am uninstall \ -all-redirect all-am all installdirs mostlyclean-generic \ -distclean-generic clean-generic maintainer-clean-generic clean \ -mostlyclean distclean maintainer-clean +install-data-am install-data install-am install uninstall-local \ +uninstall-am uninstall all-redirect all-am all installdirs \ +mostlyclean-generic distclean-generic clean-generic \ +maintainer-clean-generic clean mostlyclean distclean maintainer-clean .sh_.sh: @@ -288,12 +290,15 @@ emailrelay: emailrelay.sh cp emailrelay.sh emailrelay chmod ugo+x emailrelay -install-data-local: +install-data-local: install-e_examplesDATA install-e_initSCRIPTS chmod ugo+x $(DESTDIR)$(e_examplesdir)/emailrelay-notify.sh chmod ugo+x $(DESTDIR)$(e_examplesdir)/emailrelay-resubmit.sh chmod ugo+x $(DESTDIR)$(e_examplesdir)/emailrelay-deliver.sh chmod ugo+x $(DESTDIR)$(e_examplesdir)/emailrelay-process.sh +uninstall-local: + -rmdir $(DESTDIR)$(e_examplesdir) 2>/dev/null + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/bin/emailrelay-doxygen-filter.sh_ b/bin/emailrelay-doxygen-filter.sh_ index c504983..afd1103 100644 --- a/bin/emailrelay-doxygen-filter.sh_ +++ b/bin/emailrelay-doxygen-filter.sh_ @@ -23,6 +23,10 @@ # awk="gawk" +if test "`echo a | ${awk} '{print}'`" != "a" +then + awk="nawk" +fi 2>/dev/null # PreFilter() # Removes banner comments (including legalese) from the top of the file. diff --git a/bin/emailrelay-soak.sh_ b/bin/emailrelay-soak.sh_ index e127cb1..73ee86c 100644 --- a/bin/emailrelay-soak.sh_ +++ b/bin/emailrelay-soak.sh_ @@ -59,7 +59,7 @@ Auth() Content() { - echo "To:" ${USER}@localhost + echo "To:" ${USER}@`uname -n` echo "Subject: test message from process" $$ echo "From: tester" echo "" @@ -75,7 +75,7 @@ Envelope() echo "X-MailRelay-Content: 8bit" echo "X-MailRelay-From: me" echo "X-MailRelay-ToCount: 1" - echo "X-MailRelay-To-Remote:" ${USER}@localhost + echo "X-MailRelay-To-Remote:" ${USER}@`uname -n` echo "X-MailRelay-Authentication: anon" echo "X-MailRelay-Client: 127.0.0.1" echo "X-MailRelay-End: 1" diff --git a/bin/emailrelay.sh_ b/bin/emailrelay.sh_ index ce77442..98abe67 100644 --- a/bin/emailrelay.sh_ +++ b/bin/emailrelay.sh_ @@ -24,27 +24,201 @@ # A shell-script wrapper for E-MailRelay designed for # use in the SysV-init system (/etc/init.d). # -# usage: emailrelay { start [] | stop } +# See also: LSB, start_daemon (lsb), startproc (suse), +# install_initd (lsb), insserv (suse) # +# usage: emailrelay { start [] | stop | restart | force-reload | status } +# + +# LSB comment block +# +### BEGIN INIT INFO +# Provides: emailrelay +# Required-Start: $network +# Required-Stop: $network +# Default-Start: 3 4 5 +# Default-Stop: 3 4 5 +# Description: E-MailRelay store-and-forward Message Transfer Agent. +### END INIT INFO + +# choose an infrastructure style +# +if test -f /etc/rc.status +then + style="suse" + . /etc/rc.status +elif test -f /lib/lsb/init-functions +then + style="lsb" + . /lib/lsb/init-functions +else + style="unix" +fi # configuration # +switches="" +sbin="/sbin" var_run="/var/run" emailrelay="__SBIN_DIR__/emailrelay" -switches="" - -# configuration fallback -# if test \! -d "${var_run}" ; then var_run="/tmp" ; fi -if test \! -x "${emailrelay}" ; then emailrelay="emailrelay" ; fi - -# initialisation -# +if test \! -x "${emailrelay}" ; then emailrelay="./emailrelay" ; fi pid_file="${var_run}/emailrelay.pid" +PATH="${PATH}:/sbin:/bin:/usr/bin" + +# functions... +# +#