Browse Source
https://github.com/PHPMailer/PHPMailer/blob/v5.2.26/SECURITY.md Nous passons donc de la version 5.2.21 à 5.2.26v3

14 changed files with 640 additions and 557 deletions
File diff suppressed because it is too large
Load Diff
@ -1,17 +1,17 @@
|
||||
#PHPMailer Extras |
||||
# PHPMailer Extras |
||||
|
||||
These classes provide optional additional functions to PHPMailer. |
||||
|
||||
These are not loaded by the PHPMailer autoloader, so in some cases you may need to `require` them yourself before using them. |
||||
|
||||
##EasyPeasyICS |
||||
## EasyPeasyICS |
||||
|
||||
This class was originally written by Manuel Reinhard and provides a simple means of generating ICS/vCal files that are used in sending calendar events. PHPMailer does not use it directly, but you can use it to generate content appropriate for placing in the `Ical` property of PHPMailer. The PHPMailer project is now its official home as Manuel has given permission for that and is no longer maintaining it himself. |
||||
|
||||
##htmlfilter |
||||
## htmlfilter |
||||
|
||||
This class by Konstantin Riabitsev and Jim Jagielski implements HTML filtering to remove potentially malicious tags, such as `<script>` or `onclick=` attributes that can result in XSS attacks. This is a simple filter and is not as comprehensive as [HTMLawed](http://www.bioinformatics.org/phplabware/internal_utilities/htmLawed/) or [HTMLPurifier](http://htmlpurifier.org), but it's easier to use and considerably better than nothing! PHPMailer does not use it directly, but you may want to apply it to user-supplied HTML before using it as a message body. |
||||
|
||||
##NTLM_SASL_client |
||||
## NTLM_SASL_client |
||||
|
||||
This class by Manuel Lemos (bundled with permission) adds the ability to authenticate with Microsoft Windows mail servers that use NTLM-based authentication. It is used by PHPMailer if you send via SMTP and set the `AuthType` property to `NTLM`; you will also need to use the `Realm` and `Workstation` properties. The original source is [here](http://www.phpclasses.org/browse/file/7495.html). |
||||
|
@ -1,25 +1,25 @@
|
||||
<?php |
||||
/** |
||||
* Norwegian PHPMailer language file: refer to English translation for definitive list |
||||
* Norwegian Bokmål PHPMailer language file: refer to English translation for definitive list |
||||
* @package PHPMailer |
||||
*/ |
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP Feil: Kunne ikke autentisere.'; |
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP Feil: Kunne ikke koble til SMTP tjener.'; |
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Feil: Data ble ikke akseptert.'; |
||||
$PHPMAILER_LANG['empty_message'] = 'Meldingsinnholdet er tomt'; |
||||
$PHPMAILER_LANG['encoding'] = 'Ukjent tegnkoding: '; |
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Feil: Datainnhold ikke akseptert.'; |
||||
$PHPMAILER_LANG['empty_message'] = 'Melding kropp tomt'; |
||||
$PHPMAILER_LANG['encoding'] = 'Ukjent koding: '; |
||||
$PHPMAILER_LANG['execute'] = 'Kunne ikke utføre: '; |
||||
$PHPMAILER_LANG['file_access'] = 'Får ikke tilgang til filen: '; |
||||
$PHPMAILER_LANG['file_open'] = 'Fil feil: Kunne ikke åpne filen: '; |
||||
$PHPMAILER_LANG['from_failed'] = 'Følgende avsenderadresse feilet: '; |
||||
$PHPMAILER_LANG['instantiate'] = 'Kunne ikke initialisere mailfunksjonen.'; |
||||
$PHPMAILER_LANG['invalid_address'] = 'Meldingen ble ikke sendt, følgende adresse er ugyldig: '; |
||||
$PHPMAILER_LANG['provide_address'] = 'Du må angi minst en mottakeradresse.'; |
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer er ikke supportert.'; |
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP Feil: Følgende mottagere feilet: '; |
||||
$PHPMAILER_LANG['signing'] = 'Signeringsfeil: '; |
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() feilet.'; |
||||
$PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfeil: '; |
||||
$PHPMAILER_LANG['variable_set'] = 'Kan ikke sette eller resette variabelen: '; |
||||
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; |
||||
$PHPMAILER_LANG['file_open'] = 'Fil Feil: Kunne ikke åpne filen: '; |
||||
$PHPMAILER_LANG['from_failed'] = 'Følgende Frå adresse feilet: '; |
||||
$PHPMAILER_LANG['instantiate'] = 'Kunne ikke initialisere post funksjon.'; |
||||
$PHPMAILER_LANG['invalid_address'] = 'Ugyldig adresse: '; |
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' sender er ikke støttet.'; |
||||
$PHPMAILER_LANG['provide_address'] = 'Du må opppgi minst en mottakeradresse.'; |
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP Feil: Følgende mottakeradresse feilet: '; |
||||
$PHPMAILER_LANG['signing'] = 'Signering Feil: '; |
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP connect() feilet.'; |
||||
$PHPMAILER_LANG['smtp_error'] = 'SMTP server feil: '; |
||||
$PHPMAILER_LANG['variable_set'] = 'Kan ikke skrive eller omskrive variabel: '; |
||||
$PHPMAILER_LANG['extension_missing'] = 'Utvidelse mangler: '; |
||||
|
Loading…
Reference in new issue