What's Changed
- PHP-imap replacement in #198 (Thanks @Ramblurr and @n-connect for your help!)
- Update dependencies
- Minor CS fixups
How to upgrade
If you're on v5.2.0, there is no database migration, but the IMAP configuration has changed following the removal of php-imap as a dependency and the usage of https://www.php-imap.com/ as a replacement (context)
New config format
You need to update your configuration to use the new format. The flags are now standalone parameters that you need to fill:
Before
IMAP_AUTH_URL={imap.gmail.com:993/imap/ssl/novalidate-cert}After
IMAP_AUTH_URL=imap.mydomain.com:993
IMAP_ENCRYPTION_METHOD=ssl
IMAP_CERTIFICATE_VALIDATION=falseNote
Only IMAP_ENCRYPTION_METHOD and IMAP_CERTIFICATE_VALIDATION are exposed
The rest of the configuration is unchanged.
Full Changelog: v5.2.0...v5.3.0