mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
- Move render_tabs into plinth.views - Move admin_tabs and user_tabs into the class - New interproc module contains inter-process functions - New helper methods in TabMixin
32 lines
843 B
Plaintext
32 lines
843 B
Plaintext
# Direct edits to this file will be lost!
|
|
# Manage your settings on Plinth <https://localhost/plinth/apps/email_server>
|
|
|
|
auth_mechanisms = plain login
|
|
|
|
passdb {
|
|
driver = ldap
|
|
args = /etc/dovecot/freedombox-ldap-passdb.conf.ext
|
|
# Block the default passdb lookup (pam, 10-auth.conf)
|
|
result_failure = return-fail
|
|
result_internalfail = return-fail
|
|
result_success = return-ok
|
|
}
|
|
|
|
userdb {
|
|
# UID number lookup (10001@example.com)
|
|
driver = ldap
|
|
args = /etc/dovecot/freedombox-ldap-userdb-uid.conf.ext
|
|
result_failure = continue
|
|
result_internalfail = return-fail
|
|
result_success = return-ok
|
|
}
|
|
|
|
userdb {
|
|
driver = ldap
|
|
args = /etc/dovecot/freedombox-ldap-userdb.conf.ext
|
|
# Block the default userdb lookup (passwd, 10-auth.conf)
|
|
result_failure = return-fail
|
|
result_internalfail = return-fail
|
|
result_success = return-ok
|
|
}
|