1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based picture gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | /* |
---|
25 | Plugin Name: Mail supervisor |
---|
26 | Version: 1.1.1 |
---|
27 | Description: Mail supervisor surveille l'envoie des mails. |
---|
28 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=315 |
---|
29 | Author: cljosse |
---|
30 | Author URI:http://cljosse.e3b.org |
---|
31 | */ |
---|
32 | |
---|
33 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
34 | |
---|
35 | if (!defined('MAILl_SUPERV_DIR')) define('MAILl_SUPERV_DIR' , basename(dirname(__FILE__))); |
---|
36 | if (!defined('MAIL_SUPERV_PATH')) define('MAIL_SUPERV_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'); |
---|
37 | |
---|
38 | include_once (MAIL_SUPERV_PATH.'include/constants.php'); |
---|
39 | include_once (MAIL_SUPERV_PATH.'include/fonctions.php'); |
---|
40 | |
---|
41 | /* |
---|
42 | EVENT_HANDLER_PRIORITY_NEUTRAL */ |
---|
43 | |
---|
44 | add_event_handler('send_mail', 'clj_mail',EVENT_HANDLER_PRIORITY_NEUTRAL - 1 , 6); |
---|
45 | |
---|
46 | function clj_mail($result, $mailto, $subject, $content, $headers, $args) |
---|
47 | { |
---|
48 | global $conf, $user, $lang_info, $conf_mail,$mails_options,$mails_données , $template,$page ,$erreur_message,$infos_message; |
---|
49 | // lecture config table ------------- |
---|
50 | |
---|
51 | |
---|
52 | $mails_options = explode("," , $conf['mail_superv']); |
---|
53 | $message =""; |
---|
54 | if (!isset($infos_message)) |
---|
55 | { |
---|
56 | $infos_message = ""; |
---|
57 | } |
---|
58 | if (!isset($erreur_message)) |
---|
59 | { |
---|
60 | $erreur_message = ''; |
---|
61 | } |
---|
62 | // lecture données ------------- |
---|
63 | $mails_données = Get_Datas(); |
---|
64 | |
---|
65 | |
---|
66 | $nb_mails = $mails_données['nb_mails'] ; |
---|
67 | $next_day = $mails_données['date_mail'] ; |
---|
68 | |
---|
69 | $reste = $mails_données['reste'] ; |
---|
70 | |
---|
71 | |
---|
72 | $rest_mail = $mails_données['rest_mail'] ; |
---|
73 | if ($rest_mail <=0 || $mails_données['nb_mails'] ==0 ){ |
---|
74 | $mails_données['nb_mails'] =0 ; |
---|
75 | $mails_données['date_mail'] = time(); |
---|
76 | } |
---|
77 | |
---|
78 | $rest_spam = $mails_données['rest_spam'] ; |
---|
79 | if ($rest_spam <=0 || $mails_données['nb_spams'] ==0 ){ |
---|
80 | $mails_données['nb_spams'] =0 ; |
---|
81 | $mails_données['date_spam'] = time(); |
---|
82 | } |
---|
83 | |
---|
84 | $alerte = ( $mails_données['reste'] >0 ) ? true : false ; |
---|
85 | |
---|
86 | $alerte_mail = ( $mails_données['nb_mails'] > $mails_données['nb_mails_maxi']-1 ) ? true : false ; |
---|
87 | $alerte_spam = ( $mails_données['nb_spams'] > $mails_données['nb_spams_maxi']-1 ) ? true : false ; |
---|
88 | |
---|
89 | |
---|
90 | if ( ( !$alerte && !$alerte_spam && !$alerte_mail ) ) |
---|
91 | { |
---|
92 | |
---|
93 | $nb_destinataires=0; |
---|
94 | |
---|
95 | if ($mailto<>"" ) $nb_destinataires +=1; |
---|
96 | //================= réécriture de l'entête =============================== |
---|
97 | |
---|
98 | if ($mails_options[0] == 'on') { |
---|
99 | if ($mailto=="") $mailto=$conf_mail['email_webmaster']; |
---|
100 | } |
---|
101 | if (!empty($args['Cc'])) |
---|
102 | {$nb_destinataires += count($args['Cc']); |
---|
103 | if ($mails_options[1] == 'on') { $headers= corrige_header('Cc:',$headers);} |
---|
104 | } |
---|
105 | if (!empty($args['Bcc'])) |
---|
106 | { $nb_destinataires += count($args['Bcc']); |
---|
107 | if ($mails_options[1] == 'on') { $headers = corrige_header('Bcc',$headers);} |
---|
108 | } |
---|
109 | |
---|
110 | |
---|
111 | if ($mails_options[2]=='on') { |
---|
112 | |
---|
113 | $texte = "This is a multi-part message in MIME format.\n"; |
---|
114 | |
---|
115 | $texte .= "-----=".$conf_mail['boundary_key']."\n"; |
---|
116 | $texte .= "Ceci est un message est au format MIME.\n"; |
---|
117 | $texte .= 'Content-Type: text/plain; charset="UTF-8"'."\n"; |
---|
118 | $texte .= 'Content-Transfer-Encoding: 8bit'."\n\n"; |
---|
119 | $texte .= $mails_données['header_text']; // A voir texte brut... |
---|
120 | |
---|
121 | $texte .= "\n\n"; |
---|
122 | |
---|
123 | $content =$texte .$content ; |
---|
124 | } |
---|
125 | |
---|
126 | $ret=false; |
---|
127 | |
---|
128 | //======== Non mise en quarantaine ============= |
---|
129 | ob_start(); |
---|
130 | $ret = false; |
---|
131 | if ($nb_destinataires > 0) { |
---|
132 | $ret = mail($mailto, $subject, $content, $headers); |
---|
133 | |
---|
134 | }else{ |
---|
135 | $message .='Nombre de destinataires = 0'; |
---|
136 | } |
---|
137 | $message .= ob_get_contents(); |
---|
138 | ob_end_clean(); |
---|
139 | $mails_données['message']=$message; |
---|
140 | Gestion_erreurs($message,$ret,$nb_destinataires,$headers,$mailto); |
---|
141 | |
---|
142 | |
---|
143 | |
---|
144 | } else { |
---|
145 | |
---|
146 | //================== Est en quarantaine ======================= |
---|
147 | $erreur_message .= l10n('To_day_is')."<br />"; |
---|
148 | if ($alerte_spam ) { |
---|
149 | $type="Spams"; |
---|
150 | $d1=$mails_données['nb_spams']; |
---|
151 | $d1=$mails_données['nb_spams'] . ' \\ ' . $mails_données['nb_spams_maxi']; |
---|
152 | $d3= $mails_données['rest_spam']; |
---|
153 | $d4=time()+$d3 ; |
---|
154 | } |
---|
155 | |
---|
156 | if ($alerte_mail) { |
---|
157 | $type="Mails"; |
---|
158 | |
---|
159 | $d1=$mails_données['nb_mails']. ' \\ ' . $mails_données['nb_mails_maxi'];; |
---|
160 | $d2=$mails_données['date_mail']; |
---|
161 | $d3= $mails_données['rest_mail']; |
---|
162 | $d4=time()+$d3 ; |
---|
163 | |
---|
164 | |
---|
165 | } |
---|
166 | if ($alerte) { |
---|
167 | $type="Spams(Quarantaine)"; |
---|
168 | $d1=$mails_données['nb_spams'] . ' \\ ' . $mails_données['nb_spams_maxi']; |
---|
169 | $d2=$mails_données['date_quarantaine']; |
---|
170 | $d3= $mails_données['reste']; |
---|
171 | $d4=time()+$d3 ; |
---|
172 | } |
---|
173 | |
---|
174 | |
---|
175 | $d2=date(l10n('formatdate'),$d2); |
---|
176 | $d3=int_to_heure($d3) ; |
---|
177 | $d4=date(l10n('formatdate'),$d4); |
---|
178 | |
---|
179 | if ($alerte_mail) { |
---|
180 | $erreur_message .='<br />'.sprintf(l10n('alerte_mail %s %s %s %s %s'),$type,$d1,$d2,$d3,$d4).'<br />'; |
---|
181 | }else{ |
---|
182 | $erreur_message .='<br />'.sprintf(l10n('mise_en_quarantaine %s %s %s %s %s'),$type,$d1,$d2,$d3,$d4).'<br />'; |
---|
183 | |
---|
184 | } |
---|
185 | $infos_message = l10n('mail_not_send'); |
---|
186 | |
---|
187 | } |
---|
188 | sauve_données(); |
---|
189 | return true ; |
---|
190 | } |
---|
191 | //=========================================================================================== |
---|
192 | function Gestion_erreurs($message,$ret,$nb_destinataires,$headers,$mailto) |
---|
193 | { |
---|
194 | global $conf, $user, $lang_info, $conf_mail,$mails_options,$mails_données , $template,$page ,$infos_message,$erreur_message,$args; |
---|
195 | $match=array("<",">"); |
---|
196 | $string=array("<",">") ; |
---|
197 | |
---|
198 | |
---|
199 | $est_un_spam =!(strpos(strtolower($message), 'spam') === false); |
---|
200 | $headers=str_replace( $match,$string, $headers); |
---|
201 | |
---|
202 | if ( ($ret==false) || ($est_un_spam==true) || ($nb_destinataires == 0) ) { |
---|
203 | ; // Bad recipient address syntax |
---|
204 | $pos1 = strpos(strtolower($message), 'bad recipient address syntax'); |
---|
205 | if ( !($pos1 === false) ){ |
---|
206 | $erreur_message .='Détection de : Bad recipient address syntax .'; |
---|
207 | $erreur_message .='Vérifiez les destinataires: (Bcc,Cc,To)<br />'; |
---|
208 | } |
---|
209 | |
---|
210 | $erreur_message .= sprintf(l10n('debug_message %s %s %s %s %s'),($ret==true)? "true" : "false",$message,$mailto,$headers,$nb_destinataires); |
---|
211 | //=============== La fonction mail à retournéeune erreur ========================= |
---|
212 | |
---|
213 | |
---|
214 | } |
---|
215 | |
---|
216 | if ($est_un_spam == false) |
---|
217 | { |
---|
218 | if ($mails_données['nb_mails']==0) { $mails_données['date_mail'] = time(); } |
---|
219 | $mails_données['nb_mails'] += $nb_destinataires; |
---|
220 | } |
---|
221 | else |
---|
222 | { |
---|
223 | $mails_données['nb_spams'] += $nb_destinataires; |
---|
224 | //--- Détection de spam ------------------ |
---|
225 | if ($mails_données['nb_spams']==0) {$mails_données['date_spam'] = time(); } |
---|
226 | |
---|
227 | $trop_de_spam =!(strpos(strtolower($message), 'trop de spam') === false); |
---|
228 | if ( $trop_de_spam ) { |
---|
229 | $mails_données['nb_spams_maxi']=$mails_données['nb_spams']; |
---|
230 | $quarantaine_periode="+".str_replace( $period_search, $period_match, $mails_données['quarantaine_periode']); |
---|
231 | $next_day = strtotime($quarantaine_periode); // détection de 'Trop de spam |
---|
232 | $mails_données['date_quarantaine']= time() ; |
---|
233 | $mails_données['quarantaine']= true ; |
---|
234 | $infos_message .=memo_var($mails_données); |
---|
235 | } |
---|
236 | |
---|
237 | } |
---|
238 | |
---|
239 | |
---|
240 | |
---|
241 | |
---|
242 | |
---|
243 | $ret=true; |
---|
244 | return $ret ; |
---|
245 | |
---|
246 | } |
---|
247 | |
---|
248 | //========================================================================================== |
---|
249 | function admin_menu($menu) |
---|
250 | { |
---|
251 | array_push($menu, array('NAME' => 'Mail_Superv', |
---|
252 | 'URL' => get_admin_plugin_menu_link(MAIL_SUPERV_PATH . 'admin/mail_superv_admin.php'))); |
---|
253 | return $menu; |
---|
254 | } |
---|
255 | |
---|
256 | |
---|
257 | add_event_handler('get_admin_plugin_menu_links', 'admin_menu'); |
---|
258 | //add_event_handler('loc_end_page_tail', 'affiche_message'); |
---|
259 | add_event_handler('loc_after_page_header', 'affiche_message'); |
---|
260 | |
---|
261 | ?> |
---|