@@ -10,21 +10,25 @@ discard block |
||
10 | 10 | if ( preg_match_all('/^Received:\sfrom(?:.|\r\n\s)*?[\[\(]\s*(?P<ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})[\]\)](?:.|\r\n\s)+\s+by(?:\s|\r\n\s+)(?P<host>\S+).*(?:\s|\r\n\s\s)+.*;\s+(?P<date>.*)/m',$header,$received) ) { |
11 | 11 | for ($i = count($received[0])-1;$i>=0;$i--) { |
12 | 12 | # print "Examine ".$received[0][$i]."\n"; |
13 | - if ( preg_match($msa,$received['host'][$i]) ) |
|
14 | - $dateR = $received['date'][$i]; |
|
13 | + if ( preg_match($msa,$received['host'][$i]) ) { |
|
14 | + $dateR = $received['date'][$i]; |
|
15 | + } |
|
15 | 16 | foreach ($mxserver as $mx) { |
16 | - if (!$ip) |
|
17 | - if ($mx == $received['host'][$i]) { |
|
17 | + if (!$ip) { |
|
18 | + if ($mx == $received['host'][$i]) { |
|
18 | 19 | $host = $received['host'][$i]; |
20 | + } |
|
19 | 21 | $ip = $received['ip'][$i]; |
20 | 22 | } |
21 | 23 | } |
22 | 24 | } |
23 | 25 | } |
24 | - if ( preg_match ('/\r\nDate:\s(?P<date>.*)\r\n/',$header,$dateC) != 1) |
|
25 | - $dateC['date'] = 'Not found'; |
|
26 | - if ( preg_match ('/\r\nMessage\-I(?:D|d):\s(?P<mid>.*)\r\n/',$header,$mid) != 1) |
|
27 | - $mid['mid'] = NULL; |
|
26 | + if ( preg_match ('/\r\nDate:\s(?P<date>.*)\r\n/',$header,$dateC) != 1) { |
|
27 | + $dateC['date'] = 'Not found'; |
|
28 | + } |
|
29 | + if ( preg_match ('/\r\nMessage\-I(?:D|d):\s(?P<mid>.*)\r\n/',$header,$mid) != 1) { |
|
30 | + $mid['mid'] = NULL; |
|
31 | + } |
|
28 | 32 | return array($ip,$host,$dateR,$dateC['date'],$mid['mid']); |
29 | 33 | } |
30 | 34 | |
@@ -40,7 +44,9 @@ discard block |
||
40 | 44 | |
41 | 45 | function summaryBadReport ($uidvet) { |
42 | 46 | $nuid = $uidvet['count']; |
43 | - if ( empty($uidvet) ) return NULL; |
|
47 | + if ( empty($uidvet) ) { |
|
48 | + return NULL; |
|
49 | + } |
|
44 | 50 | $return = '<hr><h3>Statistics by UID</h3><table><tr><th>UID</th><th>Learned times</th></tr>'."\n"; |
45 | 51 | |
46 | 52 | /* Remove count index */ |
@@ -75,8 +81,12 @@ discard block |
||
75 | 81 | foreach ($colarr as $col => $arr) { |
76 | 82 | foreach ($arr as $k => $v) { |
77 | 83 | $k = substr($k,1); |
78 | - if (!isset($ret[$k])) $ret[$k] = $array[$k]; |
|
79 | - if (isset ($array[$k][$col])) $ret[$k][$col] = $array[$k][$col]; |
|
84 | + if (!isset($ret[$k])) { |
|
85 | + $ret[$k] = $array[$k]; |
|
86 | + } |
|
87 | + if (isset ($array[$k][$col])) { |
|
88 | + $ret[$k][$col] = $array[$k][$col]; |
|
89 | + } |
|
80 | 90 | } |
81 | 91 | } |
82 | 92 | return $ret; |
@@ -87,14 +97,18 @@ discard block |
||
87 | 97 | function summaryReportAndList ($cf,$myconn,$tables,$category,$vet,$key) { |
88 | 98 | $nk = $vet['count']; |
89 | 99 | |
90 | - if ( empty($vet) ) return NULL; |
|
100 | + if ( empty($vet) ) { |
|
101 | + return NULL; |
|
102 | + } |
|
91 | 103 | |
92 | 104 | $return = sprintf('<h3>Statistics by %s</h3><table><tr><th>%s</th><th>Learned by</th><th>Learned times</th><th title="This field doesn\'t say if this %s is currently listed, but it says if this %s has listed now!">Listed Now</th></tr>'."\n", strtoupper($key),strtoupper($key),$key,$key); |
93 | 105 | |
94 | 106 | $values = array_keys($vet["$key"]); |
95 | 107 | |
96 | 108 | foreach ( $values as $value ) { |
97 | - if ( $value == 'count' ) continue; |
|
109 | + if ( $value == 'count' ) { |
|
110 | + continue; |
|
111 | + } |
|
98 | 112 | $nlearn = $vet["$key"]["$value"]['count']; |
99 | 113 | unset($vet["$key"]["$value"]['count']); |
100 | 114 | $quantity = $cf["listing$key"]['quantity']["$category"]; /* In searchAndList this value is |
@@ -106,10 +120,12 @@ discard block |
||
106 | 120 | 'The %s <%s> has been listed because was marked %u times as %s by %u different accounts during last %u days.', |
107 | 121 | strtoupper($key),$value,$nlearn,$category,$nuid,$cf['imap']['oldestday']); |
108 | 122 | $listed = searchAndList ($myconn,$cf['syslog']['user'],$tables,$cf["listing$key"]['list']["$category"],$value,$cf["listing$key"]['unit']["$category"],$quantity,$reason); |
123 | + } else { |
|
124 | + $listed = FALSE; |
|
109 | 125 | } |
110 | - else $listed = FALSE; |
|
126 | + } else { |
|
127 | + $listed = FALSE; |
|
111 | 128 | } |
112 | - else $listed = FALSE; |
|
113 | 129 | $nowlist = array( TRUE => array( |
114 | 130 | 'style' => 'id=\'ipfound\'', |
115 | 131 | 'name' => 'YES', |
@@ -127,7 +143,9 @@ discard block |
||
127 | 143 | $return .='<tr><td rowspan="'.$nuid.'">'.$value.'</td>'; |
128 | 144 | $return .= sprintf ('<td>%s</td><td rowspan="'.$nuid.'">%u</td><td rowspan="'.$nuid.'" '.$nowlist["$listed"]['style'].'>%s</td></tr>',$vet["$key"]["$value"][0],$nlearn,$nowlist["$listed"]['name']); |
129 | 145 | $rowuid=NULL; |
130 | - for ($j=1;$j<$nuid;$j++) $rowuid .= '<tr><td>%s</td></tr>'; |
|
146 | + for ($j=1;$j<$nuid;$j++) { |
|
147 | + $rowuid .= '<tr><td>%s</td></tr>'; |
|
148 | + } |
|
131 | 149 | array_shift($vet["$key"]["$value"]); |
132 | 150 | $return .= vsprintf ($rowuid,$vet["$key"]["$value"]); |
133 | 151 | |
@@ -140,14 +158,18 @@ discard block |
||
140 | 158 | $return .= sprintf('<h3>Statistics by UID</h3><table><tr><th>UID</th><th>%s learned</th><th>Learned times</th></tr>'."\n",$key); |
141 | 159 | $uids = array_keys($vet['uid']); |
142 | 160 | foreach ( $uids as $uid ) { |
143 | - if ( $uid == 'count' ) continue; |
|
161 | + if ( $uid == 'count' ) { |
|
162 | + continue; |
|
163 | + } |
|
144 | 164 | $nlearn = $vet['uid']["$uid"]['count']; |
145 | 165 | unset ( $vet['uid']["$uid"]['count'] ); |
146 | 166 | $nip = count($vet['uid']["$uid"]); |
147 | 167 | $return .='<tr><td rowspan="'.$nip.'">'.$uid.'</td>'; |
148 | 168 | $return .= sprintf ('<td>%s</td><td rowspan="'.$nip.'">%u</td></tr>',$vet['uid']["$uid"][0],$nlearn); |
149 | 169 | $rowuid=NULL; |
150 | - for ($j=1;$j<$nip;$j++) $rowuid .= '<tr><td>%s</td></tr>'; |
|
170 | + for ($j=1;$j<$nip;$j++) { |
|
171 | + $rowuid .= '<tr><td>%s</td></tr>'; |
|
172 | + } |
|
151 | 173 | array_shift($vet['uid']["$uid"]); |
152 | 174 | $return .= vsprintf ($rowuid,$vet['uid']["$uid"]); |
153 | 175 | |
@@ -197,14 +219,14 @@ discard block |
||
197 | 219 | { |
198 | 220 | // More than one field attribute returned by search |
199 | 221 | // You must redefine the search |
200 | - if ( count($result->getFieldNames()) > 1 ) return FALSE; |
|
201 | - } |
|
202 | - else if ($result instanceof Splunk_ResultsMessage) |
|
222 | + if ( count($result->getFieldNames()) > 1 ) { |
|
223 | + return FALSE; |
|
224 | + } |
|
225 | + } else if ($result instanceof Splunk_ResultsMessage) |
|
203 | 226 | { |
204 | 227 | // I don't want messages in my search |
205 | 228 | return FALSE; |
206 | - } |
|
207 | - else if (is_array($result)) |
|
229 | + } else if (is_array($result)) |
|
208 | 230 | { |
209 | 231 | // Process a row |
210 | 232 | foreach ($result as $key => $valueOrValues) |
@@ -212,15 +234,13 @@ discard block |
||
212 | 234 | if (is_array($valueOrValues)) |
213 | 235 | { |
214 | 236 | return FALSE; |
215 | - } |
|
216 | - else |
|
237 | + } else |
|
217 | 238 | { |
218 | 239 | return $valueOrValues; |
219 | 240 | #print " {$key} => {$value}\r\n"; |
220 | 241 | } |
221 | 242 | } |
222 | - } |
|
223 | - else |
|
243 | + } else |
|
224 | 244 | { |
225 | 245 | #print "Unknow result type"; |
226 | 246 | return FALSE; |
@@ -240,11 +260,9 @@ discard block |
||
240 | 260 | if(isset($part->parts)) { |
241 | 261 | if($part->type == 2) { |
242 | 262 | $flattenedParts = flattenParts($part->parts, $flattenedParts, $prefix.$index.'.', 0, false); |
243 | - } |
|
244 | - elseif($fullPrefix) { |
|
263 | + } elseif($fullPrefix) { |
|
245 | 264 | $flattenedParts = flattenParts($part->parts, $flattenedParts, $prefix.$index.'.'); |
246 | - } |
|
247 | - else { |
|
265 | + } else { |
|
248 | 266 | $flattenedParts = flattenParts($part->parts, $flattenedParts, $prefix); |
249 | 267 | } |
250 | 268 | unset($flattenedParts[$prefix.$index]->parts); |
@@ -277,8 +295,9 @@ discard block |
||
277 | 295 | $ret = array(); |
278 | 296 | $num_found = preg_match_all($pattern, $text, $out); |
279 | 297 | if ( ($num_found !== FALSE) && ($num_found>0) ) { |
280 | - foreach ($out[0] as $url) |
|
281 | - $ret[] = parse_url($url, PHP_URL_HOST); |
|
298 | + foreach ($out[0] as $url) { |
|
299 | + $ret[] = parse_url($url, PHP_URL_HOST); |
|
300 | + } |
|
282 | 301 | } |
283 | 302 | return array_values(array_unique($ret)); |
284 | 303 | } |
@@ -315,12 +334,13 @@ discard block |
||
315 | 334 | } |
316 | 335 | |
317 | 336 | } |
337 | + } else { |
|
338 | + $message = getPart($connection, $messageNumber, 1, $structure->encoding); |
|
318 | 339 | } |
319 | - else |
|
320 | - $message = getPart($connection, $messageNumber, 1, $structure->encoding); |
|
321 | 340 | |
322 | - if ( !empty($message) ) |
|
323 | - return getDomains($message); |
|
341 | + if ( !empty($message) ) { |
|
342 | + return getDomains($message); |
|
343 | + } |
|
324 | 344 | return array(); |
325 | 345 | } |
326 | 346 | |
@@ -355,7 +375,9 @@ discard block |
||
355 | 375 | $fileb= dirname(__FILE__) . '/' . $cf['report']['badreportFile']["$type"]; |
356 | 376 | $m_mail = imap_open('{'.$cf['imap']['mailhost'].':143/imap/novalidate-cert/authuser='.$cf['imap']['authuser'].'}'.$cf['imap']['folder']["$type"], $cf['imap']['account'],$cf['imap']['authpassword'], OP_READONLY) |
357 | 377 | or syslog (LOG_EMERG, $cf['syslog']['user'].': Error in IMAP connection to <'.$cf['imap']['mailhost'].'>: ' . imap_last_error()); |
358 | - if ( !$m_mail ) exit(254); |
|
378 | + if ( !$m_mail ) { |
|
379 | + exit(254); |
|
380 | + } |
|
359 | 381 | |
360 | 382 | |
361 | 383 | syslog (LOG_INFO,$cf['syslog']['user'].': Successfully connected to <'.$cf['imap']['mailhost'].">; Reading $type messages of last ".$cf['imap']['oldestday'].' days...'); |
@@ -367,21 +389,31 @@ discard block |
||
367 | 389 | // Order results starting from newest message |
368 | 390 | if ( empty($m_search) ) { |
369 | 391 | syslog (LOG_INFO,$cf['syslog']['user'].": No mail found in $type folder. No reports written for $type."); |
370 | - if ( $ierr = imap_errors() ) |
|
371 | - foreach ( $ierr as $thiserr ) |
|
392 | + if ( $ierr = imap_errors() ) { |
|
393 | + foreach ( $ierr as $thiserr ) |
|
372 | 394 | syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr"); |
373 | - if ( $ierr = imap_alerts() ) |
|
374 | - foreach ( $ierr as $thiserr ) |
|
395 | + } |
|
396 | + if ( $ierr = imap_alerts() ) { |
|
397 | + foreach ( $ierr as $thiserr ) |
|
375 | 398 | syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr"); |
399 | + } |
|
376 | 400 | imap_close( $m_mail ); |
377 | - if ( file_exists( $file ) ) unlink ($file); |
|
378 | - if ( file_exists( $filed ) ) unlink ($filed); |
|
379 | - if ( file_exists( $fileb ) ) unlink ($fileb); |
|
401 | + if ( file_exists( $file ) ) { |
|
402 | + unlink ($file); |
|
403 | + } |
|
404 | + if ( file_exists( $filed ) ) { |
|
405 | + unlink ($filed); |
|
406 | + } |
|
407 | + if ( file_exists( $fileb ) ) { |
|
408 | + unlink ($fileb); |
|
409 | + } |
|
380 | 410 | return FALSE; |
381 | 411 | } |
382 | 412 | $nmes = count ($m_search); |
383 | 413 | syslog (LOG_INFO,$cf['syslog']['user'].": Found $nmes mail in $type folder."); |
384 | - if ($nmes>0) rsort($m_search); |
|
414 | + if ($nmes>0) { |
|
415 | + rsort($m_search); |
|
416 | + } |
|
385 | 417 | |
386 | 418 | // Create report file |
387 | 419 | |
@@ -445,10 +477,11 @@ discard block |
||
445 | 477 | |
446 | 478 | if (in_array($uid,array_keys($ipuid['uid']))) { |
447 | 479 | $ipuid['uid']["$uid"]['count']++; //number of learn by this uid |
448 | - if (!in_array($ip,$ipuid['uid']["$uid"])) |
|
449 | - $ipuid['uid']["$uid"][]=$ip; //ips learned by this uid |
|
450 | - } |
|
451 | - else { |
|
480 | + if (!in_array($ip,$ipuid['uid']["$uid"])) { |
|
481 | + $ipuid['uid']["$uid"][]=$ip; |
|
482 | + } |
|
483 | + //ips learned by this uid |
|
484 | + } else { |
|
452 | 485 | $ipuid['uid']["$uid"]['count'] = 1; |
453 | 486 | $ipuid['uid']["$uid"][]=$ip; |
454 | 487 | $ipuid['uid']['count']++; //number of unique uids |
@@ -456,10 +489,11 @@ discard block |
||
456 | 489 | |
457 | 490 | if (in_array($ip,array_keys($ipuid['ip']))) { |
458 | 491 | $ipuid['ip']["$ip"]['count']++; //number of time this ip appears in different messages |
459 | - if (!in_array($uid,$ipuid['ip']["$ip"])) |
|
460 | - $ipuid['ip']["$ip"][]=$uid; //uids that learned this ip |
|
461 | - } |
|
462 | - else { |
|
492 | + if (!in_array($uid,$ipuid['ip']["$ip"])) { |
|
493 | + $ipuid['ip']["$ip"][]=$uid; |
|
494 | + } |
|
495 | + //uids that learned this ip |
|
496 | + } else { |
|
463 | 497 | $ipuid['ip']["$ip"]['count'] = 1; |
464 | 498 | $ipuid['ip']["$ip"][]=$uid; |
465 | 499 | $ipuid['ip']['count']++; //number of unique ips |
@@ -469,10 +503,11 @@ discard block |
||
469 | 503 | $domuid['count']++; |
470 | 504 | if (in_array($uid,array_keys($domuid['uid']))) { |
471 | 505 | $domuid['uid']["$uid"]['count']++; //number of learn by this uid |
472 | - if (!in_array($dom,$domuid['uid']["$uid"])) |
|
473 | - $domuid['uid']["$uid"][]=$dom; //domains learned by this uid |
|
474 | - } |
|
475 | - else { |
|
506 | + if (!in_array($dom,$domuid['uid']["$uid"])) { |
|
507 | + $domuid['uid']["$uid"][]=$dom; |
|
508 | + } |
|
509 | + //domains learned by this uid |
|
510 | + } else { |
|
476 | 511 | $domuid['uid']["$uid"]['count'] = 1; |
477 | 512 | $domuid['uid']["$uid"][]=$dom; |
478 | 513 | $domuid['uid']['count']++; //number of unique uids |
@@ -480,10 +515,11 @@ discard block |
||
480 | 515 | |
481 | 516 | if (in_array($dom,array_keys($domuid['dom']))) { |
482 | 517 | $domuid['dom']["$dom"]['count']++; //number of learn with this domain |
483 | - if (!in_array($uid,$domuid['dom']["$dom"])) |
|
484 | - $domuid['dom']["$dom"][]=$uid; //uids that learned this domain |
|
485 | - } |
|
486 | - else { |
|
518 | + if (!in_array($uid,$domuid['dom']["$dom"])) { |
|
519 | + $domuid['dom']["$dom"][]=$uid; |
|
520 | + } |
|
521 | + //uids that learned this domain |
|
522 | + } else { |
|
487 | 523 | $domuid['dom']["$dom"]['count'] = 1; |
488 | 524 | $domuid['dom']["$dom"][]=$uid; |
489 | 525 | $domuid['dom']['count']++; //number of unique domains |
@@ -500,21 +536,30 @@ discard block |
||
500 | 536 | |
501 | 537 | /* Update HTML report */ |
502 | 538 | fwrite($fp,updateReport ( $ip,$uid,$ipuid['ip']["$ip"]['count'],$ipuid['uid']["$uid"]['count'],$host,$dateClient,$mid,$dateReceived) ); |
503 | - } |
|
504 | - else { /* Bad learn */ |
|
539 | + } else { /* Bad learn */ |
|
505 | 540 | |
506 | - if (in_array($uid,array_keys($uidbad['uid']))) |
|
507 | - $uidbad['uid']["$uid"]['count']++; //number of bad learn by this uid |
|
541 | + if (in_array($uid,array_keys($uidbad['uid']))) { |
|
542 | + $uidbad['uid']["$uid"]['count']++; |
|
543 | + } |
|
544 | + //number of bad learn by this uid |
|
508 | 545 | else { |
509 | 546 | $uidbad['uid']["$uid"]['count'] = 1; |
510 | 547 | $uidbad['uid']["$uid"][]=$uid; |
511 | 548 | $uidbad['count']++; //numeber of unique bad uids |
512 | 549 | } |
513 | 550 | /* The reason of bad report */ |
514 | - if ($host === FALSE) $reason = 'This mail was not received by recognized MX host'; |
|
515 | - if ($dateReceived === FALSE) $reason = 'This mail was not submitted to recognized MSA for learn'; |
|
516 | - if ($uid=='unknown') $reason = 'The uid of this mail was not found in splunk log'; |
|
517 | - if (!isset($reason)) $reason = '?'; |
|
551 | + if ($host === FALSE) { |
|
552 | + $reason = 'This mail was not received by recognized MX host'; |
|
553 | + } |
|
554 | + if ($dateReceived === FALSE) { |
|
555 | + $reason = 'This mail was not submitted to recognized MSA for learn'; |
|
556 | + } |
|
557 | + if ($uid=='unknown') { |
|
558 | + $reason = 'The uid of this mail was not found in splunk log'; |
|
559 | + } |
|
560 | + if (!isset($reason)) { |
|
561 | + $reason = '?'; |
|
562 | + } |
|
518 | 563 | |
519 | 564 | fwrite( $fpb,updatebadReport ( $uid,$dateClient,$mid,$dateReceived,$reason ) ); |
520 | 565 | } |
@@ -536,9 +581,9 @@ discard block |
||
536 | 581 | fwrite($fpd, '<hr><h2>Summary Report</h2><h5>Listing policy: domains must be learned at least '.$cf['listingdom']['threshold']["$type"].' times from at least '.$cf['listingdom']['thresholduid']["$type"].' different valid uids.</h5>' ); |
537 | 582 | |
538 | 583 | /* Make MYSQL connection */ |
539 | - if ( $cf['listingip']['onlyReport']["$type"] && $cf['listingdom']['onlyReport']["$type"] ) |
|
540 | - $mysqli = NULL; |
|
541 | - else { |
|
584 | + if ( $cf['listingip']['onlyReport']["$type"] && $cf['listingdom']['onlyReport']["$type"] ) { |
|
585 | + $mysqli = NULL; |
|
586 | + } else { |
|
542 | 587 | $mysqli = new mysqli($myconnArray['dbhost'], $myconnArray['userdb'], $myconnArray['pwd'], $myconnArray['db'], $myconnArray['dbport']); |
543 | 588 | if ($mysqli->connect_error) { |
544 | 589 | syslog (LOG_EMERG, $cf['syslog']['user'].': Connect Error (' . $mysqli->connect_errno . ') ' |
@@ -557,8 +602,9 @@ discard block |
||
557 | 602 | fwrite($fpd,file_get_contents(dirname(__FILE__) . '/' . $cf['report']['reportTemplateFooter'])); |
558 | 603 | fclose($fpd); |
559 | 604 | |
560 | - if ( !($cf['listingip']['onlyReport']["$type"] && $cf['listingdom']['onlyReport']["$type"]) ) |
|
561 | - $mysqli->close(); |
|
605 | + if ( !($cf['listingip']['onlyReport']["$type"] && $cf['listingdom']['onlyReport']["$type"]) ) { |
|
606 | + $mysqli->close(); |
|
607 | + } |
|
562 | 608 | |
563 | 609 | fwrite($fpb, '</table>'); |
564 | 610 | fwrite( $fpb,summaryBadReport( $uidbad ) ); |
@@ -566,12 +612,14 @@ discard block |
||
566 | 612 | fclose($fpb); |
567 | 613 | syslog (LOG_INFO,$cf['syslog']['user'].': Report files written. Listing job for '.$type.' terminated.'); |
568 | 614 | |
569 | - if ( $ierr = imap_errors() ) |
|
570 | - foreach ( $ierr as $thiserr ) |
|
615 | + if ( $ierr = imap_errors() ) { |
|
616 | + foreach ( $ierr as $thiserr ) |
|
571 | 617 | syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr"); |
572 | - if ( $ierr = imap_alerts() ) |
|
573 | - foreach ( $ierr as $thiserr ) |
|
618 | + } |
|
619 | + if ( $ierr = imap_alerts() ) { |
|
620 | + foreach ( $ierr as $thiserr ) |
|
574 | 621 | syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr"); |
622 | + } |
|
575 | 623 | imap_close($m_mail); |
576 | 624 | } |
577 | 625 | ?> |
@@ -3,22 +3,27 @@ discard block |
||
3 | 3 | ini_set('error_log', 'syslog'); |
4 | 4 | |
5 | 5 | function username() { |
6 | - if (isset ($_SERVER['REMOTE_USER'])) $user = $_SERVER['REMOTE_USER']; |
|
7 | - else if (isset ($_SERVER['USER'])) $user = $_SERVER['USER']; |
|
8 | - else $user='unknown'; |
|
6 | + if (isset ($_SERVER['REMOTE_USER'])) { |
|
7 | + $user = $_SERVER['REMOTE_USER']; |
|
8 | + } else if (isset ($_SERVER['USER'])) { |
|
9 | + $user = $_SERVER['USER']; |
|
10 | + } else { |
|
11 | + $user='unknown'; |
|
12 | + } |
|
9 | 13 | return $user; |
10 | 14 | } |
11 | 15 | |
12 | 16 | function checkSSL() { |
13 | - if ( empty( $_SERVER['HTTPS'] ) ) |
|
14 | - printf ('<div id="content">Ehi sysadmin! Your site is not secure. Please enable SSL on your server and configure a redirect, such as' . |
|
17 | + if ( empty( $_SERVER['HTTPS'] ) ) { |
|
18 | + printf ('<div id="content">Ehi sysadmin! Your site is not secure. Please enable SSL on your server and configure a redirect, such as' . |
|
15 | 19 | '<pre>' . |
16 | 20 | htmlspecialchars('<VirtualHost *:80>' . "\n" . |
17 | 21 | ' ServerName %s' . "\n" . |
18 | 22 | ' Redirect permanent / https://%s/' . "\n" . |
19 | 23 | '</VirtualHost>') . |
20 | 24 | '</pre></div>', gethostname(), gethostname()); |
21 | -} |
|
25 | + } |
|
26 | + } |
|
22 | 27 | |
23 | 28 | function myConnect($host, $user, $pass, $db, $port, $tablelist, $typedesc, $loguser) { |
24 | 29 | $db = ( $tablelist["$typedesc"]['milter'] ) ? $tablelist["$typedesc"]['name'] : $db; |
@@ -99,8 +104,9 @@ discard block |
||
99 | 104 | if ($myconn->query($query) === TRUE) { |
100 | 105 | syslog(LOG_INFO, "$user: $type <$value> successfully listed on <$table> for $expQ $expUnit."); |
101 | 106 | $result=TRUE; |
107 | + } else { |
|
108 | + syslog(LOG_ERR, "$user: Error: ".$myconn->error); |
|
102 | 109 | } |
103 | - else syslog(LOG_ERR, "$user: Error: ".$myconn->error); |
|
104 | 110 | return $result; |
105 | 111 | } |
106 | 112 | |
@@ -110,8 +116,7 @@ discard block |
||
110 | 116 | if ( $exptime ) { /* Entry already listed */ |
111 | 117 | $nlist = '`nlist`'; |
112 | 118 | $exptime = sprintf('\'%s\'', $exptime); /* Eh MySQL... an hour lost to notice this */ |
113 | - } |
|
114 | - else { |
|
119 | + } else { |
|
115 | 120 | $exptime = 'CURRENT_TIMESTAMP'; |
116 | 121 | $nlist = '`nlist` + 1'; |
117 | 122 | } |
@@ -149,8 +154,9 @@ discard block |
||
149 | 154 | if ($myconn->query($query) === TRUE) { |
150 | 155 | syslog(LOG_INFO, "$user: relist $type <$value> on <$table> for $expQ $expUnit from $exptime."); |
151 | 156 | $result=TRUE; |
157 | + } else { |
|
158 | + syslog (LOG_ERR, "$user: Error: ". $myconn->error); |
|
152 | 159 | } |
153 | - else syslog (LOG_ERR, "$user: Error: ". $myconn->error); |
|
154 | 160 | return $result; |
155 | 161 | } |
156 | 162 | |
@@ -173,9 +179,11 @@ discard block |
||
173 | 179 | } |
174 | 180 | |
175 | 181 | |
176 | - if ($return=$myconn->query($query) === TRUE) |
|
177 | - syslog(LOG_INFO, "$user: permanently DELETED $type <$value> from <$table>."); |
|
178 | - else syslog(LOG_ERR, "$user: Error: ". $myconn->error); |
|
182 | + if ($return=$myconn->query($query) === TRUE) { |
|
183 | + syslog(LOG_INFO, "$user: permanently DELETED $type <$value> from <$table>."); |
|
184 | + } else { |
|
185 | + syslog(LOG_ERR, "$user: Error: ". $myconn->error); |
|
186 | + } |
|
179 | 187 | |
180 | 188 | return $return; |
181 | 189 | } |
@@ -197,8 +205,9 @@ discard block |
||
197 | 205 | |
198 | 206 | if ($return=$myconn->query($query) === TRUE) { |
199 | 207 | syslog(LOG_INFO, "$user: change status of $type <$value>. The status is now <$status>"); |
208 | + } else { |
|
209 | + syslog(LOG_ERR, "$user: Error: ". $myconn->error); |
|
200 | 210 | } |
201 | - else syslog(LOG_ERR, "$user: Error: ". $myconn->error); |
|
202 | 211 | return $return; |
203 | 212 | } |
204 | 213 | |
@@ -222,14 +231,16 @@ discard block |
||
222 | 231 | $j++; |
223 | 232 | |
224 | 233 | } while ($myconn->next_result()); |
225 | - } |
|
226 | - else { |
|
234 | + } else { |
|
227 | 235 | syslog(LOG_ERR, "Expire job - Error: ". $myconn->error); |
228 | 236 | $return = FALSE; |
229 | 237 | } |
230 | 238 | } |
231 | - if ( !($return) ) syslog(LOG_EMERG, 'End of Expire job with error. See above logs. SQL Connection terminated'); |
|
232 | - else syslog(LOG_INFO, 'Successfully End of Expire job. SQL Connection successfully terminated.'); |
|
239 | + if ( !($return) ) { |
|
240 | + syslog(LOG_EMERG, 'End of Expire job with error. See above logs. SQL Connection terminated'); |
|
241 | + } else { |
|
242 | + syslog(LOG_INFO, 'Successfully End of Expire job. SQL Connection successfully terminated.'); |
|
243 | + } |
|
233 | 244 | return $return; |
234 | 245 | } |
235 | 246 | |
@@ -238,8 +249,11 @@ discard block |
||
238 | 249 | |
239 | 250 | $exp=new DateTime($row['exp']); |
240 | 251 | $now=new DateTime('NOW'); |
241 | - if (($exp > $now) and ($row['active'])) return true; |
|
242 | - else return false; |
|
252 | + if (($exp > $now) and ($row['active'])) { |
|
253 | + return true; |
|
254 | + } else { |
|
255 | + return false; |
|
256 | + } |
|
243 | 257 | |
244 | 258 | } |
245 | 259 | |
@@ -259,10 +273,11 @@ discard block |
||
259 | 273 | END; |
260 | 274 | $activeMilts = explode(',',$value); |
261 | 275 | foreach ( $milts as $milter ) { |
262 | - if ( in_array($milter, $activeMilts) ) |
|
263 | - $selected= 'selected'; |
|
264 | - else |
|
265 | - $selected= NULL; |
|
276 | + if ( in_array($milter, $activeMilts) ) { |
|
277 | + $selected= 'selected'; |
|
278 | + } else { |
|
279 | + $selected= NULL; |
|
280 | + } |
|
266 | 281 | $button .= sprintf('<option value="%s" %s>%s</option>', $milter, $selected, $milter); |
267 | 282 | } |
268 | 283 | $button .= '</select></div><input class="button" name="Change" type="submit" value="Change" /></form>'; |
@@ -279,9 +294,12 @@ discard block |
||
279 | 294 | $whynot=NULL; |
280 | 295 | switch ($what) { |
281 | 296 | case 'Ok': |
282 | - if ($lock) return NULL; |
|
283 | - if (in_array($user,array_keys($adm))) |
|
284 | - if ( consistentListing($myconn,$alltables,$typedesc,$value,$whynot) ) return require('relistButton.php'); |
|
297 | + if ($lock) { |
|
298 | + return NULL; |
|
299 | + } |
|
300 | + if (in_array($user,array_keys($adm))) { |
|
301 | + if ( consistentListing($myconn,$alltables,$typedesc,$value,$whynot) ) return require('relistButton.php'); |
|
302 | + } |
|
285 | 303 | return htmlspecialchars($whynot); |
286 | 304 | case 'Listed': |
287 | 305 | case 'WhiteListed': |
@@ -293,7 +311,9 @@ discard block |
||
293 | 311 | function consistentListing($myconn,$alltables,$typed,$value,&$warn) { |
294 | 312 | /* Check if there are no pending mislisting */ |
295 | 313 | $warn = NULL; |
296 | - if (! isset($alltables["$typed"]['depend']) ) return TRUE; |
|
314 | + if (! isset($alltables["$typed"]['depend']) ) { |
|
315 | + return TRUE; |
|
316 | + } |
|
297 | 317 | foreach ($alltables["$typed"]['depend'] as $listdep) { |
298 | 318 | if ($alltables["$typed"]['field'] != $alltables["$listdep"]['field'] ) { |
299 | 319 | $warn = "Config ERROR: <$typed> and <$listdep> are of different types! I can't check consistency!"; |
@@ -324,10 +344,10 @@ discard block |
||
324 | 344 | |
325 | 345 | if ( $tablelist['milter'] ) { |
326 | 346 | $table = milterTable($type); |
327 | - if ($value == 'ALL') |
|
328 | - $query = sprintf('SELECT *, GROUP_CONCAT(milt.name) as miltnames FROM `%s` LEFT JOIN milt ON (%s.idmilt=milt.id) GROUP by idmilt', |
|
347 | + if ($value == 'ALL') { |
|
348 | + $query = sprintf('SELECT *, GROUP_CONCAT(milt.name) as miltnames FROM `%s` LEFT JOIN milt ON (%s.idmilt=milt.id) GROUP by idmilt', |
|
329 | 349 | $table,$table); |
330 | - else { |
|
350 | + } else { |
|
331 | 351 | switch ($type) { |
332 | 352 | case 'network': |
333 | 353 | list($sub['net'],$sub['mask'])=explode('/',$value); |
@@ -352,12 +372,11 @@ discard block |
||
352 | 372 | return FALSE; |
353 | 373 | } |
354 | 374 | } |
355 | - } |
|
356 | - |
|
357 | - else { |
|
375 | + } else { |
|
358 | 376 | $table = $tablelist['name']; |
359 | - if ($value == 'ALL') $query = 'select * from '.$table; |
|
360 | - else { |
|
377 | + if ($value == 'ALL') { |
|
378 | + $query = 'select * from '.$table; |
|
379 | + } else { |
|
361 | 380 | switch ($type) { |
362 | 381 | case 'ip': |
363 | 382 | $query= "select * from $table where $type = INET_ATON('$value')"; |
@@ -379,8 +398,9 @@ discard block |
||
379 | 398 | } |
380 | 399 | |
381 | 400 | $result = $myconn->query($query); |
382 | - if($result === false) |
|
383 | - syslog(LOG_EMERG, "ALERT: Query <$query> failed: ".$myconn->error); |
|
401 | + if($result === false) { |
|
402 | + syslog(LOG_EMERG, "ALERT: Query <$query> failed: ".$myconn->error); |
|
403 | + } |
|
384 | 404 | return $result; |
385 | 405 | } |
386 | 406 | |
@@ -397,12 +417,14 @@ discard block |
||
397 | 417 | |
398 | 418 | function isFull($myconn,$typedesc,$alltables) { |
399 | 419 | if (isset($alltables["$typedesc"]['limit'])) { |
400 | - if ( $alltables["$typedesc"]['milter'] ) |
|
401 | - $tab = 'net'; |
|
402 | - else |
|
403 | - $tab = $alltables["$typedesc"]['name']; |
|
404 | - if ( countListed($myconn,$tab) >= $alltables["$typedesc"]['limit'] ) |
|
405 | - return TRUE; |
|
420 | + if ( $alltables["$typedesc"]['milter'] ) { |
|
421 | + $tab = 'net'; |
|
422 | + } else { |
|
423 | + $tab = $alltables["$typedesc"]['name']; |
|
424 | + } |
|
425 | + if ( countListed($myconn,$tab) >= $alltables["$typedesc"]['limit'] ) { |
|
426 | + return TRUE; |
|
427 | + } |
|
406 | 428 | } |
407 | 429 | return FALSE; |
408 | 430 | } |
@@ -415,14 +437,17 @@ discard block |
||
415 | 437 | $tabhtm = <<<END |
416 | 438 | <table><thead><tr><th>$type</th><th title="The date this object has been listed for the first time">DateAdd</th><th>DateMod</th><th>Exp</th><th>Status</th><th title="Number of times this object has been listed">#List</th> |
417 | 439 | END; |
418 | - if ( $tables["$typedesc"]['milter'] ) |
|
419 | - $tabhtm .= '<th title="Milter active for this object">Milters</th>'; |
|
440 | + if ( $tables["$typedesc"]['milter'] ) { |
|
441 | + $tabhtm .= '<th title="Milter active for this object">Milters</th>'; |
|
442 | + } |
|
420 | 443 | $tabhtm .= '<th>Authored by</th><th width="250">Reason</th><th>Action</th></tr></thead><tfoot><tr></tr></tfoot><tbody>'."\n"; |
421 | 444 | |
422 | - if ($type == 'domain') |
|
423 | - $value = nsdom($value); |
|
424 | - if (is_null($value)) |
|
425 | - return FALSE; |
|
445 | + if ($type == 'domain') { |
|
446 | + $value = nsdom($value); |
|
447 | + } |
|
448 | + if (is_null($value)) { |
|
449 | + return FALSE; |
|
450 | + } |
|
426 | 451 | |
427 | 452 | $result = searchentry ($myconn,$value,$tables["$typedesc"]); |
428 | 453 | if ($result) { |
@@ -430,18 +455,23 @@ discard block |
||
430 | 455 | |
431 | 456 | /* Check for limit in number of listed items */ |
432 | 457 | $full = isFull($myconn,$typedesc,$tables); |
433 | - if ($full) print '<p>'.htmlspecialchars("$typedesc has reached maximum value of ".$tables["$typedesc"]['limit'].' listed items.').'</p>'; |
|
458 | + if ($full) { |
|
459 | + print '<p>'.htmlspecialchars("$typedesc has reached maximum value of ".$tables["$typedesc"]['limit'].' listed items.').'</p>'; |
|
460 | + } |
|
434 | 461 | |
435 | 462 | if ($result->num_rows) { |
436 | 463 | print $tabhtm; |
437 | 464 | $i=0; |
438 | 465 | while ($riga = $result->fetch_array(MYSQLI_ASSOC)) { |
439 | 466 | if (isListed($riga)) { |
440 | - if ($tables["$typedesc"]['bl']) $listed='Listed'; |
|
441 | - else $listed='WhiteListed'; |
|
442 | - } |
|
443 | - else |
|
444 | - $listed='Ok'; |
|
467 | + if ($tables["$typedesc"]['bl']) { |
|
468 | + $listed='Listed'; |
|
469 | + } else { |
|
470 | + $listed='WhiteListed'; |
|
471 | + } |
|
472 | + } else { |
|
473 | + $listed='Ok'; |
|
474 | + } |
|
445 | 475 | |
446 | 476 | switch ($type) { |
447 | 477 | case 'ip': |
@@ -454,27 +484,30 @@ discard block |
||
454 | 484 | $element = $riga["$type"]; |
455 | 485 | } |
456 | 486 | |
457 | - if ( $tables["$typedesc"]['milter'] AND checkMilterConf($tables["$typedesc"]) ) |
|
458 | - printf ("<tr id=id$i><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td nowrap id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td>%s</td></tr>\n", |
|
487 | + if ( $tables["$typedesc"]['milter'] AND checkMilterConf($tables["$typedesc"]) ) { |
|
488 | + printf ("<tr id=id$i><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td nowrap id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td>%s</td></tr>\n", |
|
459 | 489 | $element, $riga['date'], $riga['datemod'], $riga['exp'], $riga['active'], $riga['nlist'], askMilter($myconn,$i,$element,$typedesc,$riga['idmilt'],$riga['miltnames'],$user,$adm), $riga['user'],htmlspecialchars($riga['reason']),ask($myconn,$i,$listed,$tables,$typedesc,$element,$full,$user,$adm)); |
460 | - else |
|
461 | - printf ("<tr id=id$i><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td>%s</td></tr>\n", |
|
490 | + } else { |
|
491 | + printf ("<tr id=id$i><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td id='status$listed'>%s</td><td>%s</td></tr>\n", |
|
462 | 492 | $element, $riga['date'], $riga['datemod'], $riga['exp'], $riga['active'], $riga['nlist'], $riga['user'],htmlspecialchars($riga['reason']),ask($myconn,$i,$listed,$tables,$typedesc,$element,$full,$user,$adm)); |
493 | + } |
|
463 | 494 | $i++; |
464 | 495 | } |
465 | 496 | print '</tbody></table>'; |
466 | - } |
|
467 | - else { |
|
497 | + } else { |
|
468 | 498 | print "<pre>$type <$value> is not listed!\n</pre>"; |
469 | - if ( in_array($user,array_keys($adm)) AND ($value != 'ALL') ) |
|
470 | - if ( (!$full) AND (consistentListing($myconn,$tables,$typedesc,$value,$whynot)) ) require_once('listForm.php'); |
|
471 | - else print '<p>'.htmlspecialchars($whynot).'</p>'; |
|
499 | + if ( in_array($user,array_keys($adm)) AND ($value != 'ALL') ) { |
|
500 | + if ( (!$full) AND (consistentListing($myconn,$tables,$typedesc,$value,$whynot)) ) require_once('listForm.php'); |
|
501 | + } else { |
|
502 | + print '<p>'.htmlspecialchars($whynot).'</p>'; |
|
503 | + } |
|
472 | 504 | |
473 | 505 | } |
474 | 506 | $result->free(); |
507 | + } else { |
|
508 | + print '<pre>Query error or something wrong in DB schema'."\n</pre>"; |
|
509 | + } |
|
475 | 510 | } |
476 | - else print '<pre>Query error or something wrong in DB schema'."\n</pre>"; |
|
477 | -} |
|
478 | 511 | |
479 | 512 | |
480 | 513 | |
@@ -517,24 +550,32 @@ discard block |
||
517 | 550 | $old_mailfrom = ini_get("sendmail_from"); |
518 | 551 | ini_set("sendmail_from", $from); |
519 | 552 | $params = sprintf("-oi -f %s", '<>'); |
520 | - if (!(mail($to,$sbj, $body,$headers,$params))) $flag=FALSE; |
|
521 | - else $flag=TRUE; |
|
522 | - if (isset($old_mailfrom)) |
|
523 | - ini_set("sendmail_from", $old_mailfrom); |
|
524 | - } |
|
525 | - else { |
|
526 | - if (!(mail($to,$sbj, $body,$headers))) $flag=FALSE; |
|
527 | - else $flag=TRUE; |
|
553 | + if (!(mail($to,$sbj, $body,$headers,$params))) { |
|
554 | + $flag=FALSE; |
|
555 | + } else { |
|
556 | + $flag=TRUE; |
|
557 | + } |
|
558 | + if (isset($old_mailfrom)) { |
|
559 | + ini_set("sendmail_from", $old_mailfrom); |
|
560 | + } |
|
561 | + } else { |
|
562 | + if (!(mail($to,$sbj, $body,$headers))) { |
|
563 | + $flag=FALSE; |
|
564 | + } else { |
|
565 | + $flag=TRUE; |
|
566 | + } |
|
528 | 567 | } |
529 | 568 | return $flag; |
530 | 569 | } |
531 | 570 | |
532 | 571 | function emailToNotify($notify_file,$dom) { |
533 | 572 | $ini_array = parse_ini_file($notify_file); |
534 | - if (in_array($dom,array_keys($ini_array))) |
|
535 | - return $ini_array["$dom"]; |
|
536 | - else return FALSE; |
|
537 | -} |
|
573 | + if (in_array($dom,array_keys($ini_array))) { |
|
574 | + return $ini_array["$dom"]; |
|
575 | + } else { |
|
576 | + return FALSE; |
|
577 | + } |
|
578 | + } |
|
538 | 579 | |
539 | 580 | |
540 | 581 | function searchAndList ($myconn,$loguser,$tables,$typedesc,$value,$unit,&$quantity,&$reason) { |
@@ -582,8 +623,7 @@ discard block |
||
582 | 623 | $reason); |
583 | 624 | $quantity = 1; |
584 | 625 | $unit = 'DAY'; |
585 | - } |
|
586 | - else { |
|
626 | + } else { |
|
587 | 627 | /* Entry delisted */ |
588 | 628 | $quantity *= $thisentry['nlist']; |
589 | 629 | $expdate = 0; /* This forces expiration from CURRENT_TIMESTAMP */ |
@@ -614,9 +654,10 @@ discard block |
||
614 | 654 | $net = new \dautkom\ipv4\IPv4(); |
615 | 655 | $range = $net->address($addressA)->mask($maskA)->getRange(); |
616 | 656 | $ips = ipRange($range); |
617 | - foreach ( $ips as $ip ) |
|
618 | - if ( $net->address($addressB)->mask($maskB)->has($ip) ) |
|
657 | + foreach ( $ips as $ip ) { |
|
658 | + if ( $net->address($addressB)->mask($maskB)->has($ip) ) |
|
619 | 659 | return TRUE; |
660 | + } |
|
620 | 661 | return FALSE; |
621 | 662 | } |
622 | 663 | |
@@ -693,8 +734,9 @@ discard block |
||
693 | 734 | return FALSE; |
694 | 735 | } |
695 | 736 | if ($result->num_rows) { |
696 | - while ($milt = $result->fetch_array(MYSQLI_ASSOC)) |
|
697 | - $milters[] = $milt['name']; |
|
737 | + while ($milt = $result->fetch_array(MYSQLI_ASSOC)) { |
|
738 | + $milters[] = $milt['name']; |
|
739 | + } |
|
698 | 740 | } |
699 | 741 | $result->free(); |
700 | 742 | return $milters; |
@@ -720,12 +762,14 @@ discard block |
||
720 | 762 | $query[] = "DELETE FROM `milt` WHERE (`id` = '$miltID' AND `name` = '$value')"; |
721 | 763 | } |
722 | 764 | } |
723 | - if ( count($query) ) /* This "if" is redundant, because if I call this I already checked there is a change */ |
|
765 | + if ( count($query) ) { |
|
766 | + /* This "if" is redundant, because if I call this I already checked there is a change */ |
|
724 | 767 | /* I update datemod because the user couldn't change */ |
725 | 768 | $query[] = sprintf('UPDATE `%s` SET |
726 | 769 | `user`=\'%s\', |
727 | 770 | `datemod`= CURRENT_TIMESTAMP |
728 | 771 | WHERE `idmilt`=%d', $table, $loguser, $miltID); |
772 | + } |
|
729 | 773 | |
730 | 774 | |
731 | 775 | /* Start a safe transaction: it commits only if all queries happen */ |
@@ -739,19 +783,20 @@ discard block |
||
739 | 783 | } |
740 | 784 | } |
741 | 785 | if ( $ok ) { |
742 | - if ( $myconn->commit() ) |
|
743 | - syslog(LOG_INFO, "$loguser: Milter setting changed successfully."); |
|
744 | - else { |
|
786 | + if ( $myconn->commit() ) { |
|
787 | + syslog(LOG_INFO, "$loguser: Milter setting changed successfully."); |
|
788 | + } else { |
|
745 | 789 | syslog(LOG_ERR, "$loguser: Milter setting NOT changed for an unpredictable COMMIT error."); |
746 | - if ( $myconn->rollback() ) |
|
747 | - syslog(LOG_INFO, "$loguser: rollback succeeded."); |
|
748 | - else |
|
749 | - syslog(LOG_ERR, "$loguser: rollback failed. Your db could be compromized. Check it!"); |
|
790 | + if ( $myconn->rollback() ) { |
|
791 | + syslog(LOG_INFO, "$loguser: rollback succeeded."); |
|
792 | + } else { |
|
793 | + syslog(LOG_ERR, "$loguser: rollback failed. Your db could be compromized. Check it!"); |
|
794 | + } |
|
750 | 795 | $ok = FALSE; |
751 | 796 | } |
797 | + } else { |
|
798 | + syslog(LOG_ERR, "$loguser: Error: Milter setting NOT changed. See at above errors."); |
|
752 | 799 | } |
753 | - else |
|
754 | - syslog(LOG_ERR, "$loguser: Error: Milter setting NOT changed. See at above errors."); |
|
755 | 800 | return $ok; |
756 | 801 | |
757 | 802 | } |
@@ -780,20 +825,24 @@ discard block |
||
780 | 825 | function nsdom($dom) { |
781 | 826 | /* Return the first upper domain (or domain itself) with NS record */ |
782 | 827 | /* checkdnsrr doesn't work with alias... use dns_get_record */ |
783 | - if (dns_get_record ( $dom , DNS_NS )) |
|
784 | - return rtrim($dom, '.'); |
|
785 | - if (dns_get_record ( $dom , DNS_A )) |
|
786 | - return nsdom( ltrim(strstr($dom, '.'), '.') ); |
|
828 | + if (dns_get_record ( $dom , DNS_NS )) { |
|
829 | + return rtrim($dom, '.'); |
|
830 | + } |
|
831 | + if (dns_get_record ( $dom , DNS_A )) { |
|
832 | + return nsdom( ltrim(strstr($dom, '.'), '.') ); |
|
833 | + } |
|
787 | 834 | return NULL; |
788 | 835 | } |
789 | 836 | |
790 | 837 | function isValid($dom) { |
791 | 838 | /* Return TRUE id domain has NS or A record */ |
792 | 839 | if (preg_match('/^(?!:\/\/)([a-zA-Z0-9-]+\.){0,5}[a-zA-Z0-9-][a-zA-Z0-9-]+\.[a-zA-Z]{2,64}?\.{0,1}$/i',$dom) === 1) { |
793 | - if (checkdnsrr ( $dom , 'NS' )) |
|
794 | - return TRUE; |
|
795 | - if (checkdnsrr ( $dom , 'A' )) |
|
796 | - return TRUE; |
|
840 | + if (checkdnsrr ( $dom , 'NS' )) { |
|
841 | + return TRUE; |
|
842 | + } |
|
843 | + if (checkdnsrr ( $dom , 'A' )) { |
|
844 | + return TRUE; |
|
845 | + } |
|
797 | 846 | } |
798 | 847 | return FALSE; |
799 | 848 | } |