v1.10.0
What's Changed
- Introduce Dark theme in #51
- Added volume for sql docker container by @marc2016 in #58
- Added a specific IMAP Auth support to allow user creation upon login in d8d01fc
- Added LDAP support in #61
- Switch to PHP 8.1 for the container in 17643e5
- Update dependencies
Thanks a lot to @reven for pointing out a helpful patch for Baikal that helped me deliver these LDAP and IMAP functionalities, @IronTooch for testing the LDAP part, and @dominiquefournier for his insight on LDAP compatibility.
How to upgrade
If you want to use IMAP or LDAP, you should add new environment variables with the relevant configuration:
IMAP:
IMAP_AUTH_URL="{imap.gmail.com:993/imap/ssl/novalidate-cert}" # <-- was already existing
IMAP_AUTH_USER_AUTOCREATE=true # false by default
LDAP:
LDAP_AUTH_URL="ldap://127.0.0.1"
LDAP_DN_PATTERN="mail=%u"
LDAP_MAIL_ATTRIBUTE="mail"
LDAP_AUTH_USER_AUTOCREATE=true # false by default
Full Changelog: v1.9.1...v1.10.0