Differences between version 16 and predecessor to the previous major change of EximSmtpAuth.
Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 16 | Last edited on Thursday, January 26, 2006 11:07:21 am | by DanielLawson | Revert |
Older page: | version 15 | Last edited on Thursday, January 26, 2006 10:49:59 am | by TimCareySmith | Revert |
@@ -15,10 +15,10 @@
plain:
driver = plaintext
public_name = PLAIN
- server_condition = "${if pam {$1
:$2
}{yes}{no}}"
- server_set_id = $1
+ server_condition = "${if pam {$2
:$3
}{yes}{no}}"
+ server_set_id = $2
login:
driver = plaintext
public_name = LOGIN
@@ -26,8 +26,10 @@
server_condition = "${if pam {$1:$2}{yes}{no}}"
server_set_id = $1
These are both plain text drivers, you may wish to investigate using other drivers. Note, this won't work if your login or password contain :'s
+
+__NOTE__: the above example refers to $2 and $3 for PLAIN auth, and $1 and $2 for LOGIN auth. This is correct! It is the only way PLAIN auth will work. If you find PLAIN auth isn't working, check that you are using $2 and $3 for the user and secret tokens, and not $1 and $2
You will also need to make sure you have
host_auth_accept_relay = *
(which is the default in debian)