diff --git a/class.phpmailer.php b/class.phpmailer.php index cc6262bdf..2be4b8e90 100644 --- a/class.phpmailer.php +++ b/class.phpmailer.php @@ -806,9 +806,6 @@ public function PreSend() { $this->mailHeader .= $this->HeaderLine("To", "undisclosed-recipients:;"); } $this->mailHeader .= $this->HeaderLine('Subject', $this->EncodeHeader($this->SecureHeader(trim($this->Subject)))); - // if(count($this->cc) > 0) { - // $this->mailHeader .= $this->AddrAppend("Cc", $this->cc); - // } } // digitally sign with DKIM if enabled diff --git a/language/phpmailer.lang-fr.php b/language/phpmailer.lang-fr.php index 2432e1b82..d709883c3 100644 --- a/language/phpmailer.lang-fr.php +++ b/language/phpmailer.lang-fr.php @@ -6,7 +6,7 @@ $PHPMAILER_LANG['authenticate'] = 'Erreur SMTP : Echec de l\'authentification.'; $PHPMAILER_LANG['connect_host'] = 'Erreur SMTP : Impossible de se connecter au serveur SMTP.'; -$PHPMAILER_LANG['data_not_accepted'] = 'Erreur SMTP : Données incorrects.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Erreur SMTP : Données incorrectes.'; $PHPMAILER_LANG['empty_message'] = 'Corps de message vide'; $PHPMAILER_LANG['encoding'] = 'Encodage inconnu : '; $PHPMAILER_LANG['execute'] = 'Impossible de lancer l\'exécution : '; @@ -14,11 +14,11 @@ $PHPMAILER_LANG['file_open'] = 'Erreur Fichier : ouverture impossible : '; $PHPMAILER_LANG['from_failed'] = 'L\'adresse d\'expéditeur suivante a échouée : '; $PHPMAILER_LANG['instantiate'] = 'Impossible d\'instancier la fonction mail.'; -$PHPMAILER_LANG['invalid_address'] = 'L\'adresse e-mail n\'est pas valide: '; +$PHPMAILER_LANG['invalid_address'] = 'L\'adresse courriel n\'est pas valide: '; $PHPMAILER_LANG['mailer_not_supported'] = ' client de messagerie non supporté.'; $PHPMAILER_LANG['provide_address'] = 'Vous devez fournir au moins une adresse de destinataire.'; $PHPMAILER_LANG['recipients_failed'] = 'Erreur SMTP : Les destinataires suivants sont en erreur : '; -$PHPMAILER_LANG['signing'] = 'Erreur de signature numérique: '; +$PHPMAILER_LANG['signing'] = 'Erreur de signature : '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Échec de la connexion SMTP.'; $PHPMAILER_LANG['smtp_error'] = 'Erreur du serveur SMTP: '; -$PHPMAILER_LANG['variable_set'] = 'Ne peuvent pas définir ou redéfinir la variable: '; +$PHPMAILER_LANG['variable_set'] = 'Ne peut initialiser ou réinitialiser une variable : '; diff --git a/test/phpmailerTest.php b/test/phpmailerTest.php index fd1baea7c..3c6b35e77 100644 --- a/test/phpmailerTest.php +++ b/test/phpmailerTest.php @@ -970,7 +970,7 @@ function test_DenialOfServiceAttack() $this->Mail->Body = 'This should no longer cause a denial of service.'; $this->BuildBody(); - $this->Mail->Subject = str_repeat('A', 998); + $this->Mail->Subject = substr(str_repeat('0123456789', 100), 0, 998); $this->assertTrue($this->Mail->Send(), $this->Mail->ErrorInfo); }