diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | README.mutt | 2 | ||||
-rwxr-xr-x | autogen.sh | 6 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | sample.esmtprc | 11 |
5 files changed, 18 insertions, 9 deletions
@@ -1,3 +1,8 @@ +Version 0.4 + + * Debian packaging. + + Version 0.3 * Capability to generate log files. @@ -5,6 +10,7 @@ Version 0.3 * Minor bug fixes and documentation enhancements. * Multiple identities. + Version 0.2: * Packaging corrections. diff --git a/README.mutt b/README.mutt index c77f828..f8edba2 100644 --- a/README.mutt +++ b/README.mutt @@ -13,6 +13,6 @@ as well. For debugging purposes you may prefer to put in your ~/.muttrc - set sendmail="/path/to/esmtp -X /tmp/esmtp.log" + set sendmail="/path/to/esmtp -v -X /tmp/esmtp.log" instead. @@ -1,9 +1,7 @@ #! /bin/sh -export WANT_AUTOMAKE_1_6=1 - -aclocal \ -&& automake --gnu --add-missing \ +aclocal-1.6 \ +&& automake-1.6 --gnu --add-missing \ && autoconf \ && ./configure --enable-maintainer-mode diff --git a/configure.ac b/configure.ac index 513ae57..4be6fc5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.53) -AC_INIT(esmtp, 0.3) +AC_INIT(esmtp, 0.4) AC_CONFIG_SRCDIR(Makefile.am) AM_INIT_AUTOMAKE(1.6 dist-bzip2) AM_MAINTAINER_MODE diff --git a/sample.esmtprc b/sample.esmtprc index 1a11e4e..d5ab87b 100644 --- a/sample.esmtprc +++ b/sample.esmtprc @@ -30,7 +30,7 @@ password = "PASSWORD" # Use the Starttls # -starttls = disabled +#starttls = disabled # # It can be one of "enabled", "disabled" or "required". It defaults to # disabled. @@ -40,10 +40,15 @@ starttls = disabled #certificate_passphrase = "CERTIFICATE_PASSPHRASE" -# A different identity which can be selected with the '-f' flag. You can have -# as many you like. +# Same as above but for a different identity which can be selected with the +# '-f' flag. You can have as many you like. # identity myself@somewhere.com hostname smtp.somewhere.com:25 username "myself" password "secret" + #starttls = disabled +# +# NOTE: the default indentity settings aren't shared by the other identities. +# Everything (username, password, etc.) must be specified for every identity +# even if they don't differ from the default identity. |