[4020] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | Plugin Name: Mail supervisor |
---|
[5670] | 4 | Version: 1.4.0 |
---|
[4225] | 5 | Description: Mail supervisor surveille l'envoie des mails. |
---|
[4023] | 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=315 |
---|
[4020] | 7 | Author: cljosse |
---|
[4199] | 8 | Author URI:http://cljosse.free.fr |
---|
[4020] | 9 | */ |
---|
| 10 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
[4051] | 11 | if (!defined('MAIL_SUPERV_DIR')) define('MAIL_SUPERV_DIR' , basename(dirname(__FILE__))); |
---|
[4041] | 12 | if (!defined('MAIL_SUPERV_PATH')) define('MAIL_SUPERV_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'); |
---|
[4020] | 13 | include_once (MAIL_SUPERV_PATH.'include/constants.php'); |
---|
| 14 | |
---|
[4199] | 15 | /* EVENT_HANDLER_PRIORITY_NEUTRAL */ |
---|
[4020] | 16 | |
---|
[4715] | 17 | global $conf ; |
---|
[4861] | 18 | |
---|
| 19 | |
---|
[4020] | 20 | add_event_handler('send_mail', 'clj_mail',EVENT_HANDLER_PRIORITY_NEUTRAL - 1 , 6); |
---|
| 21 | function clj_mail($result, $mailto, $subject, $content, $headers, $args) |
---|
| 22 | { |
---|
[4053] | 23 | global $conf, $user, $lang_info, $conf_mail,$mails_options,$mails_données , $template,$page ,$erreur_message,$infos_message, $lang; |
---|
[4020] | 24 | // lecture config table ------------- |
---|
[4238] | 25 | include_once (MAIL_SUPERV_PATH.'include/fonctions.php'); |
---|
[4861] | 26 | load_language('plugin.lang', MAIL_SUPERV_PATH); |
---|
| 27 | $mails_options = explode("," , $conf['mail_superv']); |
---|
| 28 | //======== vérification si envoie de mail ou blocage connexion ===================== |
---|
| 29 | if ($mails_options[no_mail_list]=='on' || $mails_options[no_connect] == 'on' ) |
---|
[4156] | 30 | { |
---|
| 31 | if (kill_list()) |
---|
| 32 | { |
---|
[4879] | 33 | $erreur_message .= "<BR />".l10n('Sv_is_a_spam') ; |
---|
[4861] | 34 | if ($mails_options[no_connect] == 'on' ){ |
---|
| 35 | if ($user['status'] == 'webmaster' ) |
---|
| 36 | { |
---|
| 37 | //---------- continuer si web master ---------- |
---|
| 38 | }else{ |
---|
| 39 | if (!isset($_GET['admin'])) { |
---|
[4323] | 40 | die('Blacklist : <br />' .$erreur_message. '<br /> Hacking attempt!'); |
---|
[4861] | 41 | }elseif ($_GET['admin'] != 'piwigo') |
---|
| 42 | { |
---|
[4323] | 43 | die('blacklist Hacking attempt!'); |
---|
| 44 | } |
---|
[4861] | 45 | return true; |
---|
| 46 | } |
---|
| 47 | |
---|
| 48 | } |
---|
| 49 | |
---|
[4156] | 50 | } |
---|
| 51 | } |
---|
| 52 | |
---|
[4029] | 53 | $message =""; |
---|
[4040] | 54 | if (!isset($infos_message)) |
---|
| 55 | { |
---|
| 56 | $infos_message = ""; |
---|
| 57 | } |
---|
| 58 | if (!isset($erreur_message)) |
---|
| 59 | { |
---|
| 60 | $erreur_message = ''; |
---|
| 61 | } |
---|
[4020] | 62 | // lecture données ------------- |
---|
| 63 | $mails_données = Get_Datas(); |
---|
[4888] | 64 | |
---|
[4020] | 65 | $nb_mails = $mails_données['nb_mails'] ; |
---|
| 66 | $next_day = $mails_données['date_mail'] ; |
---|
| 67 | |
---|
| 68 | $reste = $mails_données['reste'] ; |
---|
| 69 | |
---|
[4029] | 70 | |
---|
| 71 | $rest_mail = $mails_données['rest_mail'] ; |
---|
| 72 | if ($rest_mail <=0 || $mails_données['nb_mails'] ==0 ){ |
---|
| 73 | $mails_données['nb_mails'] =0 ; |
---|
| 74 | $mails_données['date_mail'] = time(); |
---|
| 75 | } |
---|
| 76 | |
---|
| 77 | $rest_spam = $mails_données['rest_spam'] ; |
---|
| 78 | if ($rest_spam <=0 || $mails_données['nb_spams'] ==0 ){ |
---|
| 79 | $mails_données['nb_spams'] =0 ; |
---|
| 80 | $mails_données['date_spam'] = time(); |
---|
| 81 | } |
---|
| 82 | |
---|
| 83 | $alerte = ( $mails_données['reste'] >0 ) ? true : false ; |
---|
| 84 | |
---|
[4040] | 85 | $alerte_mail = ( $mails_données['nb_mails'] > $mails_données['nb_mails_maxi']-1 ) ? true : false ; |
---|
| 86 | $alerte_spam = ( $mails_données['nb_spams'] > $mails_données['nb_spams_maxi']-1 ) ? true : false ; |
---|
[4029] | 87 | |
---|
[4020] | 88 | |
---|
[4029] | 89 | if ( ( !$alerte && !$alerte_spam && !$alerte_mail ) ) |
---|
| 90 | { |
---|
| 91 | |
---|
[4020] | 92 | $nb_destinataires=0; |
---|
[4861] | 93 | if ($mails_options[check_mailto] == 'on') { |
---|
[4045] | 94 | if ($mailto == "" ) $mailto = $conf_mail['email_webmaster']; |
---|
| 95 | } |
---|
| 96 | if ($mailto<>"" ) $nb_destinataires +=1; |
---|
[4049] | 97 | |
---|
| 98 | if (!empty($args['Bcc'])) { |
---|
| 99 | $nb_destinataires += count($args['Bcc']); |
---|
| 100 | } |
---|
| 101 | if (!empty($args['Cc'])) { |
---|
| 102 | $nb_destinataires += count($args['Cc']); |
---|
| 103 | } |
---|
[4020] | 104 | //================= réécriture de l'entête =============================== |
---|
[4045] | 105 | if ( $nb_destinataires == 1 ) |
---|
| 106 | { |
---|
| 107 | if ($mailto == "" ) |
---|
| 108 | { |
---|
[4049] | 109 | if (!empty($args['Cc']) and count($args['Cc']) > 0 ) $mailto = get_strict_email_list(implode(',', $args['Cc'])) ; |
---|
| 110 | if (!empty($args['Bcc']) and count($args['Bcc']) > 0 ) $mailto = get_strict_email_list(implode(',', $args['Bcc'])) ; |
---|
| 111 | |
---|
[4045] | 112 | $headers = preg_replace('/.*Bcc(.*).\n/i', '', $headers); |
---|
| 113 | $headers = preg_replace('/.*Cc(.*).\n/i', '', $headers); |
---|
[4049] | 114 | |
---|
[4045] | 115 | } |
---|
| 116 | }else{ |
---|
| 117 | |
---|
[4054] | 118 | |
---|
| 119 | } |
---|
| 120 | |
---|
| 121 | //============================================================================= |
---|
| 122 | if (!empty($args['Cc'])) |
---|
[4045] | 123 | { |
---|
[4054] | 124 | $headers= corrige_header('Cc',$headers,$args); |
---|
[4045] | 125 | } |
---|
[4020] | 126 | if (!empty($args['Bcc'])) |
---|
[4045] | 127 | { |
---|
[4054] | 128 | $headers = corrige_header('Bcc',$headers,$args); |
---|
[4045] | 129 | } |
---|
[4054] | 130 | //============================================================================= |
---|
[4861] | 131 | if ($mails_options[check_header_text]=='on') { |
---|
[4020] | 132 | |
---|
| 133 | $texte = "This is a multi-part message in MIME format.\n"; |
---|
| 134 | |
---|
| 135 | $texte .= "-----=".$conf_mail['boundary_key']."\n"; |
---|
| 136 | $texte .= "Ceci est un message est au format MIME.\n"; |
---|
| 137 | $texte .= 'Content-Type: text/plain; charset="UTF-8"'."\n"; |
---|
| 138 | $texte .= 'Content-Transfer-Encoding: 8bit'."\n\n"; |
---|
| 139 | $texte .= $mails_données['header_text']; // A voir texte brut... |
---|
| 140 | |
---|
| 141 | $texte .= "\n\n"; |
---|
| 142 | |
---|
| 143 | $content =$texte .$content ; |
---|
| 144 | } |
---|
[4029] | 145 | |
---|
[4020] | 146 | $ret=false; |
---|
[4030] | 147 | |
---|
[4029] | 148 | //======== Non mise en quarantaine ============= |
---|
[4020] | 149 | ob_start(); |
---|
[4029] | 150 | $ret = false; |
---|
| 151 | if ($nb_destinataires > 0) { |
---|
[4045] | 152 | $ret = mail($mailto, $subject, $content, $headers); |
---|
[4054] | 153 | |
---|
[4029] | 154 | }else{ |
---|
[4879] | 155 | $message .= l10n('Sv_no_receiver_available'); |
---|
[4029] | 156 | } |
---|
| 157 | $message .= ob_get_contents(); |
---|
| 158 | ob_end_clean(); |
---|
| 159 | $mails_données['message']=$message; |
---|
| 160 | Gestion_erreurs($message,$ret,$nb_destinataires,$headers,$mailto); |
---|
[4020] | 161 | |
---|
[4029] | 162 | |
---|
[4020] | 163 | |
---|
[4029] | 164 | } else { |
---|
[4020] | 165 | |
---|
[4029] | 166 | //================== Est en quarantaine ======================= |
---|
[4879] | 167 | $erreur_message .= l10n('Sv_To_day_is')."<br />"; |
---|
[4029] | 168 | if ($alerte_spam ) { |
---|
| 169 | $type="Spams"; |
---|
[4045] | 170 | |
---|
[4040] | 171 | $d1=$mails_données['nb_spams'] . ' \\ ' . $mails_données['nb_spams_maxi']; |
---|
[4045] | 172 | $d2=$mails_données['nb_spams']; |
---|
[4029] | 173 | $d3= $mails_données['rest_spam']; |
---|
| 174 | $d4=time()+$d3 ; |
---|
| 175 | } |
---|
| 176 | |
---|
| 177 | if ($alerte_mail) { |
---|
| 178 | $type="Mails"; |
---|
| 179 | |
---|
[4040] | 180 | $d1=$mails_données['nb_mails']. ' \\ ' . $mails_données['nb_mails_maxi'];; |
---|
[4029] | 181 | $d2=$mails_données['date_mail']; |
---|
| 182 | $d3= $mails_données['rest_mail']; |
---|
| 183 | $d4=time()+$d3 ; |
---|
[4040] | 184 | |
---|
| 185 | |
---|
[4029] | 186 | } |
---|
| 187 | if ($alerte) { |
---|
| 188 | $type="Spams(Quarantaine)"; |
---|
[4040] | 189 | $d1=$mails_données['nb_spams'] . ' \\ ' . $mails_données['nb_spams_maxi']; |
---|
[4029] | 190 | $d2=$mails_données['date_quarantaine']; |
---|
| 191 | $d3= $mails_données['reste']; |
---|
| 192 | $d4=time()+$d3 ; |
---|
[4040] | 193 | } |
---|
[4020] | 194 | |
---|
[4029] | 195 | |
---|
[4879] | 196 | $d2=date(l10n('Sv_formatdate'),$d2); |
---|
[4029] | 197 | $d3=int_to_heure($d3) ; |
---|
[4879] | 198 | $d4=date(l10n('Sv_formatdate'),$d4); |
---|
[4029] | 199 | |
---|
[4040] | 200 | if ($alerte_mail) { |
---|
[4879] | 201 | $erreur_message .='<br />'.sprintf(l10n('Sv_alerte_mail %s %s %s %s %s'),$type,$d1,$d2,$d3,$d4).'<br />'; |
---|
[4040] | 202 | }else{ |
---|
[4879] | 203 | $erreur_message .='<br />'.sprintf(l10n('Sv_mise_en_quarantaine %s %s %s %s %s'),$type,$d1,$d2,$d3,$d4).'<br />'; |
---|
[4040] | 204 | |
---|
| 205 | } |
---|
[4879] | 206 | $infos_message = l10n('Sv_mail_not_send'); |
---|
[4040] | 207 | |
---|
[4029] | 208 | } |
---|
| 209 | sauve_données(); |
---|
| 210 | return true ; |
---|
| 211 | } |
---|
| 212 | //=========================================================================================== |
---|
| 213 | function Gestion_erreurs($message,$ret,$nb_destinataires,$headers,$mailto) |
---|
| 214 | { |
---|
[4156] | 215 | global $conf, $user, $conf_mail,$mails_options,$mails_données , $template,$page ,$infos_message,$erreur_message,$args,$lang, $lang_info; |
---|
| 216 | |
---|
| 217 | |
---|
| 218 | |
---|
[4029] | 219 | $match=array("<",">"); |
---|
| 220 | $string=array("<",">") ; |
---|
| 221 | |
---|
[4059] | 222 | //Warning: mail() has been disabled for security reasons |
---|
[4029] | 223 | |
---|
| 224 | $est_un_spam =!(strpos(strtolower($message), 'spam') === false); |
---|
| 225 | $headers=str_replace( $match,$string, $headers); |
---|
| 226 | |
---|
| 227 | if ( ($ret==false) || ($est_un_spam==true) || ($nb_destinataires == 0) ) { |
---|
| 228 | ; // Bad recipient address syntax |
---|
| 229 | $pos1 = strpos(strtolower($message), 'bad recipient address syntax'); |
---|
| 230 | if ( !($pos1 === false) ){ |
---|
[4879] | 231 | $erreur_message .= l10n('Sv_detection_de').' : Bad recipient address syntax .'; |
---|
| 232 | $erreur_message .= l10n('Sv_verifiez_les_destinataires').' (Bcc,Cc,To)<br />'; |
---|
[4029] | 233 | } |
---|
| 234 | |
---|
[4879] | 235 | $erreur_message .= sprintf(l10n('Sv_debug_message %s %s %s %s %s'),($ret==true)? "true" : "false",$message,$mailto,$headers,$nb_destinataires); |
---|
[4029] | 236 | //=============== La fonction mail à retournéeune erreur ========================= |
---|
| 237 | |
---|
[4020] | 238 | |
---|
[4029] | 239 | } |
---|
| 240 | |
---|
| 241 | if ($est_un_spam == false) |
---|
| 242 | { |
---|
| 243 | if ($mails_données['nb_mails']==0) { $mails_données['date_mail'] = time(); } |
---|
| 244 | $mails_données['nb_mails'] += $nb_destinataires; |
---|
[4020] | 245 | } |
---|
| 246 | else |
---|
| 247 | { |
---|
[4029] | 248 | $mails_données['nb_spams'] += $nb_destinataires; |
---|
| 249 | //--- Détection de spam ------------------ |
---|
| 250 | if ($mails_données['nb_spams']==0) {$mails_données['date_spam'] = time(); } |
---|
| 251 | |
---|
| 252 | $trop_de_spam =!(strpos(strtolower($message), 'trop de spam') === false); |
---|
| 253 | if ( $trop_de_spam ) { |
---|
| 254 | $mails_données['nb_spams_maxi']=$mails_données['nb_spams']; |
---|
[4045] | 255 | |
---|
[4029] | 256 | $mails_données['date_quarantaine']= time() ; |
---|
| 257 | $mails_données['quarantaine']= true ; |
---|
[4040] | 258 | $infos_message .=memo_var($mails_données); |
---|
[4029] | 259 | } |
---|
| 260 | |
---|
[4020] | 261 | } |
---|
| 262 | |
---|
[4029] | 263 | |
---|
[4020] | 264 | |
---|
[4029] | 265 | |
---|
[4020] | 266 | $ret=true; |
---|
| 267 | return $ret ; |
---|
| 268 | |
---|
| 269 | } |
---|
| 270 | |
---|
| 271 | //========================================================================================== |
---|
[4323] | 272 | add_event_handler('get_admin_plugin_menu_links', 'admin_menu'); |
---|
[4020] | 273 | function admin_menu($menu) |
---|
| 274 | { |
---|
| 275 | array_push($menu, array('NAME' => 'Mail_Superv', |
---|
| 276 | 'URL' => get_admin_plugin_menu_link(MAIL_SUPERV_PATH . 'admin/mail_superv_admin.php'))); |
---|
| 277 | return $menu; |
---|
| 278 | } |
---|
[4323] | 279 | //========================================================================================== |
---|
| 280 | add_event_handler('loc_after_page_header','affiche_spam' );// |
---|
[4199] | 281 | function affiche_spam () |
---|
[4020] | 282 | |
---|
[4199] | 283 | { |
---|
| 284 | include_once (MAIL_SUPERV_PATH.'include/fonctions.php'); |
---|
| 285 | |
---|
| 286 | affiche_message(); |
---|
[4323] | 287 | |
---|
[4199] | 288 | } |
---|
[4861] | 289 | include_once (MAIL_SUPERV_PATH.'include/fonctions.php'); |
---|
[4715] | 290 | $mails_options = explode("," , $conf['mail_superv']); |
---|
| 291 | |
---|
[4323] | 292 | //========================================================================================== |
---|
[4861] | 293 | if ($mails_options[set_id]=='on' ) { |
---|
[4349] | 294 | add_event_handler('register_user_check', 'Test_spam_g', EVENT_HANDLER_PRIORITY_NEUTRAL +2 , 2); |
---|
[4715] | 295 | } |
---|
[4349] | 296 | function Test_spam_g ($err, $user) |
---|
[4323] | 297 | { |
---|
[4715] | 298 | |
---|
| 299 | if (count($err)!=0 ) return $err ; |
---|
[4349] | 300 | if ( !isset($_POST['submit_add']) && !isset($_POST['submit']) ) return $err ; |
---|
| 301 | //Liableelard |
---|
[4337] | 302 | include_once (MAIL_SUPERV_PATH.'include/fonctions.php'); |
---|
[4349] | 303 | if ( isset($_POST['submit'])) { |
---|
| 304 | $mail = $_POST['mail_address'] ; |
---|
| 305 | $user_name = $_POST['login'] ; |
---|
| 306 | }else{ |
---|
| 307 | $mail = $user['email']; |
---|
| 308 | $user_name = $user['username']; |
---|
| 309 | } |
---|
[4861] | 310 | $user_name =""; // suppression du test sur user name. |
---|
[4349] | 311 | $ip='0'; |
---|
| 312 | if (test_spam($ip,$user_name ,$mail )) |
---|
| 313 | { |
---|
[4451] | 314 | if (test_spam($ip,$user_name ,"" )) { |
---|
[4879] | 315 | $err[] = $user_name . " ". l10n('Sv_is_a_login_spam') ; |
---|
[4451] | 316 | }else |
---|
[4879] | 317 | $err[] = $user_name . " : " .$mail . " ". l10n('Sv_is_a_spam') ; |
---|
[4323] | 318 | } |
---|
[4715] | 319 | |
---|
[4349] | 320 | return $err ; |
---|
[4323] | 321 | } |
---|
[4888] | 322 | ?> |
---|