summaryrefslogtreecommitdiff
path: root/README.mutt
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@users.sourceforge.net>2002-09-26 14:24:13 +0000
committerJosé Fonseca <jrfonseca@users.sourceforge.net>2002-09-26 14:24:13 +0000
commit3310755ee0dcfed3cdfe865878d35d0a8b766074 (patch)
tree1efebbd78e1cc427257991c8d405a01cf3765a0c /README.mutt
Initial revision
Diffstat (limited to 'README.mutt')
-rw-r--r--README.mutt27
1 files changed, 27 insertions, 0 deletions
diff --git a/README.mutt b/README.mutt
new file mode 100644
index 0000000..9881d83
--- /dev/null
+++ b/README.mutt
@@ -0,0 +1,27 @@
+To use esmtp with mutt add
+
+ set sendmail="/path/to/esmtp"
+
+to your ~/.muttrc and create a ~/.esmtp (see sample.esmtp for an example.)
+
+
+For debugging purposes you may prefer using the follwing shell script.
+
+ #!/bin/sh
+
+ LOGFILE=/tmp/esmtp.log
+
+ echo $0 $@ > $LOGFILE
+
+ /path/to/esmtp -m $@ >> $LOGFILE
+
+ exit $?
+
+Save it as esmtp.sh and put in you ~/.muttrc
+
+ set sendmail="/path/to/esmtp.sh"
+
+instead.
+
+
+TODO: This would be better handled if done by esmtp itself and controllable by a configuration setting.