Skip to content

Commit

Permalink
Various small fixes and changes from SourceForge
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Mar 6, 2013
1 parent 9dd16ce commit 997a402
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
3 changes: 0 additions & 3 deletions class.phpmailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions language/phpmailer.lang-fr.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@

$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 : ';
$PHPMAILER_LANG['file_access'] = 'Impossible d\'accéder au fichier : ';
$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 : ';
2 changes: 1 addition & 1 deletion test/phpmailerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 997a402

Please sign in to comment.