diff --git a/ChangeLog b/ChangeLog index 68ad20a..9d10e94 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,16 @@ E-MailRelay Change Log ====================== +1.1.0 -> 1.1.1 +-------------- +* Restored the fix for building with gcc2.96. +* Support for MinGW builds on Windows. +* More reasonable size of the "--help --verbose" message box on Windows. +* Windows "--icon" switch changed from "-i" to "-c" to avoid conflicting with "--interface". +* Shows "next server address" correctly in the configuration report when using "--forward-to". +* Fix for "make install" when "man2html" is not available. +* Updated init script. + 1.0.2 -> 1.1.0 -------------- * In proxy mode unexpected client-side disconnects and timeouts do not leave ".bad" files [see also bug-id 659039]. diff --git a/README b/README index 56dc0b8..b755da5 100644 --- a/README +++ b/README @@ -28,7 +28,7 @@ spool directory using "--spool-dir". For example, to start up a local proxy which passes messages to some "addsig" script and then forwards them to an MTA running on "smarthost", use a command like this: - emailrelay --as-proxy smarthost:smtp --filter $HOME/bin/addsig --spooldir $HOME/tmp + emailrelay --as-proxy smarthost:smtp --filter $HOME/bin/addsig --spool-dir $HOME/tmp To use E-MailRelay as a store-and-forward MTA use the "--as-server" switch to start the storage daemon in the background. And then trigger delivery of @@ -38,11 +38,11 @@ by the address of the target SMTP server. For example, to start a storage daemon listening on port 10025 use a command like this: - emailrelay --as-server --port 10025 --spooldir $HOME/tmp + emailrelay --as-server --port 10025 --spool-dir $HOME/tmp And then to forward the spooled mail to "smarthost" run somthing like this: - emailrelay --as-client smarthost:smtp --spooldir $HOME/tmp + emailrelay --as-client smarthost:smtp --spool-dir $HOME/tmp By default E-MailRelay will reject connections from remote machines. To allow connections from anywhere use the "--remote-clients" switch. @@ -94,6 +94,8 @@ The code has also been built successfully on: * Solaris 8 using WorkShop 5.0 * Linux using intel c++ 6.0 * Windows NT 4.0 using MSVC 6.0 +* Windows NT 4.0 using Cygwin (DLL 1.3.22) and gcc 3.2 +* Windows NT 4.0 using MinGW 2.0.0 and gcc 3.2 Feedback diff --git a/acinclude.m4 b/acinclude.m4 index f1fae27..6a47654 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -94,12 +94,13 @@ AC_DEFUN([ACLOCAL_CHECK_BUGGY_CTIME], ]) dnl compiler name and version -dnl used for -Ilib/ -- only needed for pre 3.0 gcc +dnl used for -Ilib/ -- only needed for pre 3.0 +dnl gcc -- maps gcc2.96 onto gcc2.95 dnl AC_DEFUN([ACLOCAL_COMPILER_VERSION], [ changequote(<<,>>) - COMPILER_VERSION=`$CXX --version 2>/dev/null | sed q | sed 's/[^0-9 .]*//g;s/\./ /g;s/^ *//;s/ /./;s/ .*//;s/^/gcc/'` + COMPILER_VERSION=`$CXX --version 2>/dev/null | sed q | sed 's/[^0-9 .]*//g;s/\./ /g;s/^ *//;s/ /./;s/ .*//;s/^/gcc/' | sed 's/gcc2.96/gcc2.95/'` if test -z "${COMPILER_VERSION}" then COMPILER_VERSION=`$CXX -V 2>&1 | sed q | grep WorkShop | sed 's/[^0-9]*//;s/[ \.].*//;s/^/sunpro/'` diff --git a/aclocal.m4 b/aclocal.m4 index 54efe20..ba3a761 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -107,12 +107,13 @@ AC_DEFUN([ACLOCAL_CHECK_BUGGY_CTIME], ]) dnl compiler name and version -dnl used for -Ilib/ -- only needed for pre 3.0 gcc +dnl used for -Ilib/ -- only needed for pre 3.0 +dnl gcc -- maps gcc2.96 onto gcc2.95 dnl AC_DEFUN([ACLOCAL_COMPILER_VERSION], [ changequote(<<,>>) - COMPILER_VERSION=`$CXX --version 2>/dev/null | sed q | sed 's/[^0-9 .]*//g;s/\./ /g;s/^ *//;s/ /./;s/ .*//;s/^/gcc/'` + COMPILER_VERSION=`$CXX --version 2>/dev/null | sed q | sed 's/[^0-9 .]*//g;s/\./ /g;s/^ *//;s/ /./;s/ .*//;s/^/gcc/' | sed 's/gcc2.96/gcc2.95/'` if test -z "${COMPILER_VERSION}" then COMPILER_VERSION=`$CXX -V 2>&1 | sed q | grep WorkShop | sed 's/[^0-9]*//;s/[ \.].*//;s/^/sunpro/'` diff --git a/bin/emailrelay.sh_ b/bin/emailrelay.sh_ index c0ca5e5..bf6202f 100644 --- a/bin/emailrelay.sh_ +++ b/bin/emailrelay.sh_ @@ -21,23 +21,31 @@ # # emailrelay # -# A shell-script wrapper for E-MailRelay designed for -# use in the SysV-init system (/etc/init.d). +# A shell-script wrapper for E-MailRelay designed for use in the SysV-init +# system (/etc/init.d). # -# See also: LSB, start_daemon (lsb), startproc (suse), -# install_initd (lsb), insserv (suse), -# /usr/share/doc/initscripts*/sysvinitfiles (redhat) +# Additional command-line switches for the emailrelay daemon are sourced +# from the file "/etc/emailrelay.conf" if it exists. Uncommented lines in this +# file have "--" prepended to them and then they are pasted onto the command +# line. # -# usage: emailrelay { start [] | stop | restart | force-reload | status } +# usage: emailrelay { start | stop | restart | force-reload | status } # +# See also: LSB, start_daemon (lsb), startproc (suse), install_initd (lsb), +# insserv (suse), /usr/share/doc/initscripts*/sysvinitfiles (redhat) +# + + ## # RedHat comment block... # # chkconfig: 345 80 20 -# description: E-MailRelay is a store-and-forward Message Transfer Agent. +# description: E-MailRelay is a SMTP proxy and store-and-forward MTA. # pidfile: /var/run/emailrelay.pid # processname: emailrelay -# +## + + ## # LSB comment block... # @@ -50,8 +58,9 @@ # Required-Stop: $network # Default-Start: 345 3 4 5 # Default-Stop: 345 3 4 5 -# Description: E-MailRelay store-and-forward Message Transfer Agent. +# Description: E-MailRelay SMTP proxy and store-and-forward MTA. ### END INIT INFO +## # choose an infrastructure style # @@ -71,229 +80,240 @@ else style="unix" fi -# configuration +# script configuration # -switches="" -sbin="/sbin" var_run="/var/run" -emailrelay="__SBIN_DIR__/emailrelay" +emailrelay="__SBIN_DIR__/emailrelay" # (absolute path required in some environments) if test \! -d "${var_run}" ; then var_run="/tmp" ; fi -if test \! -x "${emailrelay}" ; then emailrelay="./emailrelay" ; fi +if test \! -x "${emailrelay}" ; then emailrelay="`pwd`/emailrelay" ; fi pid_file="${var_run}/emailrelay.pid" PATH="${PATH}:/sbin:/bin:/usr/bin" +cfg_file="/etc/emailrelay.conf" + +# server configuration +# +start_switches="--as-server --pid-file ${pid_file} `cat \"${cfg_file}\" 2>/dev/null | egrep -v '^#|^ *$' | sed 's/^/--/'`" # functions... # #