You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
708 B
31 lines
708 B
Description of PHPMailer 6.0.1 library import into Moodle
|
|
|
|
We now use a vanilla version of phpmailer and do our customisations in a
|
|
subclass.
|
|
|
|
When doing the import we remove directories/files:
|
|
.github/
|
|
.phan/
|
|
docs/
|
|
examples/
|
|
src/OAuth.php
|
|
src/POP3.php
|
|
test/
|
|
.gitattributes
|
|
.gitignore
|
|
.php_cs
|
|
.scrutinizer.yml
|
|
.travis.yml
|
|
SECURITY.md
|
|
UPGRADING.md
|
|
composer.json
|
|
get_oauth_token.php
|
|
phpdoc.dist.xml
|
|
travis.phpunit.xml.dist
|
|
|
|
Local changes (to verify/apply with new imports):
|
|
|
|
- MDL-63967: PHP 7.3 compatibility.
|
|
lib/phpmailer/src/PHPMailer.php: FILTER_FLAG_HOST_REQUIRED is deprecated and
|
|
implied with FILTER_VALIDATE_URL. This was fixed upstream by
|
|
https://github.com/PHPMailer/PHPMailer/pull/1551
|
|
|