No description
Find a file
2021-10-20 22:57:53 +02:00
backend require active account to own domain 2021-10-20 22:57:53 +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 switch to a dark theme 2021-03-28 23:43:56 +02:00

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'