diff --git a/plugins/PHPMailer/README.md b/plugins/PHPMailer/README.md index 65354872..f4366686 100644 --- a/plugins/PHPMailer/README.md +++ b/plugins/PHPMailer/README.md @@ -27,7 +27,7 @@ - Protects against header injection attacks - Error messages in over 50 languages! - DKIM and S/MIME signing support -- Compatible with PHP 5.5 and later, including PHP 8.4 +- Compatible with PHP 5.5 and later, including PHP 8.5 - Namespaced to prevent name clashes - Much more! diff --git a/plugins/PHPMailer/VERSION b/plugins/PHPMailer/VERSION index 66ce77b7..9fe9ff9d 100644 --- a/plugins/PHPMailer/VERSION +++ b/plugins/PHPMailer/VERSION @@ -1 +1 @@ -7.0.0 +7.0.1 diff --git a/plugins/PHPMailer/composer.json b/plugins/PHPMailer/composer.json index e762d59d..63d0ffd6 100644 --- a/plugins/PHPMailer/composer.json +++ b/plugins/PHPMailer/composer.json @@ -42,9 +42,8 @@ "doctrine/annotations": "^1.2.6 || ^1.13.3", "php-parallel-lint/php-console-highlighter": "^1.0.0", "php-parallel-lint/php-parallel-lint": "^1.3.2", - "phpcompatibility/php-compatibility": "^9.3.5", - "roave/security-advisories": "dev-latest", - "squizlabs/php_codesniffer": "^3.7.2", + "phpcompatibility/php-compatibility": "^10.0.0@dev", + "squizlabs/php_codesniffer": "^3.13.5", "yoast/phpunit-polyfills": "^1.0.4" }, "suggest": { @@ -57,8 +56,11 @@ "league/oauth2-google": "Needed for Google XOAUTH2 authentication", "psr/log": "For optional PSR-3 debug logging", "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)", - "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication" + "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication", + "directorytree/imapengine": "For uploading sent messages via IMAP, see gmail example" }, + "minimum-stability": "dev", + "prefer-stable": true, "autoload": { "psr-4": { "PHPMailer\\PHPMailer\\": "src/" diff --git a/plugins/PHPMailer/get_oauth_token.php b/plugins/PHPMailer/get_oauth_token.php index 0e54a00b..9342b9c7 100644 --- a/plugins/PHPMailer/get_oauth_token.php +++ b/plugins/PHPMailer/get_oauth_token.php @@ -178,5 +178,5 @@ if (!isset($_GET['code'])) { ); //Use this to interact with an API on the users behalf //Use this to get a new access token if the old one expires - echo 'Refresh Token: ', htmlspecialchars($token->getRefreshToken()); + echo 'Refresh Token: ', htmlspecialchars($token->getRefreshToken(), ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401); } diff --git a/plugins/PHPMailer/language/phpmailer.lang-da.php b/plugins/PHPMailer/language/phpmailer.lang-da.php index db9a1ef5..28f04489 100644 --- a/plugins/PHPMailer/language/phpmailer.lang-da.php +++ b/plugins/PHPMailer/language/phpmailer.lang-da.php @@ -34,3 +34,6 @@ $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fejlede.'; $PHPMAILER_LANG['smtp_detail'] = 'Detalje: '; $PHPMAILER_LANG['smtp_error'] = 'SMTP server fejl: '; $PHPMAILER_LANG['variable_set'] = 'Kunne ikke definere eller nulstille variablen: '; +$PHPMAILER_LANG['no_smtputf8'] = 'Serveren understøtter ikke SMTPUTF8 som påkrævet for at sende til Unicode adresser'; +$PHPMAILER_LANG['imap_recommended'] = 'Brug af forenklet adresseparser anbefales ikke. Installer PHP IMAP udvidelsen for fuld RFC822 parsing.'; +$PHPMAILER_LANG['deprecated_argument'] = 'Udfaset argument: '; diff --git a/plugins/PHPMailer/language/phpmailer.lang-eo.php b/plugins/PHPMailer/language/phpmailer.lang-eo.php index fa8c2c17..04031a9b 100644 --- a/plugins/PHPMailer/language/phpmailer.lang-eo.php +++ b/plugins/PHPMailer/language/phpmailer.lang-eo.php @@ -3,24 +3,35 @@ /** * Esperanto PHPMailer language file: refer to English translation for definitive list * @package PHPMailer + * @author Robin van der Vliet */ -$PHPMAILER_LANG['authenticate'] = 'Eraro de servilo SMTP : aŭtentigo malsukcesis.'; -$PHPMAILER_LANG['connect_host'] = 'Eraro de servilo SMTP : konektado al servilo malsukcesis.'; -$PHPMAILER_LANG['data_not_accepted'] = 'Eraro de servilo SMTP : neĝustaj datumoj.'; -$PHPMAILER_LANG['empty_message'] = 'Teksto de mesaĝo mankas.'; +$PHPMAILER_LANG['authenticate'] = 'SMTP-eraro: Ne eblis aŭtentigi.'; +$PHPMAILER_LANG['buggy_php'] = 'Via versio de PHP estas trafita de cimo, kiu povas kaŭzi difektitajn mesaĝojn. Por ripari tion, ŝanĝu al sendado per SMTP, malŝaltu la opcion mail.add_x_header en via php.ini, ŝanĝu al MacOS aŭ Linux, aŭ ĝisdatigu vian PHP al versio 7.0.17+ aŭ 7.1.3+.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP-eraro: Ne eblis konektiĝi al la SMTP-gastiganto.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP-eraro: Datumoj ne akceptitaj.'; +$PHPMAILER_LANG['empty_message'] = 'Mesaĝokorpo malplena'; $PHPMAILER_LANG['encoding'] = 'Nekonata kodoprezento: '; -$PHPMAILER_LANG['execute'] = 'Lanĉi rulumadon ne eblis: '; -$PHPMAILER_LANG['file_access'] = 'Aliro al dosiero ne sukcesis: '; -$PHPMAILER_LANG['file_open'] = 'Eraro de dosiero: malfermo neeblas: '; -$PHPMAILER_LANG['from_failed'] = 'Jena adreso de sendinto malsukcesis: '; -$PHPMAILER_LANG['instantiate'] = 'Genero de retmesaĝa funkcio neeblis.'; -$PHPMAILER_LANG['invalid_address'] = 'Retadreso ne validas: '; -$PHPMAILER_LANG['mailer_not_supported'] = ' mesaĝilo ne subtenata.'; -$PHPMAILER_LANG['provide_address'] = 'Vi devas tajpi almenaŭ unu recevontan retadreson.'; -$PHPMAILER_LANG['recipients_failed'] = 'Eraro de servilo SMTP : la jenaj poŝtrecivuloj kaŭzis eraron: '; -$PHPMAILER_LANG['signing'] = 'Eraro de subskribo: '; -$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP konektado malsukcesis.'; -$PHPMAILER_LANG['smtp_error'] = 'Eraro de servilo SMTP : '; -$PHPMAILER_LANG['variable_set'] = 'Variablo ne pravalorizeblas aŭ ne repravalorizeblas: '; -$PHPMAILER_LANG['extension_missing'] = 'Mankas etendo: '; +$PHPMAILER_LANG['execute'] = 'Ne eblis plenumi: '; +$PHPMAILER_LANG['extension_missing'] = 'Kromprogramo mankas: '; +$PHPMAILER_LANG['file_access'] = 'Ne eblis aliri la dosieron: '; +$PHPMAILER_LANG['file_open'] = 'Dosiera eraro: Ne eblis malfermi la dosieron: '; +$PHPMAILER_LANG['from_failed'] = 'La sekva(j) sendinto(j) malsukcesis: '; +$PHPMAILER_LANG['instantiate'] = 'Ne eblis funkciigi la retpoŝtan funkcion.'; +$PHPMAILER_LANG['invalid_address'] = 'Nevalida adreso: '; +$PHPMAILER_LANG['invalid_header'] = 'Nevalida kaplinia nomo aŭ valoro'; +$PHPMAILER_LANG['invalid_hostentry'] = 'Nevalida enigo de gastiganto: '; +$PHPMAILER_LANG['invalid_host'] = 'Nevalida gastiganto: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' retpoŝtilo ne estas subtenata.'; +$PHPMAILER_LANG['provide_address'] = 'Vi devas provizi almenaŭ unu retpoŝtadreson de ricevonto.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP-eraro: La sekva(j) ricevonto(j) malsukcesis: '; +$PHPMAILER_LANG['signing'] = 'Subskriba eraro: '; +$PHPMAILER_LANG['smtp_code'] = 'SMTP-kodo: '; +$PHPMAILER_LANG['smtp_code_ex'] = 'Pliaj SMTP-informoj: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'La SMTP-konektiĝo malsukcesis.'; +$PHPMAILER_LANG['smtp_detail'] = 'Informoj: '; +$PHPMAILER_LANG['smtp_error'] = 'Eraro de SMTP-servilo: '; +$PHPMAILER_LANG['variable_set'] = 'Ne eblas agordi aŭ reagordi la variablon: '; +$PHPMAILER_LANG['no_smtputf8'] = 'La servilo ne subtenas SMTPUTF8, kiu estas bezonata por sendi al Unicode-adresoj.'; +$PHPMAILER_LANG['imap_recommended'] = 'Uzado de la simpligita adresanalizilo ne estas rekomendita. Instalu la IMAP-kromprogramon por PHP por plena RFC822-analizado.'; +$PHPMAILER_LANG['deprecated_argument'] = 'Malrekomendita argumento: '; diff --git a/plugins/PHPMailer/language/phpmailer.lang-es.php b/plugins/PHPMailer/language/phpmailer.lang-es.php index a871824f..e6a3d85e 100644 --- a/plugins/PHPMailer/language/phpmailer.lang-es.php +++ b/plugins/PHPMailer/language/phpmailer.lang-es.php @@ -35,4 +35,4 @@ $PHPMAILER_LANG['smtp_detail'] = 'Detalle: '; $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; $PHPMAILER_LANG['variable_set'] = 'No se pudo configurar la variable: '; $PHPMAILER_LANG['imap_recommended'] = 'No se recomienda usar el analizador de direcciones simplificado. Instala la extensión IMAP de PHP para un análisis RFC822 más completo.'; -$PHPMAILER_LANG['deprecated_argument'] = 'El argumento $useimap ha quedado obsoleto'; +$PHPMAILER_LANG['deprecated_argument'] = 'Argumento obsoleto: '; diff --git a/plugins/PHPMailer/language/phpmailer.lang-nb.php b/plugins/PHPMailer/language/phpmailer.lang-nb.php index c9621a16..df8ff272 100644 --- a/plugins/PHPMailer/language/phpmailer.lang-nb.php +++ b/plugins/PHPMailer/language/phpmailer.lang-nb.php @@ -3,20 +3,21 @@ /** * Norwegian Bokmål PHPMailer language file: refer to English translation for definitive list * @package PHPMailer + * @author Wera AS */ - $PHPMAILER_LANG['authenticate'] = 'SMTP-feil: Kunne ikke autentiseres.'; - $PHPMAILER_LANG['buggy_php'] = 'Din versjon av PHP er berørt av en feil som kan føre til ødelagte meldinger. For å løse problemet kan du bytte til SMTP, deaktivere alternativet mail.add_x_header i php.ini, bytte til MacOS eller Linux eller oppgradere PHP til versjon 7.0.17+ eller 7.1.3+.'; + $PHPMAILER_LANG['authenticate'] = 'SMTP-feil: Kunne ikke autentisere.'; + $PHPMAILER_LANG['buggy_php'] = 'Din versjon av PHP er påvirket av en feil som kan føre til ødelagte meldinger. For å løse problemet kan du bytte til sending via SMTP, deaktivere mail.add_x_header-alternativet i php.ini, bytte til MacOS eller Linux, eller oppgradere PHP til versjon 7.0.17+ eller 7.1.3+.'; $PHPMAILER_LANG['connect_host'] = 'SMTP-feil: Kunne ikke koble til SMTP-vert.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-feil: data ikke akseptert.'; - $PHPMAILER_LANG['empty_message'] = 'Meldingstekst mangler'; + $PHPMAILER_LANG['empty_message'] = 'Meldingsinnholdet er tomt'; $PHPMAILER_LANG['encoding'] = 'Ukjent koding: '; $PHPMAILER_LANG['execute'] = 'Kunne ikke utføres: '; $PHPMAILER_LANG['extension_missing'] = 'Utvidelse mangler: '; $PHPMAILER_LANG['file_access'] = 'Kunne ikke få tilgang til filen: '; $PHPMAILER_LANG['file_open'] = 'Feil i fil: Kunne ikke åpne filen: '; - $PHPMAILER_LANG['from_failed'] = 'Følgende Fra-adresse mislyktes: '; - $PHPMAILER_LANG['instantiate'] = 'Kunne ikke instansiere e-postfunksjonen.'; + $PHPMAILER_LANG['from_failed'] = 'Følgende avsenderadresse mislyktes: '; + $PHPMAILER_LANG['instantiate'] = 'Kunne ikke starte e-postfunksjonen.'; $PHPMAILER_LANG['invalid_address'] = 'Ugyldig adresse: '; $PHPMAILER_LANG['invalid_header'] = 'Ugyldig headernavn eller verdi'; $PHPMAILER_LANG['invalid_hostentry'] = 'Ugyldig vertsinngang: '; @@ -31,3 +32,6 @@ $PHPMAILER_LANG['smtp_detail'] = 'Detaljer: '; $PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfeil: '; $PHPMAILER_LANG['variable_set'] = 'Kan ikke angi eller tilbakestille variabel: '; + $PHPMAILER_LANG['no_smtputf8'] = 'Serveren støtter ikke SMTPUTF8, som er nødvendig for å sende til Unicode-adresser.'; + $PHPMAILER_LANG['imap_recommended'] = 'Det anbefales ikke å bruke forenklet adresseanalyse. Installer PHP IMAP-utvidelsen for full RFC822-analyse.'; + $PHPMAILER_LANG['deprecated_argument'] = 'Avviklet argument: '; diff --git a/plugins/PHPMailer/language/phpmailer.lang-nl.php b/plugins/PHPMailer/language/phpmailer.lang-nl.php index 8229d5e2..cbb3622a 100644 --- a/plugins/PHPMailer/language/phpmailer.lang-nl.php +++ b/plugins/PHPMailer/language/phpmailer.lang-nl.php @@ -4,10 +4,11 @@ * Dutch PHPMailer language file: refer to PHPMailer.php for definitive list. * @package PHPMailer * @author Tuxion + * @author Robin van der Vliet */ $PHPMAILER_LANG['authenticate'] = 'SMTP-fout: authenticatie mislukt.'; -$PHPMAILER_LANG['buggy_php'] = 'PHP versie gededecteerd die onderhavig is aan een bug die kan resulteren in gecorrumpeerde berichten. Om dit te voorkomen, gebruik SMTP voor het verzenden van berichten, zet de mail.add_x_header optie in uw php.ini file uit, gebruik MacOS of Linux, of pas de gebruikte PHP versie aan naar versie 7.0.17+ or 7.1.3+.'; +$PHPMAILER_LANG['buggy_php'] = 'PHP-versie gedetecteerd die onderhevig is aan een bug die kan resulteren in gecorrumpeerde berichten. Om dit te voorkomen, gebruik SMTP voor het verzenden van berichten, zet de optie mail.add_x_header in uw php.ini uit, gebruik MacOS of Linux, of pas de gebruikte PHP-versie aan naar versie 7.0.17+ or 7.1.3+.'; $PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon niet verbinden met SMTP-host.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data niet geaccepteerd.'; $PHPMAILER_LANG['empty_message'] = 'Berichttekst is leeg'; @@ -16,19 +17,22 @@ $PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: '; $PHPMAILER_LANG['extension_missing'] = 'Extensie afwezig: '; $PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: '; $PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: '; -$PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: '; +$PHPMAILER_LANG['from_failed'] = 'Het volgende afzenderadres is mislukt: '; $PHPMAILER_LANG['instantiate'] = 'Kon mailfunctie niet initialiseren.'; $PHPMAILER_LANG['invalid_address'] = 'Ongeldig adres: '; -$PHPMAILER_LANG['invalid_header'] = 'Ongeldige header naam of waarde'; +$PHPMAILER_LANG['invalid_header'] = 'Ongeldige headernaam of -waarde'; $PHPMAILER_LANG['invalid_hostentry'] = 'Ongeldige hostentry: '; $PHPMAILER_LANG['invalid_host'] = 'Ongeldige host: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.'; $PHPMAILER_LANG['provide_address'] = 'Er moet minstens één ontvanger worden opgegeven.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: '; $PHPMAILER_LANG['signing'] = 'Signeerfout: '; -$PHPMAILER_LANG['smtp_code'] = 'SMTP code: '; -$PHPMAILER_LANG['smtp_code_ex'] = 'Aanvullende SMTP informatie: '; -$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Verbinding mislukt.'; +$PHPMAILER_LANG['smtp_code'] = 'SMTP-code: '; +$PHPMAILER_LANG['smtp_code_ex'] = 'Aanvullende SMTP-informatie: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP-verbinding mislukt.'; $PHPMAILER_LANG['smtp_detail'] = 'Detail: '; $PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: '; -$PHPMAILER_LANG['variable_set'] = 'Kan de volgende variabele niet instellen of resetten: '; +$PHPMAILER_LANG['variable_set'] = 'Kan de volgende variabele niet instellen of herstellen: '; +$PHPMAILER_LANG['no_smtputf8'] = 'De server ondersteunt geen SMTPUTF8 dat nodig is om naar Unicode-adressen te sturen.'; +$PHPMAILER_LANG['imap_recommended'] = 'Het gebruik van de vereenvoudigde adresparser is niet aanbevolen. Installeer de IMAP-extensie voor PHP voor volledige RFC822-ondersteuning.'; +$PHPMAILER_LANG['deprecated_argument'] = 'Verouderd argument: '; diff --git a/plugins/PHPMailer/language/phpmailer.lang-pl.php b/plugins/PHPMailer/language/phpmailer.lang-pl.php index cb7b2c21..35b3320a 100644 --- a/plugins/PHPMailer/language/phpmailer.lang-pl.php +++ b/plugins/PHPMailer/language/phpmailer.lang-pl.php @@ -5,29 +5,29 @@ * @package PHPMailer */ -$PHPMAILER_LANG['authenticate'] = 'Błąd SMTP: Nie można przeprowadzić uwierzytelnienia.'; -$PHPMAILER_LANG['buggy_php'] = 'Twoja wersja PHP zawiera błąd, który może powodować uszkodzenie wiadomości. Aby go naprawić, przełącz się na wysyłanie za pomocą SMTP, wyłącz opcję mail.add_x_header w php.ini, przełącz się na MacOS lub Linux lub zaktualizuj PHP do wersji 7.0.17+ lub 7.1.3+.'; -$PHPMAILER_LANG['connect_host'] = 'Błąd SMTP: Nie można połączyć się z wybranym hostem.'; -$PHPMAILER_LANG['data_not_accepted'] = 'Błąd SMTP: Dane nie zostały przyjęte.'; -$PHPMAILER_LANG['empty_message'] = 'Wiadomość jest pusta.'; -$PHPMAILER_LANG['encoding'] = 'Błędny sposób kodowania znaków: '; -$PHPMAILER_LANG['execute'] = 'Nie można uruchomić: '; -$PHPMAILER_LANG['extension_missing'] = 'Brakujące rozszerzenie: '; +$PHPMAILER_LANG['authenticate'] = 'Błąd SMTP: nie udało się przeprowadzić uwierzytelnienia.'; +$PHPMAILER_LANG['buggy_php'] = 'Używana wersja PHP zawiera błąd, który może powodować uszkodzenie wiadomości. Aby temu zapobiec, użyj wysyłki przez SMTP, wyłącz opcję mail.add_x_header w php.ini, przejdź na macOS lub Linux, lub zaktualizuj PHP do wersji 7.0.17+ albo 7.1.3+.'; +$PHPMAILER_LANG['connect_host'] = 'Błąd SMTP: nie udało się połączyć z serwerem (hostem).'; +$PHPMAILER_LANG['data_not_accepted'] = 'Błąd SMTP: dane wiadomości nie zostały przyjęte przez serwer.'; +$PHPMAILER_LANG['empty_message'] = 'Nie można wysłać pustej wiadomości.'; +$PHPMAILER_LANG['encoding'] = 'Nieobsługiwane kodowanie znaków: '; +$PHPMAILER_LANG['execute'] = 'Nie udało się uruchomić polecenia: '; +$PHPMAILER_LANG['extension_missing'] = 'Brak wymaganego rozszerzenia PHP: '; $PHPMAILER_LANG['file_access'] = 'Brak dostępu do pliku: '; -$PHPMAILER_LANG['file_open'] = 'Nie można otworzyć pliku: '; -$PHPMAILER_LANG['from_failed'] = 'Następujący adres nadawcy jest nieprawidłowy lub nie istnieje: '; -$PHPMAILER_LANG['instantiate'] = 'Nie można wywołać funkcji mail(). Sprawdź konfigurację serwera.'; -$PHPMAILER_LANG['invalid_address'] = 'Nie można wysłać wiadomości, ' . 'następujący adres odbiorcy jest nieprawidłowy lub nie istnieje: '; -$PHPMAILER_LANG['invalid_header'] = 'Nieprawidłowa nazwa lub wartość nagłówka'; +$PHPMAILER_LANG['file_open'] = 'Nie udało się otworzyć pliku: '; +$PHPMAILER_LANG['from_failed'] = 'Nieprawidłowy adres nadawcy: '; +$PHPMAILER_LANG['instantiate'] = 'Nie można zainicjować funkcji mail(). Sprawdź konfigurację serwera.'; +$PHPMAILER_LANG['invalid_address'] = 'Nie można wysłać wiadomości. Nieprawidłowy adres odbiorcy: '; +$PHPMAILER_LANG['invalid_header'] = 'Nieprawidłowa nazwa lub wartość nagłówka.'; $PHPMAILER_LANG['invalid_hostentry'] = 'Nieprawidłowy wpis hosta: '; -$PHPMAILER_LANG['invalid_host'] = 'Nieprawidłowy host: '; -$PHPMAILER_LANG['provide_address'] = 'Należy podać prawidłowy adres email odbiorcy.'; +$PHPMAILER_LANG['invalid_host'] = 'Nieprawidłowa nazwa hosta: '; +$PHPMAILER_LANG['provide_address'] = 'Musisz podać co najmniej jeden prawidłowy adres e-mail odbiorcy.'; $PHPMAILER_LANG['mailer_not_supported'] = 'Wybrana metoda wysyłki wiadomości nie jest obsługiwana.'; -$PHPMAILER_LANG['recipients_failed'] = 'Błąd SMTP: Następujący odbiorcy są nieprawidłowi lub nie istnieją: '; -$PHPMAILER_LANG['signing'] = 'Błąd podpisywania wiadomości: '; -$PHPMAILER_LANG['smtp_code'] = 'Kod SMTP: '; -$PHPMAILER_LANG['smtp_code_ex'] = 'Dodatkowe informacje SMTP: '; -$PHPMAILER_LANG['smtp_connect_failed'] = 'Wywołanie funkcji SMTP Connect() zostało zakończone niepowodzeniem.'; -$PHPMAILER_LANG['smtp_detail'] = 'Szczegóły: '; -$PHPMAILER_LANG['smtp_error'] = 'Błąd SMTP: '; +$PHPMAILER_LANG['recipients_failed'] = 'Błąd SMTP: nie udało się wysłać do następujących odbiorców: '; +$PHPMAILER_LANG['signing'] = 'Błąd podpisywania wiadomości cyfrowo: '; +$PHPMAILER_LANG['smtp_code'] = 'Kod odpowiedzi SMTP: '; +$PHPMAILER_LANG['smtp_code_ex'] = 'Dodatkowe informacje serwera SMTP: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Nie udało się nawiązać połączenia za pomocą SMTP Connect().'; +$PHPMAILER_LANG['smtp_detail'] = 'Szczegóły błędu: '; +$PHPMAILER_LANG['smtp_error'] = 'Błąd serwera SMTP: '; $PHPMAILER_LANG['variable_set'] = 'Nie można ustawić lub zmodyfikować zmiennej: '; diff --git a/plugins/PHPMailer/src/PHPMailer.php b/plugins/PHPMailer/src/PHPMailer.php index ff3b84bb..eb48e858 100644 --- a/plugins/PHPMailer/src/PHPMailer.php +++ b/plugins/PHPMailer/src/PHPMailer.php @@ -768,7 +768,7 @@ class PHPMailer * * @var string */ - const VERSION = '7.0.0'; + const VERSION = '7.0.1'; /** * Error severity: message only, continue processing. @@ -876,6 +876,7 @@ class PHPMailer private function mailPassthru($to, $subject, $body, $header, $params) { //Check overloading of mail function to avoid double-encoding + // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.mbstring_func_overloadDeprecatedRemoved if ((int)ini_get('mbstring.func_overload') & 1) { $subject = $this->secureHeader($subject); } else { @@ -1242,7 +1243,9 @@ class PHPMailer * @see https://www.andrew.cmu.edu/user/agreen1/testing/mrbs/web/Mail/RFC822.php A more careful implementation * * @param string $addrstr The address list string - * @param null $useimap Deprecated argument since 6.11.0. + * @param null $useimap Unused. Argument has been deprecated in PHPMailer 6.11.0. + * Previously this argument determined whether to use + * the IMAP extension to parse the list and accepted a boolean value. * @param string $charset The charset to use when decoding the address list string. * * @return array @@ -1250,13 +1253,15 @@ class PHPMailer public static function parseAddresses($addrstr, $useimap = null, $charset = self::CHARSET_ISO88591) { if ($useimap !== null) { - trigger_error(self::lang('deprecated_argument'), E_USER_DEPRECATED); + trigger_error(self::lang('deprecated_argument') . '$useimap', E_USER_DEPRECATED); } $addresses = []; if (function_exists('imap_rfc822_parse_adrlist')) { //Use this built-in parser if it's available + // phpcs:ignore PHPCompatibility.FunctionUse.RemovedFunctions.imap_rfc822_parse_adrlistRemoved -- wrapped in function_exists() $list = imap_rfc822_parse_adrlist($addrstr, ''); // Clear any potential IMAP errors to get rid of notices being thrown at end of script. + // phpcs:ignore PHPCompatibility.FunctionUse.RemovedFunctions.imap_errorsRemoved -- wrapped in function_exists() imap_errors(); foreach ($list as $address) { if ( @@ -1583,9 +1588,11 @@ class PHPMailer ); } elseif (defined('INTL_IDNA_VARIANT_2003')) { //Fall back to this old, deprecated/removed encoding + // phpcs:ignore PHPCompatibility.Constants.RemovedConstants.intl_idna_variant_2003DeprecatedRemoved $punycode = idn_to_ascii($domain, $errorcode, \INTL_IDNA_VARIANT_2003); } else { //Fall back to a default we don't know about + // phpcs:ignore PHPCompatibility.ParameterValues.NewIDNVariantDefault.NotSet $punycode = idn_to_ascii($domain, $errorcode); } if (false !== $punycode) { @@ -2482,7 +2489,7 @@ class PHPMailer 'no_smtputf8' => 'Server does not support SMTPUTF8 needed to send to Unicode addresses', 'imap_recommended' => 'Using simplified address parser is not recommended. ' . 'Install the PHP IMAP extension for full RFC822 parsing.', - 'deprecated_argument' => 'Argument $useimap is deprecated', + 'deprecated_argument' => 'Deprecated Argument: ', ]; if (empty($lang_path)) { //Calculate an absolute path so it can work if CWD is not here @@ -2956,6 +2963,7 @@ class PHPMailer $bytes = ''; if (function_exists('random_bytes')) { try { + // phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.random_bytesFound -- Wrapped in function_exists. $bytes = random_bytes($len); } catch (\Exception $e) { //Do nothing @@ -4590,10 +4598,10 @@ class PHPMailer * Converts data-uri images into embedded attachments. * If you don't want to apply these transformations to your HTML, just set Body and AltBody directly. * - * @param string $message HTML message string - * @param string $basedir Absolute path to a base directory to prepend to relative paths to images - * @param bool|callable $advanced Whether to use the internal HTML to text converter - * or your own custom converter + * @param string $message HTML message string + * @param string $basedir Absolute path to a base directory to prepend to relative paths to images + * @param bool|callable $advanced Whether to use the internal HTML to text converter + * or your own custom converter * @return string The transformed message body * * @throws Exception @@ -4602,6 +4610,12 @@ class PHPMailer */ public function msgHTML($message, $basedir = '', $advanced = false) { + $cid_domain = 'phpmailer.0'; + if (filter_var($this->From, FILTER_VALIDATE_EMAIL)) { + //prepend with a character to create valid RFC822 string in order to validate + $cid_domain = substr($this->From, strrpos($this->From, '@') + 1); + } + preg_match_all('/(? 1 && '/' !== substr($basedir, -1)) { @@ -4623,7 +4637,7 @@ class PHPMailer } //Hash the decoded data, not the URL, so that the same data-URI image used in multiple places //will only be embedded once, even if it used a different encoding - $cid = substr(hash('sha256', $data), 0, 32) . '@phpmailer.0'; //RFC2392 S 2 + $cid = substr(hash('sha256', $data), 0, 32) . '@' . $cid_domain; //RFC2392 S 2 if (!$this->cidExists($cid)) { $this->addStringEmbeddedImage( @@ -4657,7 +4671,7 @@ class PHPMailer $directory = ''; } //RFC2392 S 2 - $cid = substr(hash('sha256', $url), 0, 32) . '@phpmailer.0'; + $cid = substr(hash('sha256', $url), 0, 32) . '@' . $cid_domain; if (strlen($basedir) > 1 && '/' !== substr($basedir, -1)) { $basedir .= '/'; } @@ -5105,12 +5119,14 @@ class PHPMailer } if (openssl_sign($signHeader, $signature, $privKey, 'sha256WithRSAEncryption')) { if (\PHP_MAJOR_VERSION < 8) { + // phpcs:ignore PHPCompatibility.FunctionUse.RemovedFunctions.openssl_pkey_freeDeprecated openssl_pkey_free($privKey); } return base64_encode($signature); } if (\PHP_MAJOR_VERSION < 8) { + // phpcs:ignore PHPCompatibility.FunctionUse.RemovedFunctions.openssl_pkey_freeDeprecated openssl_pkey_free($privKey); } diff --git a/plugins/PHPMailer/src/POP3.php b/plugins/PHPMailer/src/POP3.php index c881a1c3..bf43acaf 100644 --- a/plugins/PHPMailer/src/POP3.php +++ b/plugins/PHPMailer/src/POP3.php @@ -45,8 +45,9 @@ class POP3 * The POP3 PHPMailer Version number. * * @var string + * @deprecated This constant will be removed in PHPMailer 8.0. Use `PHPMailer::VERSION` instead. */ - const VERSION = '7.0.0'; + const VERSION = '7.0.1'; /** * Default POP3 port number. diff --git a/plugins/PHPMailer/src/SMTP.php b/plugins/PHPMailer/src/SMTP.php index a36741bf..b657798c 100644 --- a/plugins/PHPMailer/src/SMTP.php +++ b/plugins/PHPMailer/src/SMTP.php @@ -34,8 +34,9 @@ class SMTP * The PHPMailer SMTP version number. * * @var string + * @deprecated This constant will be removed in PHPMailer 8.0. Use `PHPMailer::VERSION` instead. */ - const VERSION = '7.0.0'; + const VERSION = '7.0.1'; /** * SMTP line break constant. @@ -494,7 +495,9 @@ class SMTP //PHP 5.6.7 dropped inclusion of TLS 1.1 and 1.2 in STREAM_CRYPTO_METHOD_TLS_CLIENT //so add them back in manually if we can if (defined('STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT')) { + // phpcs:ignore PHPCompatibility.Constants.NewConstants.stream_crypto_method_tlsv1_2_clientFound $crypto_method |= STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT; + // phpcs:ignore PHPCompatibility.Constants.NewConstants.stream_crypto_method_tlsv1_1_clientFound $crypto_method |= STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT; } @@ -633,7 +636,13 @@ class SMTP if (null === $OAuth) { return false; } - $oauth = $OAuth->getOauth64(); + try { + $oauth = $OAuth->getOauth64(); + } catch (\Exception $e) { + // We catch all exceptions and convert them to PHPMailer exceptions to be able to + // handle them correctly later + throw new Exception("SMTP authentication error", 0, $e); + } /* * An SMTP command line can have a maximum length of 512 bytes, including the command name, * so the base64-encoded OAUTH token has a maximum length of: