├── .gitignore ├── Dockerfile ├── README.md ├── api.py ├── filedb.py ├── syncer.py └── templates ├── dovecot ├── extra.conf └── ldap │ └── passdb.conf └── sogo └── plist_ldap /.gitignore: -------------------------------------------------------------------------------- 1 | db 2 | conf 3 | __pycache__ 4 | .vscode -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programmierus/ldap-mailcow/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programmierus/ldap-mailcow/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programmierus/ldap-mailcow/HEAD/api.py -------------------------------------------------------------------------------- /filedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programmierus/ldap-mailcow/HEAD/filedb.py -------------------------------------------------------------------------------- /syncer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programmierus/ldap-mailcow/HEAD/syncer.py -------------------------------------------------------------------------------- /templates/dovecot/extra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programmierus/ldap-mailcow/HEAD/templates/dovecot/extra.conf -------------------------------------------------------------------------------- /templates/dovecot/ldap/passdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programmierus/ldap-mailcow/HEAD/templates/dovecot/ldap/passdb.conf -------------------------------------------------------------------------------- /templates/sogo/plist_ldap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programmierus/ldap-mailcow/HEAD/templates/sogo/plist_ldap --------------------------------------------------------------------------------