diff options
author | José Fonseca <jrfonseca@users.sourceforge.net> | 2003-10-04 23:31:05 +0000 |
---|---|---|
committer | José Fonseca <jrfonseca@users.sourceforge.net> | 2003-10-04 23:31:05 +0000 |
commit | f8f226f65276f1c645eff2d6edb48c8d6caf2256 (patch) | |
tree | a87215ee0d45e96382569e79f246079e5baa277d /README | |
parent | c9aab90ba7b3b2974a51f5b4d7e422fbfca51ff4 (diff) |
Version bump.
New 'default' keyword for indentities (Vitezslav Batrla).
Documentation updates.
Diffstat (limited to 'README')
-rw-r--r-- | README | 31 |
1 files changed, 22 insertions, 9 deletions
@@ -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" -------------------------------------- |