From 61c4d70402ceebcf14e90be4eae10bee08c8f885 Mon Sep 17 00:00:00 2001 From: jedi Date: Mon, 9 Nov 2020 16:43:32 +0100 Subject: [PATCH] add minimal README.md --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 679cde5..e50591e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,23 @@ # 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'