@@ -69,9 +69,9 @@ |
||
69 | 69 | /** |
70 | 70 | * Function to clean the data from the Callback Function for optimized display |
71 | 71 | * |
72 | - * @param $email |
|
73 | - * @param $bounce_type |
|
74 | - * @param $remove |
|
72 | + * @param string $email |
|
73 | + * @param string $bounce_type |
|
74 | + * @param boolean $remove |
|
75 | 75 | * |
76 | 76 | * @return mixed |
77 | 77 | */ |
@@ -36,15 +36,15 @@ discard block |
||
36 | 36 | $remove = $displayData['remove']; |
37 | 37 | $removeraw = $displayData['removestat']; |
38 | 38 | |
39 | - $msg = $msgnum . ',' . $currentTime . ',' . $ruleNo . ',' . $ruleCat . ',' . $bounceType . ',' . $removeraw . ',' . $email . ',' . $subject; |
|
39 | + $msg = $msgnum.','.$currentTime.','.$ruleNo.','.$ruleCat.','.$bounceType.','.$removeraw.','.$email.','.$subject; |
|
40 | 40 | |
41 | - $filename = 'logs/bouncelog_' . \date('m') . \date('Y') . '.csv'; |
|
41 | + $filename = 'logs/bouncelog_'.\date('m').\date('Y').'.csv'; |
|
42 | 42 | if (!\file_exists($filename)) { |
43 | - $tmsg = 'Msg#,Current Time,Rule Number,Rule Category,Bounce Type,Status,Email,Subject' . "\n" . $msg; |
|
43 | + $tmsg = 'Msg#,Current Time,Rule Number,Rule Category,Bounce Type,Status,Email,Subject'."\n".$msg; |
|
44 | 44 | } else { |
45 | 45 | $fileContents = \file_get_contents($filename); |
46 | 46 | |
47 | - if (\stripos($fileContents, "\n" . $msgnum . ',') !== false) { |
|
47 | + if (\stripos($fileContents, "\n".$msgnum.',') !== false) { |
|
48 | 48 | $doPutFile = false; |
49 | 49 | } |
50 | 50 | |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | $handle = \fopen($filename, 'ab'); |
55 | 55 | if ($handle) { |
56 | - if (\fwrite($handle, $tmsg . "\n") === false) { |
|
56 | + if (\fwrite($handle, $tmsg."\n") === false) { |
|
57 | 57 | echo 'Cannot write message<br />'; |
58 | 58 | } |
59 | 59 | \fclose($handle); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | echo 'Cannot open file to append<br />'; |
62 | 62 | } |
63 | 63 | |
64 | - echo $msgnum . ': ' . $ruleNo . ' | ' . $ruleCat . ' | ' . $bounceType . ' | ' . $remove . ' | ' . $email . ' | ' . $subject . "<br />\n"; |
|
64 | + echo $msgnum.': '.$ruleNo.' | '.$ruleCat.' | '.$bounceType.' | '.$remove.' | '.$email.' | '.$subject."<br />\n"; |
|
65 | 65 | |
66 | 66 | return true; |
67 | 67 | } |
@@ -109,16 +109,16 @@ discard block |
||
109 | 109 | // change the remove flag from true or 1 to textual representation |
110 | 110 | if (\stripos($remove, 'moved') !== false && \stripos($remove, 'hard') !== false) { |
111 | 111 | $data['removestat'] = 'moved (hard)'; |
112 | - $data['remove'] = '<span style="color:red;">' . 'moved (hard)' . '</span>'; |
|
112 | + $data['remove'] = '<span style="color:red;">'.'moved (hard)'.'</span>'; |
|
113 | 113 | } elseif (\stripos($remove, 'moved') !== false && \stripos($remove, 'soft') !== false) { |
114 | 114 | $data['removestat'] = 'moved (soft)'; |
115 | - $data['remove'] = '<span style="color:gray;">' . 'moved (soft)' . '</span>'; |
|
115 | + $data['remove'] = '<span style="color:gray;">'.'moved (soft)'.'</span>'; |
|
116 | 116 | } elseif ($remove == true || $remove == '1') { |
117 | 117 | $data['removestat'] = 'deleted'; |
118 | - $data['remove'] = '<span style="color:red;">' . 'deleted' . '</span>'; |
|
118 | + $data['remove'] = '<span style="color:red;">'.'deleted'.'</span>'; |
|
119 | 119 | } else { |
120 | 120 | $data['removestat'] = 'not deleted'; |
121 | - $data['remove'] = '<span style="color:gray;">' . 'not deleted' . '</span>'; |
|
121 | + $data['remove'] = '<span style="color:gray;">'.'not deleted'.'</span>'; |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | return $data; |
@@ -58,9 +58,9 @@ |
||
58 | 58 | /** |
59 | 59 | * Function to clean the data from the Callback Function for optimized display |
60 | 60 | * |
61 | - * @param $email |
|
62 | - * @param $bounceType |
|
63 | - * @param $remove |
|
61 | + * @param string $email |
|
62 | + * @param string $bounceType |
|
63 | + * @param boolean $remove |
|
64 | 64 | * |
65 | 65 | * @return mixed |
66 | 66 | */ |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | $emailAddy = $displayData['emailAddy']; |
51 | 51 | $remove = $displayData['remove']; |
52 | 52 | |
53 | - echo $msgnum . ': ' . $ruleNo . ' | ' . $ruleCat . ' | ' . $bounceType . ' | ' . $remove . ' | ' . $email . ' | ' . $subject . "<br />\n"; |
|
53 | + echo $msgnum.': '.$ruleNo.' | '.$ruleCat.' | '.$bounceType.' | '.$remove.' | '.$email.' | '.$subject."<br />\n"; |
|
54 | 54 | |
55 | 55 | return true; |
56 | 56 | } |
@@ -97,16 +97,16 @@ discard block |
||
97 | 97 | // change the remove flag from true or 1 to textual representation |
98 | 98 | if (\stripos($remove, 'moved') !== false && \stripos($remove, 'hard') !== false) { |
99 | 99 | $data['removestat'] = 'moved (hard)'; |
100 | - $data['remove'] = '<span style="color:red;">' . 'moved (hard)' . '</span>'; |
|
100 | + $data['remove'] = '<span style="color:red;">'.'moved (hard)'.'</span>'; |
|
101 | 101 | } elseif (\stripos($remove, 'moved') !== false && \stripos($remove, 'soft') !== false) { |
102 | 102 | $data['removestat'] = 'moved (soft)'; |
103 | - $data['remove'] = '<span style="color:gray;">' . 'moved (soft)' . '</span>'; |
|
103 | + $data['remove'] = '<span style="color:gray;">'.'moved (soft)'.'</span>'; |
|
104 | 104 | } elseif ($remove == true || $remove == '1') { |
105 | 105 | $data['removestat'] = 'deleted'; |
106 | - $data['remove'] = '<span style="color:red;">' . 'deleted' . '</span>'; |
|
106 | + $data['remove'] = '<span style="color:red;">'.'deleted'.'</span>'; |
|
107 | 107 | } else { |
108 | 108 | $data['removestat'] = 'not deleted'; |
109 | - $data['remove'] = '<span style="color:gray;">' . 'not deleted' . '</span>'; |
|
109 | + $data['remove'] = '<span style="color:gray;">'.'not deleted'.'</span>'; |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | return $data; |
@@ -58,9 +58,9 @@ |
||
58 | 58 | /** |
59 | 59 | * Function to clean the data from the Callback Function for optimized display |
60 | 60 | * |
61 | - * @param $email |
|
62 | - * @param $bounceType |
|
63 | - * @param $remove |
|
61 | + * @param string $email |
|
62 | + * @param string $bounceType |
|
63 | + * @param boolean $remove |
|
64 | 64 | * |
65 | 65 | * @return mixed |
66 | 66 | */ |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $emailName = $displayData['emailName']; |
33 | 33 | $emailAddy = $displayData['emailAddy']; |
34 | 34 | $remove = $displayData['remove']; |
35 | - echo $msgnum . ': ' . $ruleNo . ' | ' . $ruleCat . ' | ' . $bounceType . ' | ' . $remove . ' | ' . $email . ' | ' . $subject . "<br />\n"; |
|
35 | + echo $msgnum.': '.$ruleNo.' | '.$ruleCat.' | '.$bounceType.' | '.$remove.' | '.$email.' | '.$subject."<br />\n"; |
|
36 | 36 | |
37 | 37 | return true; |
38 | 38 | } |
@@ -80,16 +80,16 @@ discard block |
||
80 | 80 | // change the remove flag from true or 1 to textual representation |
81 | 81 | if (\stripos($remove, 'moved') !== false && \stripos($remove, 'hard') !== false) { |
82 | 82 | $data['removestat'] = 'moved (hard)'; |
83 | - $data['remove'] = '<span style="color:red;">' . 'moved (hard)' . '</span>'; |
|
83 | + $data['remove'] = '<span style="color:red;">'.'moved (hard)'.'</span>'; |
|
84 | 84 | } elseif (\stripos($remove, 'moved') !== false && \stripos($remove, 'soft') !== false) { |
85 | 85 | $data['removestat'] = 'moved (soft)'; |
86 | - $data['remove'] = '<span style="color:gray;">' . 'moved (soft)' . '</span>'; |
|
86 | + $data['remove'] = '<span style="color:gray;">'.'moved (soft)'.'</span>'; |
|
87 | 87 | } elseif ($remove == true || $remove == '1') { |
88 | 88 | $data['removestat'] = 'deleted'; |
89 | - $data['remove'] = '<span style="color:red;">' . 'deleted' . '</span>'; |
|
89 | + $data['remove'] = '<span style="color:red;">'.'deleted'.'</span>'; |
|
90 | 90 | } else { |
91 | 91 | $data['removestat'] = 'not deleted'; |
92 | - $data['remove'] = '<span style="color:gray;">' . 'not deleted' . '</span>'; |
|
92 | + $data['remove'] = '<span style="color:gray;">'.'not deleted'.'</span>'; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | return $data; |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | echo '<hr style="width:200px;" />'; |
86 | 86 | $time_end = microtime_float(); |
87 | 87 | $time = $time_end - $time_start; |
88 | -echo 'Seconds to process: ' . $time . '<br />'; |
|
88 | +echo 'Seconds to process: '.$time.'<br />'; |
|
89 | 89 | |
90 | 90 | /** |
91 | 91 | * @return float |
@@ -94,5 +94,5 @@ discard block |
||
94 | 94 | { |
95 | 95 | list($usec, $sec) = \explode(' ', \microtime()); |
96 | 96 | |
97 | - return (float) $usec + (float) $sec; |
|
97 | + return (float)$usec + (float)$sec; |
|
98 | 98 | } |
@@ -532,7 +532,7 @@ discard block |
||
532 | 532 | |
533 | 533 | if ($result['rule_no'] == '0000') { |
534 | 534 | if ($debug_mode) { |
535 | - echo 'Body:' . $bmh_newline . $body . $bmh_newline; |
|
535 | + echo 'Body:'.$bmh_newline.$body.$bmh_newline; |
|
536 | 536 | echo $bmh_newline; |
537 | 537 | } |
538 | 538 | } else { |
@@ -582,14 +582,14 @@ discard block |
||
582 | 582 | /** @noinspection PhpUsageOfSilenceOperatorInspection */ |
583 | 583 | $email_arr = @\imap_rfc822_parse_adrlist($email, 'default.domain.name'); |
584 | 584 | if (isset($email_arr[0]->host) && $email_arr[0]->host != '.SYNTAX-ERROR.' && $email_arr[0]->host != 'default.domain.name') { |
585 | - $result['email'] = $email_arr[0]->mailbox . '@' . $email_arr[0]->host; |
|
585 | + $result['email'] = $email_arr[0]->mailbox.'@'.$email_arr[0]->host; |
|
586 | 586 | } |
587 | 587 | } elseif (\preg_match('/Final-Recipient: rfc822;(.*)/i', $dsn_report, $match)) { |
588 | 588 | $email = \trim($match[1], "<> \t\r\n\0\x0B"); |
589 | 589 | /** @noinspection PhpUsageOfSilenceOperatorInspection */ |
590 | 590 | $email_arr = @\imap_rfc822_parse_adrlist($email, 'default.domain.name'); |
591 | 591 | if (isset($email_arr[0]->host) && $email_arr[0]->host != '.SYNTAX-ERROR.' && $email_arr[0]->host != 'default.domain.name') { |
592 | - $result['email'] = $email_arr[0]->mailbox . '@' . $email_arr[0]->host; |
|
592 | + $result['email'] = $email_arr[0]->mailbox.'@'.$email_arr[0]->host; |
|
593 | 593 | } |
594 | 594 | } |
595 | 595 | |
@@ -1564,7 +1564,7 @@ discard block |
||
1564 | 1564 | * Delivery to the following recipients failed. |
1565 | 1565 | * [email protected] |
1566 | 1566 | */ |
1567 | - elseif (\preg_match("/Delivery to the following recipients failed.*\n.*\n.*|Message\s+delivery\s+failed" . \preg_quote($result['email'], '/') . '/i', $dsn_msg)) { |
|
1567 | + elseif (\preg_match("/Delivery to the following recipients failed.*\n.*\n.*|Message\s+delivery\s+failed".\preg_quote($result['email'], '/').'/i', $dsn_msg)) { |
|
1568 | 1568 | $result['rule_cat'] = 'other'; |
1569 | 1569 | $result['rule_no'] = '0176'; |
1570 | 1570 | } |
@@ -1613,11 +1613,11 @@ discard block |
||
1613 | 1613 | |
1614 | 1614 | if ($result['rule_no'] == '0000') { |
1615 | 1615 | if ($debug_mode) { |
1616 | - echo 'email: ' . $result['email'] . $bmh_newline; |
|
1617 | - echo 'Action: ' . $action . $bmh_newline; |
|
1618 | - echo 'Status: ' . $status_code . $bmh_newline; |
|
1619 | - echo 'Diagnostic-Code: ' . $diag_code . $bmh_newline; |
|
1620 | - echo "DSN Message:<br />\n" . $dsn_msg . $bmh_newline; |
|
1616 | + echo 'email: '.$result['email'].$bmh_newline; |
|
1617 | + echo 'Action: '.$action.$bmh_newline; |
|
1618 | + echo 'Status: '.$status_code.$bmh_newline; |
|
1619 | + echo 'Diagnostic-Code: '.$diag_code.$bmh_newline; |
|
1620 | + echo "DSN Message:<br />\n".$dsn_msg.$bmh_newline; |
|
1621 | 1621 | echo $bmh_newline; |
1622 | 1622 | } |
1623 | 1623 | } else { |
@@ -318,16 +318,16 @@ discard block |
||
318 | 318 | public function globalDelete(): bool |
319 | 319 | { |
320 | 320 | $dateArr = \explode('-', $this->deleteMsgDate); // date format is yyyy-mm-dd |
321 | - $delDate = \mktime(0, 0, 0, (int) ($dateArr[1]), (int) ($dateArr[2]), (int) ($dateArr[0])); |
|
321 | + $delDate = \mktime(0, 0, 0, (int)($dateArr[1]), (int)($dateArr[2]), (int)($dateArr[0])); |
|
322 | 322 | |
323 | - $port = $this->port . '/' . $this->service . '/' . $this->serviceOption; |
|
324 | - $mboxt = \imap_open('{' . $this->mailhost . ':' . $port . '}', $this->mailboxUserName, $this->mailboxPassword, OP_HALFOPEN); |
|
323 | + $port = $this->port.'/'.$this->service.'/'.$this->serviceOption; |
|
324 | + $mboxt = \imap_open('{'.$this->mailhost.':'.$port.'}', $this->mailboxUserName, $this->mailboxPassword, OP_HALFOPEN); |
|
325 | 325 | |
326 | 326 | if ($mboxt === false) { |
327 | 327 | return false; |
328 | 328 | } |
329 | 329 | |
330 | - $list = \imap_getmailboxes($mboxt, '{' . $this->mailhost . ':' . $port . '}', '*'); |
|
330 | + $list = \imap_getmailboxes($mboxt, '{'.$this->mailhost.':'.$port.'}', '*'); |
|
331 | 331 | |
332 | 332 | if (\is_array($list)) { |
333 | 333 | foreach ($list as $key => $val) { |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | $nameRaw = $nameArr[\count($nameArr) - 1]; |
337 | 337 | |
338 | 338 | if (\stripos($nameRaw, 'sent') === false) { |
339 | - $mboxd = \imap_open('{' . $this->mailhost . ':' . $port . '}' . $nameRaw, $this->mailboxUserName, $this->mailboxPassword, CL_EXPUNGE); |
|
339 | + $mboxd = \imap_open('{'.$this->mailhost.':'.$port.'}'.$nameRaw, $this->mailboxUserName, $this->mailboxPassword, CL_EXPUNGE); |
|
340 | 340 | $messages = \imap_sort($mboxd, SORTDATE, 0); |
341 | 341 | |
342 | 342 | foreach ($messages as $message) { |
@@ -412,19 +412,19 @@ discard block |
||
412 | 412 | if (\trim($mailbox) === '') { |
413 | 413 | // this is a critical error with either the mailbox name blank or an invalid mailbox name |
414 | 414 | // need to stop processing and exit at this point |
415 | - echo 'Invalid mailbox name for move operation. Cannot continue: ' . $mailbox . "<br />\n"; |
|
415 | + echo 'Invalid mailbox name for move operation. Cannot continue: '.$mailbox."<br />\n"; |
|
416 | 416 | exit(); |
417 | 417 | } |
418 | 418 | |
419 | - $port = $this->port . '/' . $this->service . '/' . $this->serviceOption; |
|
419 | + $port = $this->port.'/'.$this->service.'/'.$this->serviceOption; |
|
420 | 420 | /** @noinspection PhpUsageOfSilenceOperatorInspection */ |
421 | - $mbox = @\imap_open('{' . $this->mailhost . ':' . $port . '}', $this->mailboxUserName, $this->mailboxPassword, OP_HALFOPEN); |
|
421 | + $mbox = @\imap_open('{'.$this->mailhost.':'.$port.'}', $this->mailboxUserName, $this->mailboxPassword, OP_HALFOPEN); |
|
422 | 422 | |
423 | 423 | if ($mbox === false) { |
424 | 424 | return false; |
425 | 425 | } |
426 | 426 | |
427 | - $list = \imap_getmailboxes($mbox, '{' . $this->mailhost . ':' . $port . '}', '*'); |
|
427 | + $list = \imap_getmailboxes($mbox, '{'.$this->mailhost.':'.$port.'}', '*'); |
|
428 | 428 | $mailboxFound = false; |
429 | 429 | |
430 | 430 | if (\is_array($list)) { |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | |
440 | 440 | if ($mailboxFound === false && $create) { |
441 | 441 | /** @noinspection PhpUsageOfSilenceOperatorInspection */ |
442 | - @\imap_createmailbox($mbox, \imap_utf7_encode('{' . $this->mailhost . ':' . $port . '}' . $mailbox)); |
|
442 | + @\imap_createmailbox($mbox, \imap_utf7_encode('{'.$this->mailhost.':'.$port.'}'.$mailbox)); |
|
443 | 443 | /** @noinspection UnusedFunctionResultInspection */ |
444 | 444 | \imap_errors(); |
445 | 445 | /** @noinspection UnusedFunctionResultInspection */ |
@@ -485,13 +485,13 @@ discard block |
||
485 | 485 | } |
486 | 486 | |
487 | 487 | if (!$this->mailboxLink) { |
488 | - $this->errorMessage = 'Cannot open the mailbox file to ' . $filePath . $this->bmhNewLine . 'Error MSG: ' . \imap_last_error(); |
|
488 | + $this->errorMessage = 'Cannot open the mailbox file to '.$filePath.$this->bmhNewLine.'Error MSG: '.\imap_last_error(); |
|
489 | 489 | $this->output(); |
490 | 490 | |
491 | 491 | return false; |
492 | 492 | } |
493 | 493 | |
494 | - $this->output('Opened ' . $filePath); |
|
494 | + $this->output('Opened '.$filePath); |
|
495 | 495 | |
496 | 496 | return true; |
497 | 497 | } |
@@ -505,7 +505,7 @@ discard block |
||
505 | 505 | { |
506 | 506 | // before starting the processing, let's check the delete flag and do global deletes if true |
507 | 507 | if (\trim($this->deleteMsgDate) !== '') { |
508 | - echo 'processing global delete based on date of ' . $this->deleteMsgDate . '<br />'; |
|
508 | + echo 'processing global delete based on date of '.$this->deleteMsgDate.'<br />'; |
|
509 | 509 | $this->globalDelete(); |
510 | 510 | } |
511 | 511 | |
@@ -515,24 +515,24 @@ discard block |
||
515 | 515 | $this->moveHard = false; |
516 | 516 | } |
517 | 517 | |
518 | - $port = $this->port . '/' . $this->service . '/' . $this->serviceOption; |
|
518 | + $port = $this->port.'/'.$this->service.'/'.$this->serviceOption; |
|
519 | 519 | |
520 | 520 | \set_time_limit(self::SECONDS_TIMEOUT); |
521 | 521 | |
522 | 522 | if (!$this->testMode) { |
523 | - $this->mailboxLink = \imap_open('{' . $this->mailhost . ':' . $port . '}' . $this->boxname, $this->mailboxUserName, $this->mailboxPassword, CL_EXPUNGE); |
|
523 | + $this->mailboxLink = \imap_open('{'.$this->mailhost.':'.$port.'}'.$this->boxname, $this->mailboxUserName, $this->mailboxPassword, CL_EXPUNGE); |
|
524 | 524 | } else { |
525 | - $this->mailboxLink = \imap_open('{' . $this->mailhost . ':' . $port . '}' . $this->boxname, $this->mailboxUserName, $this->mailboxPassword, OP_READONLY); |
|
525 | + $this->mailboxLink = \imap_open('{'.$this->mailhost.':'.$port.'}'.$this->boxname, $this->mailboxUserName, $this->mailboxPassword, OP_READONLY); |
|
526 | 526 | } |
527 | 527 | |
528 | 528 | if (!$this->mailboxLink) { |
529 | - $this->errorMessage = 'Cannot create ' . $this->service . ' connection to ' . $this->mailhost . $this->bmhNewLine . 'Error MSG: ' . \imap_last_error(); |
|
529 | + $this->errorMessage = 'Cannot create '.$this->service.' connection to '.$this->mailhost.$this->bmhNewLine.'Error MSG: '.\imap_last_error(); |
|
530 | 530 | $this->output(); |
531 | 531 | |
532 | 532 | return false; |
533 | 533 | } |
534 | 534 | |
535 | - $this->output('Connected to: ' . $this->mailhost . ' (' . $this->mailboxUserName . ')'); |
|
535 | + $this->output('Connected to: '.$this->mailhost.' ('.$this->mailboxUserName.')'); |
|
536 | 536 | |
537 | 537 | return true; |
538 | 538 | } |
@@ -547,9 +547,9 @@ discard block |
||
547 | 547 | { |
548 | 548 | if ($this->verbose >= $verboseLevel) { |
549 | 549 | if ($msg) { |
550 | - echo $msg . $this->bmhNewLine; |
|
550 | + echo $msg.$this->bmhNewLine; |
|
551 | 551 | } else { |
552 | - echo $this->errorMessage . $this->bmhNewLine; |
|
552 | + echo $this->errorMessage.$this->bmhNewLine; |
|
553 | 553 | } |
554 | 554 | } |
555 | 555 | } |
@@ -635,7 +635,7 @@ discard block |
||
635 | 635 | break; |
636 | 636 | |
637 | 637 | default: // un-support Content-type |
638 | - $this->output('Msg #' . $pos . ' is unsupported Content-Type:' . $structure->type, self::VERBOSE_REPORT); |
|
638 | + $this->output('Msg #'.$pos.' is unsupported Content-Type:'.$structure->type, self::VERBOSE_REPORT); |
|
639 | 639 | |
640 | 640 | return false; |
641 | 641 | } |
@@ -682,7 +682,7 @@ discard block |
||
682 | 682 | } |
683 | 683 | |
684 | 684 | if ($this->testMode) { |
685 | - $this->output('Match: ' . $ruleNumber . ':' . $ruleCategory . '; ' . $bounceType . '; ' . $email); |
|
685 | + $this->output('Match: '.$ruleNumber.':'.$ruleCategory.'; '.$bounceType.'; '.$email); |
|
686 | 686 | } else { |
687 | 687 | // code below will use the Callback function, but return no value |
688 | 688 | $params = [ |
@@ -707,7 +707,7 @@ discard block |
||
707 | 707 | } else { |
708 | 708 | // match rule, do bounce action |
709 | 709 | if ($this->testMode) { |
710 | - $this->output('Match: ' . $ruleNumber . ':' . $ruleCategory . '; ' . $bounceType . '; ' . $email); |
|
710 | + $this->output('Match: '.$ruleNumber.':'.$ruleCategory.'; '.$bounceType.'; '.$email); |
|
711 | 711 | |
712 | 712 | return true; |
713 | 713 | } |
@@ -773,12 +773,12 @@ discard block |
||
773 | 773 | $unprocessedCount = 0; |
774 | 774 | $deletedCount = 0; |
775 | 775 | $movedCount = 0; |
776 | - $this->output('Total: ' . $totalCount . ' messages '); |
|
776 | + $this->output('Total: '.$totalCount.' messages '); |
|
777 | 777 | |
778 | 778 | // process maximum number of messages |
779 | 779 | if ($fetchedCount > $this->maxMessages) { |
780 | 780 | $fetchedCount = $this->maxMessages; |
781 | - $this->output('Processing first ' . $fetchedCount . ' messages '); |
|
781 | + $this->output('Processing first '.$fetchedCount.' messages '); |
|
782 | 782 | } |
783 | 783 | |
784 | 784 | if ($this->testMode) { |
@@ -820,7 +820,7 @@ discard block |
||
820 | 820 | $processedResult = $this->processBounce($x, 'DSN', $totalCount); |
821 | 821 | } else { |
822 | 822 | // not standard DSN msg |
823 | - $this->output('Msg #' . $x . ' is not a standard DSN message', self::VERBOSE_REPORT); |
|
823 | + $this->output('Msg #'.$x.' is not a standard DSN message', self::VERBOSE_REPORT); |
|
824 | 824 | |
825 | 825 | if ($this->debugBodyRule) { |
826 | 826 | if ($structure->ifdescription) { |
@@ -846,7 +846,7 @@ discard block |
||
846 | 846 | $processedResult = $this->processBounce($x, 'DSN', $totalCount); |
847 | 847 | } else { |
848 | 848 | // not standard DSN msg |
849 | - $this->output('Msg #' . $x . ' is not a standard DSN message', self::VERBOSE_REPORT); |
|
849 | + $this->output('Msg #'.$x.' is not a standard DSN message', self::VERBOSE_REPORT); |
|
850 | 850 | |
851 | 851 | if ($this->debugBodyRule) { |
852 | 852 | $this->output(" Content-Type : {$match[1]}", self::VERBOSE_DEBUG); |
@@ -856,10 +856,10 @@ discard block |
||
856 | 856 | } |
857 | 857 | } else { |
858 | 858 | // didn't get content-type header |
859 | - $this->output('Msg #' . $x . ' is not a well-formatted MIME mail, missing Content-Type', self::VERBOSE_REPORT); |
|
859 | + $this->output('Msg #'.$x.' is not a well-formatted MIME mail, missing Content-Type', self::VERBOSE_REPORT); |
|
860 | 860 | |
861 | 861 | if ($this->debugBodyRule) { |
862 | - $this->output(' Headers: ' . $this->bmhNewLine . $header . $this->bmhNewLine, self::VERBOSE_DEBUG); |
|
862 | + $this->output(' Headers: '.$this->bmhNewLine.$header.$this->bmhNewLine, self::VERBOSE_DEBUG); |
|
863 | 863 | } |
864 | 864 | |
865 | 865 | $processedResult = $this->processBounce($x, 'BODY', $totalCount); |
@@ -890,7 +890,7 @@ discard block |
||
890 | 890 | // move the message |
891 | 891 | if (!$this->testMode) { |
892 | 892 | /** @noinspection PhpUsageOfSilenceOperatorInspection */ |
893 | - @\imap_mail_move($this->mailboxLink, (string) $x, $this->hardMailbox); |
|
893 | + @\imap_mail_move($this->mailboxLink, (string)$x, $this->hardMailbox); |
|
894 | 894 | } |
895 | 895 | |
896 | 896 | $moveFlag[$x] = true; |
@@ -904,7 +904,7 @@ discard block |
||
904 | 904 | // move the message |
905 | 905 | if (!$this->testMode) { |
906 | 906 | /** @noinspection PhpUsageOfSilenceOperatorInspection */ |
907 | - @\imap_mail_move($this->mailboxLink, (string) $x, $this->softMailbox); |
|
907 | + @\imap_mail_move($this->mailboxLink, (string)$x, $this->softMailbox); |
|
908 | 908 | } |
909 | 909 | |
910 | 910 | $moveFlag[$x] = true; |
@@ -937,18 +937,18 @@ discard block |
||
937 | 937 | \flush(); |
938 | 938 | } |
939 | 939 | |
940 | - $this->output($this->bmhNewLine . 'Closing mailbox, and purging messages'); |
|
940 | + $this->output($this->bmhNewLine.'Closing mailbox, and purging messages'); |
|
941 | 941 | |
942 | 942 | /** @noinspection PhpUsageOfSilenceOperatorInspection */ |
943 | 943 | @\imap_expunge($this->mailboxLink); |
944 | 944 | /** @noinspection PhpUsageOfSilenceOperatorInspection */ |
945 | 945 | @\imap_close($this->mailboxLink); |
946 | 946 | |
947 | - $this->output('Read: ' . $fetchedCount . ' messages'); |
|
948 | - $this->output($processedCount . ' action taken'); |
|
949 | - $this->output($unprocessedCount . ' no action taken'); |
|
950 | - $this->output($deletedCount . ' messages deleted'); |
|
951 | - $this->output($movedCount . ' messages moved'); |
|
947 | + $this->output('Read: '.$fetchedCount.' messages'); |
|
948 | + $this->output($processedCount.' action taken'); |
|
949 | + $this->output($unprocessedCount.' no action taken'); |
|
950 | + $this->output($deletedCount.' messages deleted'); |
|
951 | + $this->output($movedCount.' messages moved'); |
|
952 | 952 | |
953 | 953 | return true; |
954 | 954 | } |