Displaying 1 result from an estimated 1 matches for "ldap_attributes".
2012 Feb 13
6
Dovecot v2.2 plans
...for queries
driver = mysql
connect = ...
}
ldap_db ldapmails {
# most settings from dovecot-ldap.conf.ext, except attributes/filters
}
passdb {
driver = sql
db = sqlmails
sql_query = select password from users where username = '%u'
}
passdb {
driver = ldap
db = ldapmails
ldap_attributes {
password = %{ldap:userPassword}
}
ldap_filter = ...
}
The sql_db {} and ldap_db {} would be generic enough to be used everywhere (e.g. dict-sql), not just for passdb/userdb.
Some problems:
- Similar to the per-namespace mail settings, doveconf -a would output all sql_query, ldap_attrib...