- `MODULE_SYSTEM_RECAPTCHA` ([WoltLab/WCF#4305](https://github.com/WoltLab/WCF/pull/4305))
- `PROFILE_MAIL_USE_CAPTCHA` ([WoltLab/WCF#4399](https://github.com/WoltLab/WCF/pull/4399))
+- The `may` value for `MAIL_SMTP_STARTTLS` ([WoltLab/WCF#4398](https://github.com/WoltLab/WCF/pull/4398))
#### Files
## Emails
+### Mailbox
+
The `Mailbox` and `UserMailbox` classes no longer store the passed `Language` and `User` objects, but the respective ID instead.
This change reduces the size of the serialized email when stored in the background queue.
See [WoltLab/WCF#4389](https://github.com/WoltLab/WCF/pull/4389) for details.
+### SMTP
+
+The `SmtpEmailTransport` no longer supports a value of `may` for the `$starttls` property.
+
+Using the `may` value is unsafe as it allows for undetected MITM attacks.
+The use of `encrypt` is recommended, unless it is certain that the SMTP server does not support TLS.
+
+See [WoltLab/WCF#4398](https://github.com/WoltLab/WCF/pull/4398) for details.
+
## Miscellaneous Additions
- [`ValueIntervalFormFieldDependency`](../../php/api/form_builder/dependencies.md#valueintervalformfielddependency)