summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@users.sourceforge.net>2003-05-18 11:13:13 +0000
committerJosé Fonseca <jrfonseca@users.sourceforge.net>2003-05-18 11:13:13 +0000
commit3df180dcc693518a61e5af93e717ca3c822a5365 (patch)
treed261843d80ba6d874de2ca49e36e1d8e67397042
parent4f264af0fcd77d497c6b8580052ea3948787214f (diff)
Bumped to version 0.4. Added Debian packaging. Fixes to the autogen.sh
script. Mentioned some caveats in the documentation.
-rw-r--r--NEWS6
-rw-r--r--README.mutt2
-rwxr-xr-xautogen.sh6
-rw-r--r--configure.ac2
-rw-r--r--sample.esmtprc11
5 files changed, 18 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index b77d803..a802cba 100644
--- a/NEWS
+++ b/NEWS
@@ -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.
diff --git a/autogen.sh b/autogen.sh
index de1db69..14a0b91 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -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.