search for: password_key

Displaying 6 results from an estimated 6 matches for "password_key".

2013 Jul 28
1
Passing data safely in password_key?
Hi, I would like to convert my custom POP/IMAP proxy to Dovecot's. In this proxy I do more than giving back user name, password and the host and I need extra information. Luckily all of them are available as variables, but more than one comes as user input (like user name and cleartext password) and I'm not sure how to pass them safely. Obviously I would need a separator, which is
2017 Nov 02
1
Replication to wrong mailbox
...t; ? args = /etc/dovecot/dovecot-dict-auth.conf >> ? driver = dict >> } >> userdb { >> ? args = /etc/dovecot/dovecot-sql.conf >> ? driver = sql >> } >> >> dovecot-dict-auth.conf: >> uri = proxy:/var/run/dovecot_auth_proxy/socket:backend >> password_key = passdb/%u/%w >> user_key = userdb/%u >> iterate_disable = yes >> >> dovecot-dict-master-auth.conf: >> uri = proxy:/var/run/dovecot_auth_proxy/socket:backend >> password_key = master/%{login_user}/%u/%w >> iterate_disable = yes >> >> dovecot-sq...
2017 Oct 30
4
Replication to wrong mailbox
...tc/dovecot/dovecot-dict-auth.conf ? driver = dict } userdb { ? driver = prefetch } userdb { ? args = /etc/dovecot/dovecot-dict-auth.conf ? driver = dict } userdb { ? args = /etc/dovecot/dovecot-sql.conf ? driver = sql } dovecot-dict-auth.conf: uri = proxy:/var/run/dovecot_auth_proxy/socket:backend password_key = passdb/%u/%w user_key = userdb/%u iterate_disable = yes dovecot-dict-master-auth.conf: uri = proxy:/var/run/dovecot_auth_proxy/socket:backend password_key = master/%{login_user}/%u/%w iterate_disable = yes dovecot-sql.conf: driver = sqlite connect = /etc/dovecot/users.sqlite user_query = SELECT...
2017 Nov 02
0
Replication to wrong mailbox
...river = prefetch > } > userdb { > ? args = /etc/dovecot/dovecot-dict-auth.conf > ? driver = dict > } > userdb { > ? args = /etc/dovecot/dovecot-sql.conf > ? driver = sql > } > > dovecot-dict-auth.conf: > uri = proxy:/var/run/dovecot_auth_proxy/socket:backend > password_key = passdb/%u/%w > user_key = userdb/%u > iterate_disable = yes > > dovecot-dict-master-auth.conf: > uri = proxy:/var/run/dovecot_auth_proxy/socket:backend > password_key = master/%{login_user}/%u/%w > iterate_disable = yes > > dovecot-sql.conf: > driver = sqlite > co...
2018 Jun 22
0
variable forwarding buglet
I wanted to forward information from the director to the backend dovecot (original login name), so I had the userdb on the director return a forward_ologin variable. However, when I tried to use that variable in the "password_key" query on the backend dovecot, ${forward_ologin} was expanded to UNSUPPORTED_VARIABLE_forward_ologin. After testing a bit and looking around in the source a bit, and turning on debugging logging, it appeared that the forwarded variables actually appear as "passdb/userdb extra fields&quot...
2013 Dec 23
0
[help]how to config the dovecot authentication by the other servers
...ecot authenticated by the server 3 with tcp/ip socket?or is there are any samples?i have found in http://wiki2.dovecot.org/. *at first i try to use memcached ,these are the configure:* *./dovecot-dict-auth.conf.ext* uri = memcached:host=172.24.140.252:port=12000 password_key = dovecot/passdb/%u user_key = dovecot/userdb/%u value_format = json iterate_disable = yes default_pass_scheme = plain * ./10-auth.conf* auth_mechanisms = plain login !include auth-dict.conf.ext *./auth-dict....