summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README31
1 files changed, 22 insertions, 9 deletions
diff --git a/README b/README
index 9e3c896..f2b9e12 100644
--- a/README
+++ b/README
@@ -22,22 +22,35 @@ Configuration
~~~~~~~~~~~~~
-* Sample configuration file
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
+* Sample configuration files
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This is a simple configuration file for a quick start:
--------------------------------------
hostname = mail.myisp.com:25
-username = "myusername"
-password = "mysecret"
+username = "myself"
+password = "secret"
starttls = enabled
-identity = myself@somewhere.com
- hostname = smtp.somewhere.com:25
- username = "myself"
- password = "secret"
- starttls = enabled
+mda "/usr/bin/procmail -d %T"
+--------------------------------------
+
+ If you have more than one SMTP account you have them automatically chosen for
+ you:
+
+--------------------------------------
+identity myself@myisp.com
+ hostname mail.myisp.com:25
+ username "myself"
+ password "secret"
+ starttls enabled
+ default
+
+identity myself@anotherisp.com
+ hostname smtp.anotherisp.com:25
+ username "myself"
+ password "secret"
mda "/usr/bin/procmail -d %T"
--------------------------------------