Go to file
j3d1 1ce9cc9e5a update pip version in virtualenv 2021-11-09 14:42:50 +01:00
backend query groups for ldap users 2021-10-28 02:36:38 +02:00
.gitignore autodeploy 2020-11-09 14:47:30 +01:00
LICENSE Initial commit 2020-11-02 16:07:53 +00:00
README.md add minimal README.md 2020-11-09 16:43:32 +01:00
update.sh update pip version in virtualenv 2021-11-09 14:42:50 +01:00

README.md

multimail

a custom administration frontend for a mail server with domain owners in ldap database and mailboxes, domains and aliases in mysql database.

Configuration

/backend/config/ldap.py:

uri = "ldap://localhost:389"
bind_dn = "cn=mail,ou=applications,dc=example,dc=org"
bind_pass = "changeme"
search_dn = "ou=user,dc=example,dc=org"
search_filter = "(uid=%(user)s)"

/backend/config/sql.py:

host = '127.0.0.1'
database = 'mydb'
user = 'myuser'
password = 'changemetoo'

/backend/config/secret.py:

key = 'djangosecret'