add minimal README.md
This commit is contained in:
parent
8d9b008e17
commit
61c4d70402
1 changed files with 21 additions and 0 deletions
21
README.md
21
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'
|
||||
|
|
Loading…
Reference in a new issue