Displaying 2 results from an estimated 2 matches for "server_advertise_condit".
2018 Mar 22
0
exim PAM authentication: all users unknown
Hi,
how come that exim can not authenticate users using PAM?
======================
PLAIN:
driver = plaintext
server_set_id = $auth2
server_prompts = :
server_condition = ${if pam{$auth2:$auth3}{yes}{no}}
server_advertise_condition = ${if def:tls_cipher }
server_debug_print = "auth: $1 $2 $3"
======================
2969 SMTP<< AUTH PLAIN AGp2AGdsdWViaXJk
2969 PLAIN authenticator server_condition:
2969 $auth1 =
2969 $auth2 = user
2969 $auth3 = password
2969 $1 =
2969 $2 = user
2...
2016 Mar 09
4
Setting up public mailboxes - user not found
...re is the auth part:
dovecot_login:
driver = dovecot
public_name = LOGIN
server_socket = /var/run/dovecot/auth-client
# setting server_set_id might break several headers in mails sent by authenticated smtp. So be careful.
server_set_id = $auth1
.ifndef AUTH_SERVER_ALLOW_NOTLS_PASSWORDS
server_advertise_condition = ${if eq{$tls_in_cipher}{}{}{*}}
.endif
dovecot_plain:
driver = dovecot
public_name = PLAIN
server_socket = /var/run/dovecot/auth-client
server_set_id = $auth1
.ifndef AUTH_SERVER_ALLOW_NOTLS_PASSWORDS
server_advertise_condition = ${if eq{$tls_in_cipher}{}{}{*}}
.endif
So any...