-
Notifications
You must be signed in to change notification settings - Fork 72
/
bounce_driver.class.php
808 lines (730 loc) · 37 KB
/
bounce_driver.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
<?php
//error_reporting(0);// turn off PHP Notices
/* BOUNCE HANDLER Class, Version 7.4
* Description: "chops up the bounce into associative arrays"
* ~ http://www.anti-spam-man.com/php_bouncehandler/v7.3/
* ~ https://github.com/cfortune/PHP-Bounce-Handler/
* ~ http://www.phpclasses.org/browse/file/11665.html
*/
/* Debugging / Contributers:
* "Kanon"
* Jamie McClelland http://mayfirst.org
* Michael Cooper
* Thomas Seifert
* Tim Petrowsky http://neuecouch.de
* Willy T. Koch http://apeland.no
* ganeshaspeaks.com - FBL development
* Richard Catto - FBL development
* Scott Brynen - FBL development http://visioncritical.com
*/
/*
The BSD License
Copyright (c) 2006-forever, Chris Fortune http://cfortune.kics.bc.ca
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the BounceHandler nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
class BounceHandler{
/**** VARS ****************************************************************/
public $head_hash = array();
public $fbl_hash = array();
public $body_hash = array(); // not necessary
private $bouncelist = array(); // from bounce_responses
private $autorespondlist = array(); // from bounce_responses
private $bouncesubj = array(); // from bounce_responses
public $looks_like_a_bounce = false;
public $looks_like_an_FBL = false;
public $looks_like_an_autoresponse = false;
public $is_hotmail_fbl = false;
// these are for feedback reports, so you can extract uids from the emails
// eg X-my-custom-header: userId12345
// eg <img src="http://mysite.com/track.php?u=userId12345">
public $web_beacon_preg_1 = "";
public $web_beacon_preg_2 = "";
public $x_header_search_1 = "";
public $x_header_search_2 = "";
// accessors
public $type = "";
public $web_beacon_1 = "";
public $web_beacon_2 = "";
public $feedback_type = "";
public $x_header_beacon_1 = "";
public $x_header_beacon_2 = "";
// these accessors are useful only for FBL's
// or if the output array has only one index
public $action = "";
public $status = "";
public $subject = "";
public $recipient = "";
// the raw data set, a multiArray
public $output = array();
/**** INSTANTIATION *******************************************************/
public function __construct(){
$this->output[0]['action'] = "";
$this->output[0]['status'] = "";
$this->output[0]['recipient'] = "";
require('bounce_responses.php');
$this->bouncelist = $bouncelist;
$this->autorespondlist = $autorespondlist;
$this->bouncesubj = $bouncesubj;
}
/**** METHODS *************************************************************/
// this is the most commonly used public method
// quick and dirty
// useage: $multiArray = $this->get_the_facts($strEmail);
public function parse_email($eml){
return $this->get_the_facts($eml);
}
public function get_the_facts($eml){
// fluff up the email
$bounce = $this->init_bouncehandler($eml);
if (strpos($bounce, "\r\n\r\n") !== FALSE)
list($head, $body) = preg_split("/\r\n\r\n/", $bounce, 2);
else
list($head, $body) = array($bounce, '');
$this->head_hash = $this->parse_head($head);
// parse the email into data structures
$boundary = isset($this->head_hash['Content-type']['boundary']) ? $this->head_hash['Content-type']['boundary'] : '';
$mime_sections = $this->parse_body_into_mime_sections($body, $boundary);
$this->body_hash = split("\r\n", $body);
$this->first_body_hash = isset($mime_sections['first_body_part']) ? $this->parse_head($mime_sections['first_body_part']) : array();
$this->looks_like_a_bounce = $this->is_a_bounce();
$this->looks_like_an_FBL = $this->is_an_ARF();
$this->looks_like_an_autoresponse = !$this->looks_like_a_bounce && !$this->looks_like_an_FBL && $this->is_an_autoresponse();
/* If you are trying to save processing power, and don't care much
* about accuracy then uncomment this statement in order to skip the
* heroic text parsing below.
*/
//if(!$this->looks_like_a_bounce && !$this->looks_like_an_FBL && !$this->looks_like_an_autoresponse){
// return "unknown";
//}
/*** now we try all our weird text parsing methods (E-mail is weird!) ******************************/
// is it a Feedback Loop, in Abuse Feedback Reporting Format (ARF)?
// http://en.wikipedia.org/wiki/Abuse_Reporting_Format#Abuse_Feedback_Reporting_Format_.28ARF.29
if($this->looks_like_an_FBL){
$this->output[0]['action'] = 'failed';
$this->output[0]['status'] = "5.7.1";
$this->subject = trim(str_ireplace("Fw:", "", $this->head_hash['Subject']));
if ($this->is_hotmail_fbl === true){
// fill in the fbl_hash with sensible values
$this->fbl_hash['Source-ip'] = '';
$this->fbl_hash['Original-mail-from'] = '';
$this->fbl_hash['Original-rcpt-to'] = '';
$this->fbl_hash['Feedback-type'] = 'abuse';
$this->fbl_hash['Content-disposition'] = 'inline';
$this->fbl_hash['Content-type'] = 'message/feedback-report';
$this->fbl_hash['User-agent'] = 'Hotmail FBL';
if (isset($this->first_body_hash['Date']))
$this->fbl_hash['Received-date'] = $this->first_body_hash['Date'];
if (isset($this->head_hash['Subject']) && preg_match('/complaint about message from ([0-9.]+)/', $this->head_hash['Subject'], $matches))
$this->fbl_hash['Source-ip'] = $matches[1];
if (!empty($this->recipient))
$this->fbl_hash['Original-rcpt-to'] = $this->recipient;
if (isset($this->first_body_hash['X-sid-pra']))
$this->fbl_hash['Original-mail-from'] = $this->first_body_hash['X-sid-pra'];
}
else {
$this->fbl_hash = $this->standard_parser($mime_sections['machine_parsable_body_part']);
$returnedhash = $this->standard_parser($mime_sections['returned_message_body_part']);
if (!empty($returnedhash['Return-path']))
$this->fbl_hash['Original-mail-from'] = $returnedhash['Return-path'];
elseif (empty($this->fbl_hash['Original-mail-from']) && !empty($returnedhash['From']))
$this->fbl_hash['Original-mail-from'] = $returnedhash['From'];
if (empty($this->fbl_hash['Original-rcpt-to']) && !empty($this->fbl_hash['Removal-recipient']) )
$this->fbl_hash['Original-rcpt-to'] = $this->fbl_hash['Removal-recipient'];
elseif (isset($returnedhash['To']))
$this->fbl_hash['Original-rcpt-to'] = $returnedhash['To'];
else
$this->fbl_hash['Original-rcpt-to'] = '';
if (!isset($this->fbl_hash['Source-ip']))
if (!empty($returnedhash['X-originating-ip']))
$this->fbl_hash['Source-ip'] = $this->strip_angle_brackets($returnedhash['X-originating-ip']);
else
$this->fbl_hash['Source-ip'] = '';
}
// warning, some servers will remove the name of the original intended recipient from the FBL report,
// replacing it with [email protected], making it utterly useless, of course (unless you used a web-beacon).
// here we try our best to give you the actual intended recipient, if possible.
if (preg_match('/Undisclosed|redacted/i', $this->fbl_hash['Original-rcpt-to']) && isset($this->fbl_hash['Removal-recipient']) ) {
$this->fbl_hash['Original-rcpt-to'] = @$this->fbl_hash['Removal-recipient'];
}
if (empty($this->fbl_hash['Received-date']) && !empty($this->fbl_hash[@'Arrival-date']) ) {
$this->fbl_hash['Received-date'] = @$this->fbl_hash['Arrival-date'];
}
$this->fbl_hash['Original-mail-from'] = $this->strip_angle_brackets(@$this->fbl_hash['Original-mail-from']);
$this->fbl_hash['Original-rcpt-to'] = $this->strip_angle_brackets(@$this->fbl_hash['Original-rcpt-to']);
$this->output[0]['recipient'] = $this->fbl_hash['Original-rcpt-to'];
}
#??? else if (preg_match("/auto.{0,20}reply|vacation|(out|away|on holiday).*office/i", $this->head_hash['Subject'])){
# // looks like a vacation autoreply, ignoring
# $this->output[0]['action'] = 'autoreply';
# }
// is this an autoresponse ?
elseif ($this->looks_like_an_autoresponse) {
$this->output[0]['action'] = 'autoresponse'; #??? 'transient' 'autoreply' ??
$this->output[0]['autoresponse'] = $this->autoresponse; #??? 4.3.2
// grab the first recipient and break
$this->output[0]['recipient'] = isset($this->head_hash['Return-path']) ? $this->strip_angle_brackets($this->head_hash['Return-path']) : '';
if(empty($this->output[0]['recipient'])){
$arrFailed = $this->find_email_addresses($body);
for($j=0; $j<count($arrFailed); $j++){
$this->output[$j]['recipient'] = trim($arrFailed[$j]);
break;
}
}
}
else if ($this->is_RFC1892_multipart_report() === TRUE){
$rpt_hash = $this->parse_machine_parsable_body_part($mime_sections['machine_parsable_body_part']);
if (isset($rpt_hash['per_recipient'])) {
for($i=0; $i<count($rpt_hash['per_recipient']); $i++){
$this->output[$i]['recipient'] = $this->find_recipient($rpt_hash['per_recipient'][$i]);
$mycode = @$this->format_status_code($rpt_hash['per_recipient'][$i]['Status']);
$this->output[$i]['status'] = @$mycode['code'];
$this->output[$i]['action'] = @$rpt_hash['per_recipient'][$i]['Action'];
}
}
else {
$arrFailed = $this->find_email_addresses($mime_sections['first_body_part']);
for($j=0; $j<count($arrFailed); $j++){
$this->output[$j]['recipient'] = trim($arrFailed[$j]);
$this->output[$j]['status'] = $this->get_status_code_from_text($this->output[$j]['recipient'],0);
$this->output[$j]['action'] = $this->get_action_from_status_code($this->output[$j]['status']);
}
}
}
else if(isset($this->head_hash['X-failed-recipients'])) {
// Busted Exim MTA
// Up to 50 email addresses can be listed on each header.
// There can be multiple X-Failed-Recipients: headers. - (not supported)
$arrFailed = split(',', $this->head_hash['X-failed-recipients']);
for($j=0; $j<count($arrFailed); $j++){
$this->output[$j]['recipient'] = trim($arrFailed[$j]);
$this->output[$j]['status'] = $this->get_status_code_from_text($this->output[$j]['recipient'],0);
$this->output[$j]['action'] = $this->get_action_from_status_code($this->output[$j]['status']);
}
}
else if(!empty($boundary) && $this->looks_like_a_bounce){
// oh god it could be anything, but at least it has mime parts, so let's try anyway
$arrFailed = $this->find_email_addresses($mime_sections['first_body_part']);
for($j=0; $j<count($arrFailed); $j++){
$this->output[$j]['recipient'] = trim($arrFailed[$j]);
$this->output[$j]['status'] = $this->get_status_code_from_text($this->output[$j]['recipient'],0);
$this->output[$j]['action'] = $this->get_action_from_status_code($this->output[$j]['status']);
}
}
else if($this->looks_like_a_bounce){
// last ditch attempt
// could possibly produce erroneous output, or be very resource consuming,
// so be careful. You should comment out this section if you are very concerned
// about 100% accuracy or if you want very fast performance.
// Leave it turned on if you know that all messages to be analyzed are bounces.
$arrFailed = $this->find_email_addresses($body);
for($j=0; $j<count($arrFailed); $j++){
$this->output[$j]['recipient'] = trim($arrFailed[$j]);
$this->output[$j]['status'] = $this->get_status_code_from_text($this->output[$j]['recipient'],0);
$this->output[$j]['action'] = $this->get_action_from_status_code($this->output[$j]['status']);
}
}
// else if()..... add a parser for your busted-ass MTA here
// remove empty array indices
$tmp = array();
foreach($this->output as $arr){
if(empty($arr['recipient']) && empty($arr['status']) && empty($arr['action']) ){
continue;
}
$tmp[] = $arr;
}
$this->output = $tmp;
// accessors
/*if it is an FBL, you could use the class variables to access the
data (Unlike Multipart-reports, FBL's report only one bounce)
*/
$this->type = $this->find_type();
$this->action = isset($this->output[0]['action']) ? $this->output[0]['action'] : '';
$this->status = isset($this->output[0]['status']) ? $this->output[0]['status'] : '';
$this->subject = ($this->subject) ? $this->subject : $this->head_hash['Subject'];
$this->recipient = isset($this->output[0]['recipient']) ? $this->output[0]['recipient'] : '';
$this->feedback_type = (isset($this->fbl_hash['Feedback-type'])) ? $this->fbl_hash['Feedback-type'] : "";
// sniff out any web beacons
if($this->web_beacon_preg_1)
$this->web_beacon_1 = $this->find_web_beacon($body, $this->web_beacon_preg_1);
if($this->web_beacon_preg_2)
$this->web_beacon_2 = $this->find_web_beacon($body, $this->web_beacon_preg_2);
if($this->x_header_search_1)
$this->x_header_beacon_1 = $this->find_x_header ($this->x_header_search_1);
if($this->x_header_search_2)
$this->x_header_beacon_2 = $this->find_x_header ($this->x_header_search_2);
return $this->output;
}
function init_bouncehandler($blob, $format='string'){
$this->head_hash = array();
$this->fbl_hash = array();
$this->body_hash = array();
$this->looks_like_a_bounce = false;
$this->looks_like_an_FBL = false;
$this->is_hotmail_fbl = false;
$this->type = "";
$this->feedback_type = "";
$this->action = "";
$this->status = "";
$this->subject = "";
$this->recipient = "";
$this->output = array();
$this->output[0]['action'] = '';
$this->output[0]['status'] = '';
$this->output[0]['recipient'] = '';
// TODO: accept several formats (XML, string, array)
// currently accepts only string
//if($format=='xml_array'){
// $strEmail = "";
// $out = "";
// for($i=0; $i<$blob; $i++){
// $out = preg_replace("/<HEADER>/i", "", $blob[$i]);
// $out = preg_replace("/</HEADER>/i", "", $out);
// $out = preg_replace("/<MESSAGE>/i", "", $out);
// $out = preg_replace("/</MESSAGE>/i", "", $out);
// $out = rtrim($out) . "\r\n";
// $strEmail .= $out;
// }
//}
//else if($format=='string'){
$strEmail = str_replace("\r\n", "\n", $blob); // line returns 1
$strEmail = str_replace("\n", "\r\n", $strEmail);// line returns 2
# $strEmail = str_replace("=\r\n", "", $strEmail); // remove MIME line breaks (would never exist as #1 above would have dealt with)
# $strEmail = str_replace("=3D", "=", $strEmail); // equals sign - dealt with in the MIME decode section now
# $strEmail = str_replace("=09", " ", $strEmail); // tabs
//}
//else if($format=='array'){
// $strEmail = "";
// for($i=0; $i<$blob; $i++){
// $strEmail .= rtrim($blob[$i]) . "\r\n";
// }
//}
return $strEmail;
}
// general purpose recursive heuristic function
// to try to extract useful info from the bounces produced by busted MTAs
function get_status_code_from_text($recipient, $index){
for($i=$index; $i<count($this->body_hash); $i++){
$line = trim($this->body_hash[$i]);
//skip Message-ID lines
if (stripos($line, 'Message-ID') !== FALSE)
continue;
/******** recurse into the email if you find the recipient ********/
if(stristr($line, $recipient)!==FALSE){
// the status code MIGHT be in the next few lines after the recipient line,
// depending on the message from the foreign host... What a laugh riot!
$status_code = $this->get_status_code_from_text($recipient, $i+1);
if($status_code){
return $status_code;
}
}
/******** exit conditions ********/
// if it's the end of the human readable part in this stupid bounce
if(stristr($line, '------ This is a copy of the message')!==FALSE){
break;
}
//if we see an email address other than our current recipient's,
if(count($this->find_email_addresses($line))>=1
&& stristr($line, $recipient) === FALSE
&& strstr($line, 'FROM:<') === FALSE) { // Kanon added this line because Hotmail puts the e-mail address too soon and there actually is error message stuff after it.
break;
}
//******** pattern matching ********/
foreach ($this->bouncelist as $bouncetext => $bouncecode) {
if (preg_match("/$bouncetext/i", $line, $matches))
return (isset($matches[1])) ? $matches[1] : $bouncecode;
}
// Search for a rfc3463 style return code
if (preg_match('/\W([245]\.[01234567]\.[0-9]{1,2})\W/', $line, $matches)) {
return $matches[1];
#??? this seems somewhat redundant
# $mycode = str_replace('.', '', $matches[1]);
# $mycode = $this->format_status_code($mycode);
# return implode('.', $mycode['code']); #x.y.z format
}
// search for RFC2821 return code
// thanks to [email protected]
// Maybe at some point it should have it's own place within the main parsing scheme (at line 88)
if (preg_match('/\]?: ([45][01257][012345]) /', $line, $matches) ||
preg_match('/^([45][01257][012345]) (?:.*?)(?:denied|inactive|deactivated|rejected|disabled|unknown|no such|not (?:our|activated|a valid))+/i', $line, $matches))
{
$mycode = $matches[1];
// map RFC2821 -> RFC3463 codes
if ($mycode == '550' || $mycode == '551' || $mycode == '553' || $mycode == '554')
return '5.1.1'; #perm error
elseif ($mycode == '452' || $mycode == '552')
return '4.2.2'; #mailbox full
elseif ($mycode == '450' || $mycode == '421')
return '4.3.2'; #temp unavailable
#???$mycode = $this->format_status_code($mycode);
#???return implode('.', $mycode['code']);
}
}
return '5.5.0'; #other or unknown status
}
function is_RFC1892_multipart_report(){
return @$this->head_hash['Content-type']['type']=='multipart/report'
&& @$this->head_hash['Content-type']['report-type']=='delivery-status'
&& @$this->head_hash['Content-type'][boundary]!=='';
}
function parse_head($headers){
if(!is_array($headers))
$headers = explode("\r\n", $headers);
$hash = $this->standard_parser($headers);
if(isset($hash['Content-type'])) {//preg_match('/Multipart\/Report/i', $hash['Content-type'])){
$multipart_report = explode (';', $hash['Content-type']);
$hash['Content-type']='';
$hash['Content-type']['type'] = strtolower($multipart_report[0]);
foreach($multipart_report as $mr){
if(preg_match('/([^=.]*?)=(.*)/i', $mr, $matches)){
// didn't work when the content-type boundary ID contained an equal sign,
// that exists in bounces from many Exchange servers
//if(preg_match('/([a-z]*)=(.*)?/i', $mr, $matches)){
$hash['Content-type'][strtolower(trim($matches[1]))]= str_replace('"','',$matches[2]);
}
}
}
return $hash;
}
function contenttype_decode ($mimepart) {
$encoding = '7bit';
$decoded = '';
foreach (explode("\r\n", $mimepart) as $line) {
if (preg_match("/^Content-Transfer-Encoding:\s*(\S+)/", $line, $match)) {
$encoding = $match[1];
$decoded .= $line . "\r\n";
}
else switch ($encoding) {
case 'quoted-printable': {
if (substr($line, -1) == '=')
$line = substr($line, 0, -1);
else
$line .= "\r\n";
$decoded .= preg_replace("/=([0-9A-F][0-9A-F])/e", 'chr(hexdec("$1"))', $line);
}
case 'base64': {
$decoded .= base64_decode($line);
break;
}
default: # 7bit, 8bit, binary
$decoded .= $line."\r\n";
}
}
return $decoded;
}
function parse_body_into_mime_sections($body, $boundary){
if(!$boundary) return array();
if (is_array($body))
$body = implode("\r\n", $body);
$body = explode($boundary, $body);
$mime_sections['first_body_part'] = isset($body[1]) ? $this->contenttype_decode($body[1]) : ''; #proper MIME decode
$mime_sections['machine_parsable_body_part'] = isset($body[2]) ? $this->contenttype_decode($body[2]) : '';
$mime_sections['returned_message_body_part'] = isset($body[3]) ? $this->contenttype_decode($body[3]) : '';
return $mime_sections;
}
function standard_parser($content){ // associative array orstr
// receives email head as array of lines
// simple parse (Entity: value\n)
$hash = array('Received'=>'');
if(!is_array($content)) $content = explode("\r\n", $content);
foreach($content as $line){
if(preg_match('/^([^\s.]*):\s*(.*)\s*/', $line, $array)){
$entity = ucfirst(strtolower($array[1]));
if (isset($array[2]) && strpos($array[2], '=?') !== FALSE) // decode MIME Header encoding (subject lines etc)
$array[2] = iconv_mime_decode($array[2], ICONV_MIME_DECODE_CONTINUE_ON_ERROR, "UTF-8");
if(empty($hash[$entity])){
$hash[$entity] = trim($array[2]);
}
else if($hash['Received']){
// grab extra Received headers :(
// pile it on with pipe delimiters,
// oh well, SMTP is broken in this way
if ($entity and $array[2] and $array[2] != $hash[$entity]){
$hash[$entity] .= "|" . trim($array[2]);
}
}
}
elseif (isset($line) && isset($entity) && preg_match('/^\s+(.+)\s*/', $line) && $entity) {
$line = trim($line);
if (strpos($array[2], '=?') !== FALSE)
$line = iconv_mime_decode($array[2], ICONV_MIME_DECODE_CONTINUE_ON_ERROR, "UTF-8");
$hash[$entity] .= ' '. $line;
}
}
// special formatting
$hash['Received']= @explode('|', $hash['Received']);
$hash['Subject'] = isset($hash['Subject']) ? : '';
return $hash;
}
function parse_machine_parsable_body_part($str){
//Per-Message DSN fields
$hash = $this->parse_dsn_fields($str);
$hash['mime_header'] = $this->standard_parser($hash['mime_header']);
$hash['per_message'] = isset($hash['per_message']) ? $this->standard_parser($hash['per_message']) : array();
if(isset($hash['per_message']['X-postfix-sender'])){
$arr = explode (';', $hash['per_message']['X-postfix-sender']);
$hash['per_message']['X-postfix-sender']='';
$hash['per_message']['X-postfix-sender']['type'] = @trim($arr[0]);
$hash['per_message']['X-postfix-sender']['addr'] = @trim($arr[1]);
}
if(isset($hash['per_message']['Reporting-mta'])){
$arr = explode (';', $hash['per_message']['Reporting-mta']);
$hash['per_message']['Reporting-mta']='';
$hash['per_message']['Reporting-mta']['type'] = @trim($arr[0]);
$hash['per_message']['Reporting-mta']['addr'] = @trim($arr[1]);
}
//Per-Recipient DSN fields
if(isset($hash['per_recipient'])) {
for($i=0; $i<count($hash['per_recipient']); $i++){
$temp = $this->standard_parser(explode("\r\n", $hash['per_recipient'][$i]));
$arr = isset($temp['Final-recipient']) ? explode (';', $temp['Final-recipient']) : array();
$temp['Final-recipient'] = $this->format_final_recipient_array($arr);
//$temp['Final-recipient']['type'] = trim($arr[0]);
//$temp['Final-recipient']['addr'] = trim($arr[1]);
$temp['Original-recipient']= array();
$temp['Original-recipient']['type'] = isset($arr[0]) ? trim($arr[0]) : '';
$temp['Original-recipient']['addr'] = isset($arr[1]) ? trim($arr[1]) : '';
$arr = isset($temp['Diagnostic-code']) ? explode (';', $temp['Diagnostic-code']) : array();
$temp['Diagnostic-code'] = array();
$temp['Diagnostic-code']['type'] = isset($arr[0]) ? trim($arr[0]) : '';
$temp['Diagnostic-code']['text'] = isset($arr[1]) ? trim($arr[1]) : '';
// now this is wierd: plenty of times you see the status code is a permanent failure,
// but the diagnostic code is a temporary failure. So we will assert the most general
// temporary failure in this case.
$ddc=''; $judgement='';
$ddc = $this->decode_diagnostic_code($temp['Diagnostic-code']['text']);
$judgement = $this->get_action_from_status_code($ddc);
if($judgement == 'transient'){
if(stristr($temp['Action'],'failed')!==FALSE){
$temp['Action']='transient';
$temp['Status']='4.3.0';
}
}
$hash['per_recipient'][$i]='';
$hash['per_recipient'][$i]=$temp;
}
}
return $hash;
}
function get_head_from_returned_message_body_part($mime_sections){
$temp = explode("\r\n\r\n", $mime_sections[returned_message_body_part]);
$head = $this->standard_parser($temp[1]);
$head['From'] = $this->extract_address($head['From']);
$head['To'] = $this->extract_address($head['To']);
return $head;
}
function extract_address($str){
$from_stuff = preg_split('/[ \"\'\<\>:\(\)\[\]]/', $str);
foreach ($from_stuff as $things){
if (strpos($things, '@')!==FALSE){$from = $things;}
}
return $from;
}
function find_recipient($per_rcpt){
$recipient = '';
if($per_rcpt['Original-recipient']['addr'] !== ''){
$recipient = $per_rcpt['Original-recipient']['addr'];
}
else if($per_rcpt['Final-recipient']['addr'] !== ''){
$recipient = $per_rcpt['Final-recipient']['addr'];
}
$recipient = $this->strip_angle_brackets($recipient);
return $recipient;
}
function find_type(){
if($this->looks_like_a_bounce)
return "bounce";
elseif ($this->looks_like_an_FBL)
return "fbl";
elseif ($this->looks_like_an_autoresponse)
return "autoresponse";
else
return false;
}
function parse_dsn_fields($dsn_fields){
if(!is_array($dsn_fields)) $dsn_fields = explode("\r\n\r\n", $dsn_fields);
$j = 0;
reset($dsn_fields);
for($i=0; $i<count($dsn_fields); $i++){
$dsn_fields[$i] = trim($dsn_fields[$i]);
if($i==0)
$hash['mime_header'] = $dsn_fields[0];
elseif($i==1 && !preg_match('/(Final|Original)-Recipient/',$dsn_fields[1])) {
// some mta's don't output the per_message part, which means
// the second element in the array should really be
// per_recipient - test with Final-Recipient - which should always
// indicate that the part is a per_recipient part
$hash['per_message'] = $dsn_fields[1];
}
else {
if($dsn_fields[$i] == '--') continue;
$hash['per_recipient'][$j] = $dsn_fields[$i];
$j++;
}
}
return $hash;
}
// Take a line like "4.2.12 This is an error" and return "4.2.12" and "This is an error"
function format_status_code($code) {
$ret = "";
if(preg_match('/([245]\.[01234567]\.\d{1,2})\s*(.*)/', $code, $matches)) {
$ret['code'] = $matches[1];
$ret['text'] = $matches[2];
}
else if(preg_match('/([245])([01234567])(\d{1,2})\s*(.*)/', $code, $matches)) {
$ret['code'] = $matches[1]. '.'. $matches[2]. '.'. $matches[3];
$ret['text'] = $matches[4];
}
return $ret;
}
function fetch_status_messages($code){
include_once ("bounce_statuscodes.php");
$ret = $this->format_status_code($code);
$arr = explode('.', $ret['code']);
$str = "<P><B>". $status_code_classes[$arr[0]]['title'] . "</B> - " .$status_code_classes[$arr[0]]['descr']. " <B>". $status_code_subclasses[$arr[1].".".$arr[2]]['title'] . "</B> - " .$status_code_subclasses[$arr[1].".".$arr[2]]['descr']. "</P>";
return $str;
}
function get_action_from_status_code($code){
if($code=='')
return '';
$ret = $this->format_status_code($code);
switch (isset($ret['code']) ? $ret['code'][0] : '') {
case(2):
return 'success';
break;
case(4):
return 'transient';
break;
case(5):
return 'failed';
break;
default:
return '';
break;
}
}
function decode_diagnostic_code($dcode){
if(preg_match("/(\d\.\d\.\d)\s/", $dcode, $array)){
return $array[1];
}
else if(preg_match("/(\d\d\d)\s/", $dcode, $array)){
return $array[1];
}
}
function is_a_bounce(){
foreach ($this->bouncesubj as $s)
if (preg_match("/^$s/i", $this->head_hash['Subject']))
return true;
#if(@preg_match('/auto_reply/',$this->head_hash['Precedence'])) return true; # autoresponse, not bounce
if (isset($this->head_hash['From']) &&
preg_match("/^(postmaster|mailer-daemon)\@?/i", $this->head_hash['From']))
return true;
return false;
}
function find_email_addresses($first_body_part){
// not finished yet. This finds only one address.
if (preg_match("/\b([A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4})\b/i", $first_body_part, $matches)){
return array($matches[1]);
}
else
return array();
}
// these functions are for feedback loops
function is_an_ARF(){
if(isset($this->head_hash['Content-type']['report-type']) && preg_match('/feedback-report/',$this->head_hash['Content-type']['report-type']))
return true;
if(isset($this->head_hash['X-loop']) && preg_match('/scomp/',$this->head_hash['X-loop']))
return true;
if(isset($this->head_hash['X-hmxmroriginalrecipient'])) {
$this->is_hotmail_fbl = TRUE;
$this->recipient = $this->head_hash['X-hmxmroriginalrecipient'];
return true;
}
if(isset($this->first_body_hash['X-hmxmroriginalrecipient']) ) {
$this->is_hotmail_fbl = TRUE;
$this->recipient = $this->first_body_hash['X-hmxmroriginalrecipient'];
return true;
}
return false;
}
// look for common auto-responders
function is_an_autoresponse() {
foreach (array ('Auto-submitted', 'X-autorespond') as $a) {
if (isset($this->head_hash[$a])) {
$this->autoresponse = "$a: ". $this->head_hash[$a];
return TRUE;
}
}
foreach (array ('Precedence', 'X-precedence') as $a) {
if (isset($this->head_hash[$a]) && preg_match('/^(auto|junk)/i', $this->head_hash[$a])) {
$this->autoresponse = "$a: ". $this->head_hash[$a];
return TRUE;
}
}
$subj = isset($this->head_hash['Subject']) ? $this->head_hash['Subject'] : '';
foreach ($this->autorespondlist as $a) {
if (preg_match("/$a/i", $subj)) {
$this->autoresponse = $this->head_hash['Subject'];
return TRUE;
}
}
return FALSE;
}
// use a perl regular expression to find the web beacon
public function find_web_beacon($body, $preg){
if(!isset($preg) || !$preg)
return "";
if(preg_match($preg, $body, $matches))
return $matches[1];
}
public function find_x_header($xheader){
$xheader = ucfirst(strtolower($xheader));
// check the header
if(isset($this->head_hash[$xheader])){
return $this->head_hash[$xheader];
}
// check the body too
$tmp_body_hash = $this->standard_parser($this->body_hash);
if(isset($tmp_body_hash[$xheader])){
return $tmp_body_hash[$xheader];
}
return "";
}
private function find_fbl_recipients($fbl){
if(isset($fbl['Original-rcpt-to'])){
return $fbl['Original-rcpt-to'];
}
else if(isset($fbl['Removal-recipient'])){
return trim(str_replace('--', '', $fbl['Removal-recipient']));
}
}
private function strip_angle_brackets($recipient){
if (preg_match('/[<[](.*)[>\]]/', $recipient, $matches))
return trim($matches[1]);
else
return trim($recipient);
}
/*The syntax of the final-recipient field is as follows:
"Final-Recipient" ":" address-type ";" generic-address
*/
private function format_final_recipient_array($arr){
$output = array('addr'=>'',
'type'=>'');
if (isset($arr[1])) {
if (strpos($arr[0], '@') !== FALSE){
$output['addr'] = $this->strip_angle_brackets($arr[0]);
$output['type'] = (!empty($arr[1])) ? trim($arr[1]) : 'unknown';
}
else {
$output['type'] = trim($arr[0]);
$output['addr'] = $this->strip_angle_brackets($arr[1]);
}
}
return $output;
}
}/** END class BounceHandler **/
?>