The branch "FRAMEWORK_5_2" has been updated. The following is a summary of the commits.
from: f3b509c1599570275534ca6aa47c8cfb20926eb8 c6f46d1 Enable plaintext SMTP access 9331dc8 [jan] Allow unencrypted access ([email protected], PR #1). Summary: https://github.com/horde/Smtp/compare/f3b509c15995...9331dc85de74 ----------------------------------------------------------------------- commit c6f46d163fd3d881b68a6762c1e780a5fcdf01bd Author: nhirokinet <[email protected]> Date: Thu, 19 Nov 2020 18:57:16 +0100 Enable plaintext SMTP access Smtp.php gets 'secure' param with false in case plaintext connection. array_filter` without callback function removes false value. ``` $ php -r 'var_dump(array_filter(["a", false, "b"]));' array(2) { [0]=> string(1) "a" [2]=> string(1) "b" } ``` So, at least here should accept false value to enable plaintext connection. M lib/Horde/Smtp.php https://github.com/horde/Smtp/commit/c6f46d163fd3d881b68a6762c1e780a5fcdf01bd ----------------------------------------------------------------------- commit 9331dc85de7480535f9d537dd5e49c39f59cba2f Author: Jan Schneider <[email protected]> Date: Thu, 19 Nov 2020 19:00:31 +0100 [jan] Allow unencrypted access ([email protected], PR #1). M doc/Horde/Smtp/changelog.yml https://github.com/horde/Smtp/commit/9331dc85de7480535f9d537dd5e49c39f59cba2f -- commits mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
