Displaying 10 results from an estimated 10 matches for "server_socket".
2010 Jun 30
2
Can't establish Dovecot authorization in Exim.
...T=yes".
Version of Dovecot
is 1.2.12.
I use SSL for IMAP. Is Exim neccesary to use SSL(TLS)
for authorization of outgoing SMTP?
Configuration files is as
follows;
- Exim
----------------------------------------------------------
dovecot_login:
driver = dovecot
public_name = LOGIN
server_socket =
/var/run/dovecot/auth-client
server_set_id = $auth1
dovecot_plain:
driver = dovecot
public_name = PLAIN
server_socket =
/var/run/dovecot/auth-client
server_set_id = $auth2
----------------------------------------------------------
- Dovecot
---------------------------------------...
2009 Jul 17
2
exim4 dovecot sasl problem
...? # non-empty string; fail otherwise.
? client_send = "<; ${if !eq{PASSWDLINE}{}\
????????????????????? {}fail}\
???????????????? ; ${extract{1}{::}{PASSWDLINE}}\
??? ??? ?; ${sg{PASSWDLINE}{\\N([^:]+:)(.*)\\N}{\\$2}}"
.endif
dovecot_login:
? driver = dovecot
? public_name = LOGIN
? server_socket = /var/run/dovecot/auth-client
? server_set_id = $auth1
dovecot_plain:
? driver = dovecot
? public_name = PLAIN
? server_socket = /var/run/dovecot/auth-client
? server_set_id = $auth1
How can I fight insomnia? Discover how on Yahoo! Answers. http://ph.answers.yahoo.com
2004 Dec 09
1
Exim4 authentication patch
...authenticators require use of plaintext passwords and NTLM
code in exim is quite outdated and hairy.
Patch generated against Exim 4.43, but should apply to earlier
versions too.
Patch adds new 'dovecot' authenticator, which can be used as such:
ntlm:
driver = dovecot
public_name = NTLM
server_socket = /var/authentication_socket_path
server_set_id = $1
cram:
driver = dovecot
public_name = CRAM-MD5
...
Authenticator has only one parameter 'server_socket', it's value
used as path for dovecot's authentication socket. Authenticator
can be used for server authentication only....
2009 Oct 07
3
Samba AD and Dovecot
Hello All,
I haven't seen the answer to this, maybe I am just using the wrong
searches. I have two queries related to this:
1) I have seen how to configure for LDAP and Kerberos. AD uses both
together. All user information is in AD/LDAP and authentication is
AD/Kerberos. How can I configure Dovecot to use both appropriately?
2) I can cause Samba to create certain directories on login, etc.
2008 Jul 03
1
EXIM + Dovecot - Auth mechanism
...only PLAIN-MD5"
If thunderbird
Then im try to Auth in Outlook im got a error too:
auth(default): digest-md5(?,172.16.1.226): Invalid realm: domain.off
What should im do to auth successful in this scheme?
exim config:
begin authenticators
auth_plain:
driver = dovecot
public_name = PLAIN
server_socket = /var/run/dovecot/auth-client
server_set_id = $auth1
auth_login:
driver = dovecot
public_name = LOGIN
server_socket = /var/run/dovecot/auth-client
server_set_id = $auth1
auth_cram_md5:
driver = dovecot
public_name = CRAM-MD5
server_socket = /var/run/dovecot/auth-client
server_set_id = $auth1
%...
2012 May 08
1
Exim / Dovecot and AUTH LOGIN
Hi to both adressed mailing lists,
I followed the instructions in http://wiki2.dovecot.org/HowTo/EximAndDovecotSASL
exim.conf:
| plain:
| driver = dovecot
| public_name = PLAIN
| server_socket = /var/run/dovecot/auth-client
| server_set_id = $auth1
|
| login:
| driver = dovecot
| public_name = LOGIN
| server_socket = /var/run/dovecot/auth-client
| server_set_id = $auth1
10-master.conf for dovecot:
| service auth {
| # auth_socket_path points to this user...
2008 Jan 20
3
Exim Dovecot Authentication Problem
Having a hard time figuring out something that is supposed to be easy.
Tryiong to configure Dovecot so that it provides authentication to Exim
for outgoing smtp. Tried different things and getting
authentication socket protocol error
dovecot_plain:
driver = dovecot
public_name = PLAIN
server_socket = /var/run/dovecot/auth-client
server_set_id = $auth1
auth default {
# Space separated list of wanted authentication mechanisms:
# plain digest-md5 cram-md5 apop anonymous
mechanisms = plain
#
# Password database is used to verify user's password (and nothing more).
# You can...
2006 Aug 29
1
dovecot SASL as auth backend to exim?
hi,
i'm running dovecot branch_10 cvs on OSX 10.4.7 w/ exim 4.63.
i'd like to use Dovecot's SASL as an auth backend to exim, instead of
Cyrus-SASL.
@ dovecot's sasl page:
http://wiki.dovecot.org/Sasl
i know there's a patch against exim 4.43:
http://www.exim.org/eximwiki/AuthenticatedSmtpUsingDovecot
that, purportedly, enables EXIM to use dovecot's SASL as an
2016 Mar 09
4
Setting up public mailboxes - user not found
...t of my setup is Exim4.
Here is the transport part:
dovecot_lmtp:
driver = lmtp
socket = /var/run/dovecot/lmtp
return_path_add
#maximum number of deliveries per batch, default 1
batch_max = 200
And here 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:
drive...
2016 Aug 18
5
[PATCH v2 0/4] New getprogname module
Hi,
as discussed in [1], this series adds a new getprogname module.
All it does is providing a getprogname function, much like what is
found on e.g. *BSD systems, and using it in gnulib instead of progname.
Also, using it explicitly by modules avoids gnulib users the need of
either use the progname module (GPL), or to provide program_name (and
call set_program_name manually, which is not always