├── Make_statuscodes.php ├── README.txt ├── bounce_driver.class.php ├── bounce_responses.php ├── bounce_statuscodes.php ├── cmdlinetest.php ├── eml ├── 1.eml ├── 10.eml ├── 11.eml ├── 12.eml ├── 13.eml ├── 14.eml ├── 15.eml ├── 16.eml ├── 17.eml ├── 18.eml ├── 19.eml ├── 2.eml ├── 20.eml ├── 21.eml ├── 22.eml ├── 23.eml ├── 24.eml ├── 25.eml ├── 26.eml ├── 27.eml ├── 28.eml ├── 29.eml ├── 3.eml ├── 30.eml ├── 31.eml ├── 32.eml ├── 33.eml ├── 34.eml ├── 35.eml ├── 36.eml ├── 37.eml ├── 38.eml ├── 39.eml ├── 4.eml ├── 40.eml ├── 41.eml ├── 42.eml ├── 43.eml ├── 44.eml ├── 45.eml ├── 46.eml ├── 47.eml ├── 48.eml ├── 49.eml ├── 5.1.1.eml ├── 5.eml ├── 50.eml ├── 51.eml ├── 52.eml ├── 53.eml ├── 54.eml ├── 55.eml ├── 56.eml ├── 57.eml ├── 58.eml ├── 59.eml ├── 6.eml ├── 60.eml ├── 61.eml ├── 62.eml ├── 7.eml ├── 8.eml ├── 9.eml ├── arf1.txt ├── arf2.txt ├── arf3.txt ├── arf4.txt ├── arf5.txt ├── arf6.txt ├── exchange1.eml ├── exchange2.eml ├── exchange3.eml ├── fbl-aol.txt ├── fbl-comcast.txt ├── fbl-hotmail.txt ├── fbl-yahoo.txt ├── hotmailbounce.txt ├── testfile.eml └── unsubscribe.txt ├── php.bouncehandler.v7.4.zip └── testdriver1.php /Make_statuscodes.php: -------------------------------------------------------------------------------- 1 | 5 18 | $a[1] = preg_replace('/\n\s*/', ' ', $a[1]); #remove line breaks 19 | $a[1] = preg_replace('/\s\s+/', ' ', $a[1]); #remove double spaces 20 | $a[1] = preg_replace('/"/', '\\"', $a[1]); #requote quotes 21 | $a[2] = preg_replace('/\n\s*/', ' ', $a[2]); #remove line breaks 22 | $a[2] = preg_replace('/\s\s+/', ' ', $a[2]); #remove double spaces 23 | $a[2] = preg_replace('/"/', '\\"', $a[2]); #requote quotes 24 | print "\$status_code_classes['$a[0]']['title'] = \"". $a[1]. "\"; # $a[3]\n"; 25 | print "\$status_code_classes['$a[0]']['descr'] = \"". $a[2]. "\";\n"; 26 | } 27 | fclose ($fh); 28 | } 29 | print "\n"; 30 | 31 | 32 | #X.7.17,Mailbox owner has changed,5XX,"This status code is returned when a message is 33 | #received with a Require-Recipient-Valid-Since 34 | #field or RRVS extension and the receiving 35 | #system is able to determine that the intended 36 | #recipient mailbox has not been under 37 | #continuous ownership since the specified date.",[RFC-ietf-appsawg-rrvs-header-field-10] (Standards Track),M. Kucherawy,IESG 38 | 39 | 40 | $fh = fopen("http://www.iana.org/assignments/smtp-enhanced-status-codes/smtp-enhanced-status-codes-3.csv", "r"); 41 | if ($fh !== FALSE) { 42 | $a = fgets($fh); # 1st line is titles 43 | while (!feof($fh)) { 44 | $a = fgetcsv($fh, 0, ',', '"'); 45 | $a[0] = preg_replace('/^X./i', '', $a[0]); #X.5.0 -> 5.0 46 | $a[1] = preg_replace('/\n\s*/', ' ', $a[1]); #remove line breaks 47 | $a[1] = preg_replace('/\s\s+/', ' ', $a[1]); #remove double spaces 48 | $a[1] = preg_replace('/"/', '\\"', $a[1]); #requote quotes 49 | $a[3] = preg_replace('/\n\s*/', ' ', $a[3]); #remove line breaks 50 | $a[3] = preg_replace('/\s\s+/', ' ', $a[3]); #remove double spaces 51 | $a[3] = preg_replace('/"/', '\\"', $a[3]); #requote quotes 52 | print "\$status_code_subclasses['$a[0]']['title'] = \"". $a[1]. "\"; # $a[4]\n"; 53 | print "\$status_code_subclasses['$a[0]']['descr'] = \"". $a[3]. "\";\n"; 54 | } 55 | fclose ($fh); 56 | } 57 | print "\n\n?>"; 58 | 59 | ?> 60 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | PHP Bounce Handler 2 | 3 | INSTALL 4 | ------- 5 | Upload to a website, and open testdriver1.php in a web browser 6 | for normal operation only 7 | bounce_driver_class.php and bounce_statuscodes.php are required 8 | 9 | 10 | 11 | RELEASE HISTORY 12 | --------------- 13 | v7.4 SB June 19, 2014 14 | 15 | - make auto-responder identification table driven 16 | - make bounce_statuscodes.php (prev rfc1893_status_codes.php) generated from IANA list 17 | php Make_statuscodes.php >bounce_statuscodes.php 18 | - allow for rfc status codes with 2 digits in the 3rd paramater 19 | - more supression for php notifications on undefined data 20 | - better detection and field definition for FBL handling 21 | - remove spaces in joined header lines 22 | - remove invalid/redundant implode operations 23 | - add two new sample emails 61,62 24 | - add command line test tool (cmdlinetest.php) 25 | 26 | v7.3 CF July 4, 2013 27 | 28 | - Replaced deprecated split() function. 29 | - Added auto-responder identification filter. 30 | - Suppressed php Notice errors. 31 | 32 | 33 | -------------------------------------------------------------------------------- /bounce_responses.php: -------------------------------------------------------------------------------- 1 | 'x', # use the code from the regex 10 | 'Diagnostic[- ][Cc]ode: smtp; ?\d\d\ ([45]\.\d\.\d{1,2})' => 'x', # use the code from the regex 11 | 'Status: ([45]\.\d\.\d{1,2})' => 'x', # use the code from the regex 12 | 13 | 'not yet been delivered' => '4.2.0', # 14 | 'Message will be retried for' => '4.2.0', # 15 | 'Connection frequency limited\. http:\/\/service\.mail\.qq\.com' => '4.2.0', 16 | 17 | 'Benutzer hat zuviele Mails auf dem Server' => '4.2.2', #.DE "mailbox full" 18 | 'exceeded storage allocation' => '4.2.2', # 19 | 'Mailbox full' => '4.2.2', # 20 | 'mailbox is full' => '4.2.2', #BH 21 | 'Mailbox quota usage exceeded' => '4.2.2', #BH 22 | 'Mailbox size limit exceeded' => '4.2.2', # 23 | 'over ?quota' => '4.2.2', # 24 | 'quota exceeded' => '4.2.2', # 25 | 'Quota violation' => '4.2.2', # 26 | 'User has exhausted allowed storage space' => '4.2.2', # 27 | 'User has too many messages on the server' => '4.2.2', # 28 | 'User mailbox exceeds allowed size' => '4.2.2', # 29 | 'mailfolder is full' => '4.2.2', # 30 | 'user has Exceeded' => '4.2.2', # 31 | 'not enough storage space' => '4.2.2', # 32 | 33 | 'Delivery attempts will continue to be made for' => '4.3.2', #SB: 4.3.2 is a more generic 'defer'; Kanon added. From Symantec_AntiVirus_for_SMTP_Gateways@uqam.ca Im not sure why Symantec delayed this message, but x.2.x means something to do with the mailbox, which seemed appropriate. x.5.x (protocol) or x.7.x (security) also seem possibly appropriate. It seems a lot of times its x.5.x when it seems to me it should be x.7.x, so maybe x.5.x is standard when mail is rejected due to spam-like characteristics instead of x.7.x like I think it should be. 34 | 'delivery temporarily suspended' => '4.3.2', # 35 | 'Greylisted for 5 minutes' => '4.3.2', # 36 | 'Greylisting in action' => '4.3.2', # 37 | 'Server busy' => '4.3.2', # 38 | 'server too busy' => '4.3.2', # 39 | 'system load is too high' => '4.3.2', # 40 | 'temporarily deferred' => '4.3.2', # 41 | 'temporarily unavailable' => '4.3.2', # 42 | 'Throttling' => '4.3.2', # 43 | 'too busy to accept mail' => '4.3.2', # 44 | 'too many connections' => '4.3.2', # 45 | 'too many sessions' => '4.3.2', # 46 | 'Too much load' => '4.3.2', # 47 | 'try again later' => '4.3.2', # 48 | 'Try later' => '4.3.2', # 49 | 'retry timeout exceeded' => '4.4.7', # 50 | 'queue too long' => '4.4.7', # 51 | 52 | '554 delivery error:' => '5.1.1', #SB: Yahoo/rogers.com generic delivery failure (see also OU-00) 53 | 'account has been disabled' => '5.1.1', # 54 | 'account is unavailable' => '5.1.1', # 55 | 'Account not found' => '5.1.1', # 56 | 'Address invalid' => '5.1.1', # 57 | 'Address is unknown' => '5.1.1', # 58 | 'Address unknown' => '5.1.1', # 59 | 'Addressee unknown' => '5.1.1', # 60 | 'ADDRESS_NOT_FOUND' => '5.1.1', # 61 | 'bad address' => '5.1.1', # 62 | 'Bad destination mailbox address' => '5.1.1', # 63 | 'destin. Sconosciuto' => '5.1.1', #.IT "user unknown" 64 | 'Destinatario errato' => '5.1.1', #.IT "invalid" 65 | 'Destinatario sconosciuto o mailbox disatttivata' => '5.1.1', #.IT "unknown /disabled" 66 | 'does not exist' => '5.1.1', # 67 | 'Email Address was not found' => '5.1.1', # 68 | 'Excessive userid unknowns' => '5.1.1', # 69 | 'Indirizzo inesistente' => '5.1.1', #.IT "no user" 70 | 'Invalid account' => '5.1.1', # 71 | 'invalid address' => '5.1.1', # 72 | 'Invalid or unknown virtual user' => '5.1.1', # 73 | 'Invalid mailbox' => '5.1.1', # 74 | 'Invalid recipient' => '5.1.1', # 75 | 'Mailbox not found' => '5.1.1', # 76 | 'mailbox unavailable' => '5.1.1', # 77 | 'nie istnieje' => '5.1.1', #.PL "does not exist" 78 | 'Nie ma takiego konta' => '5.1.1', #.PL "no such account" 79 | 'No mail box available for this user' => '5.1.1', # 80 | 'no mailbox here' => '5.1.1', # 81 | 'No one with that email address here' => '5.1.1', # 82 | 'no such address' => '5.1.1', # 83 | 'no such email address' => '5.1.1', # 84 | 'No such mail drop defined' => '5.1.1', # 85 | 'No such mailbox' => '5.1.1', # 86 | 'No such person at this address' => '5.1.1', # 87 | 'no such recipient' => '5.1.1', # 88 | 'No such user' => '5.1.1', # 89 | 'not a known user' => '5.1.1', # 90 | 'not a valid mailbox' => '5.1.1', # 91 | 'not a valid user' => '5.1.1', # 92 | 'not available' => '5.1.1', # 93 | 'not exists' => '5.1.1', # 94 | 'Recipient address rejected' => '5.1.1', # 95 | 'Recipient not allowed' => '5.1.1', # 96 | 'Recipient not found' => '5.1.1', # 97 | 'recipient rejected' => '5.1.1', # 98 | 'Recipient unknown' => '5.1.1', # 99 | "server doesn't handle mail for that user" => '5.1.1', # 100 | 'This account is disabled' => '5.1.1', # 101 | 'This address no longer accepts mail' => '5.1.1', # 102 | 'This email address is not known to this system' => '5.1.1', # 103 | 'Unknown account' => '5.1.1', # 104 | 'unknown address or alias' => '5.1.1', # 105 | 'Unknown email address' => '5.1.1', # 106 | 'Unknown local part' => '5.1.1', # 107 | 'unknown or illegal alias' => '5.1.1', # 108 | 'unknown or illegal user' => '5.1.1', # 109 | 'Unknown recipient' => '5.1.1', # 110 | 'unknown user' => '5.1.1', # 111 | 'user disabled' => '5.1.1', # 112 | "User doesn't exist in this server" => '5.1.1', # 113 | 'user invalid' => '5.1.1', # 114 | 'User is suspended' => '5.1.1', # 115 | 'User is unknown' => '5.1.1', # 116 | 'User not found' => '5.1.1', # 117 | 'User not known' => '5.1.1', # 118 | 'User unknown' => '5.1.1', # 119 | 'valid RCPT command must precede DATA' => '5.1.1', # 120 | 'was not found in LDAP server' => '5.1.1', # 121 | 'We are sorry but the address is invalid' => '5.1.1', # 122 | 'Unable to find alias user' => '5.1.1', # 123 | 124 | "domain isn't in my list of allowed rcpthosts" => '5.1.2', # 125 | 'Esta casilla ha expirado por falta de uso' => '5.1.2', #BH ES:expired 126 | 'host ?name is unknown' => '5.1.2', # 127 | 'no relaying allowed' => '5.1.2', # 128 | 'no such domain' => '5.1.2', # 129 | 'not our customer' => '5.1.2', # 130 | 'relay not permitted' => '5.1.2', # 131 | 'Relay access denied' => '5.1.2', # 132 | 'relaying denied' => '5.1.2', # 133 | 'Relaying not allowed' => '5.1.2', # 134 | 'This system is not configured to relay mail' => '5.1.2', # 135 | 'Unable to relay' => '5.1.2', # 136 | 'unrouteable mail domain' => '5.1.2', #BH 137 | 'we do not relay' => '5.1.2', # 138 | 139 | 'Old address no longer valid' => '5.1.6', # 140 | 'recipient no longer on server' => '5.1.6', # 141 | 142 | 'Sender address rejected' => '5.1.8', # 143 | 144 | 'exceeded the rate limit' => '5.2.0', # 145 | 'Local Policy Violation' => '5.2.0', # 146 | 'Mailbox currently suspended' => '5.2.0', # 147 | 'mailbox unavailable' => '5.2.0', # 148 | 'mail can not be delivered' => '5.2.0', # 149 | 'Delivery failed' => '5.2.0', # 150 | 'mail couldn\'t be delivered' => '5.2.0', # 151 | 'The account or domain may not exist' => '5.2.0', #I guess.... seems like 5.1.1, 5.1.2, or 5.4.4 would fit too, but 5.2.0 seemed most generic 152 | 153 | 'Account disabled' => '5.2.1', # 154 | 'account has been disabled' => '5.2.1', # 155 | 'Account Inactive' => '5.2.1', # 156 | 'Adressat unbekannt oder Mailbox deaktiviert' => '5.2.1', # 157 | 'Destinataire inconnu ou boite aux lettres desactivee' => '5.2.1', #.FR disabled 158 | 'mail is not currently being accepted for this mailbox' => '5.2.1', # 159 | 'El usuario esta en estado: inactivo' => '5.2.1', #.IT inactive 160 | 'email account that you tried to reach is disabled' => '5.2.1', # 161 | 'inactive user' => '5.2.1', # 162 | 'Mailbox disabled for this recipient' => '5.2.1', # 163 | 'mailbox has been blocked due to inactivity' => '5.2.1', # 164 | 'mailbox is currently unavailable' => '5.2.1', # 165 | 'Mailbox is disabled' => '5.2.1', # 166 | 'Mailbox is inactive' => '5.2.1', # 167 | 'Mailbox Locked or Suspended' => '5.2.1', # 168 | 'mailbox temporarily disabled' => '5.2.1', # 169 | 'Podane konto jest zablokowane administracyjnie lub nieaktywne'=> '5.2.1', #.PL locked or inactive 170 | "Questo indirizzo e' bloccato per inutilizzo" => '5.2.1', #.IT blocked/expired 171 | 'Recipient mailbox was disabled' => '5.2.1', # 172 | 'Domain name not found' => '5.2.1', 173 | 174 | 'couldn\'t find any host named' => '5.4.4', # 175 | 'couldn\'t find any host by that name' => '5.4.4', # 176 | 'PERM_FAILURE: DNS Error' => '5.4.4', #SB: Routing failure 177 | 'Temporary lookup failure' => '5.4.4', # 178 | 'unrouteable address' => '5.4.4', # 179 | "can't connect to" => '5.4.4', # 180 | 181 | 'Too many hops' => '5.4.6', # 182 | 183 | 'Requested action aborted' => '5.5.0', # 184 | 185 | 'rejecting password protected file attachment' => '5.6.2', #RFC "Conversion required and prohibited" 186 | 187 | '550 OU-00' => '5.7.1', #SB hotmail returns a OU-001 if you're on their blocklist 188 | '550 SC-00' => '5.7.1', #SB hotmail returns a SC-00x if you're on their blocklist 189 | '550 DY-00' => '5.7.1', #SB hotmail returns a DY-00x if you're a dynamic IP 190 | '554 denied' => '5.7.1', # 191 | 'You have been blocked by the recipient' => '5.7.1', # 192 | 'requires that you verify' => '5.7.1', # 193 | 'Access denied' => '5.7.1', # 194 | 'Administrative prohibition - unable to validate recipient' => '5.7.1', # 195 | 'Blacklisted' => '5.7.1', # 196 | 'blocke?d? for spam' => '5.7.1', # 197 | 'conection refused' => '5.7.1', # 198 | 'Connection refused due to abuse' => '5.7.1', # 199 | 'dial-up or dynamic-ip denied' => '5.7.1', # 200 | 'Domain has received too many bounces' => '5.7.1', # 201 | 'failed several antispam checks' => '5.7.1', # 202 | 'found in a DNS blacklist' => '5.7.1', # 203 | 'IPs blocked' => '5.7.1', # 204 | 'is blocked by' => '5.7.1', # 205 | 'Mail Refused' => '5.7.1', # 206 | 'Message does not pass DomainKeys' => '5.7.1', # 207 | 'Message looks like spam' => '5.7.1', # 208 | 'Message refused by' => '5.7.1', # 209 | 'not allowed access from your location' => '5.7.1', # 210 | 'permanently deferred' => '5.7.1', # 211 | 'Rejected by policy' => '5.7.1', # 212 | 'rejected by Windows Live Hotmail for policy reasons' => '5.7.1', # 213 | 'Rejected for policy reasons' => '5.7.1', # 214 | 'Rejecting banned content' => '5.7.1', # 215 | 'Sorry, looks like spam' => '5.7.1', # 216 | 'spam message discarded' => '5.7.1', # 217 | 'Too many spams from your IP' => '5.7.1', # 218 | 'TRANSACTION FAILED' => '5.7.1', # 219 | 'Transaction rejected' => '5.7.1', # 220 | 'Wiadomosc zostala odrzucona przez system antyspamowy' => '5.7.1', #.PL rejected as spam 221 | 'Your message was declared Spam' => '5.7.1' # 222 | ); 223 | 224 | # triggers for autoresponders 225 | $autorespondlist = array( 226 | '^\[?auto.{0,20}reply\]?', 227 | '^auto[ -]?response', 228 | '^Yahoo! auto response', 229 | '^Thank you for your email\.', 230 | '^Vacation.{0,20}(reply|respon)', 231 | '^out.?of (the )?office', 232 | '^(I am|I\'m).{0,20}\s(away|on vacation|on leave|out of office|out of the office)', 233 | "\350\207\252\345\212\250\345\233\236\345\244\215" #sino.com, 163.com UTF8 encoded 234 | ); 235 | 236 | # trigger subject lines for bounces 237 | $bouncesubj = array( 238 | 'deletver reports about your e?mail', 239 | 'delivery errors', 240 | 'delivery failure', 241 | 'delivery has failed', 242 | 'delivery notification', 243 | 'delivery problem', 244 | 'delivery reports about your email', 245 | 'delivery status notif', 246 | 'failure delivery', 247 | 'failure notice', 248 | 'mail delivery fail', #catches failure and failed 249 | 'mail delivery system', 250 | 'mailserver notification', 251 | 'mail status report', 252 | 'mail system error', 253 | 'mail transaction failed', 254 | 'mdaemon notification', 255 | 'message delayed', 256 | 'nondeliverable mail', 257 | 'Non[_ ]remis[_ ]', #fr 258 | 'No[_ ]se[_ ]puede[_ ]entregar', #es 259 | 'Onbestelbaar', #nl 260 | 'returned e?mail', 261 | 'returned to sender', 262 | 'returning message to sender', 263 | 'spam eater', 264 | 'undeliverable', 265 | 'undelivered mail', 266 | 'warning: message', 267 | ); 268 | 269 | # 270 | # test mapping to ensure that we don't match one within another 271 | # 272 | #foreach ($bouncelist as $l1 => $j) { 273 | # foreach ($bouncelist as $l2 => $k) { 274 | # if (($l1 != $l2) && preg_match("/$l1/i", $l2)) { 275 | # print "'$l1'($j) = '$l2'($k)\n"; 276 | # } 277 | # } 278 | #} 279 | ?> -------------------------------------------------------------------------------- /bounce_statuscodes.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmdlinetest.php: -------------------------------------------------------------------------------- 1 | get_the_facts($email); 10 | # var_dump($bounceinfo); 11 | # var_dump($bh); 12 | print "TYPE ". @$bh->type. "\n"; 13 | if ($bh->type == 'bounce') { 14 | print "ACTION ". $bounceinfo[0]['action']. "\n"; 15 | print "STATUS ". $bounceinfo[0]['status']. "\n"; 16 | print "RECIPIENT ". $bounceinfo[0]['recipient']. "\n"; 17 | } 18 | if ($bh->type == 'fbl') { 19 | print "ENV FROM ". @$bh->fbl_hash['Original-mail-from']. "\n"; 20 | print "AGENT ". @$bh->fbl_hash['User-agent']. "\n"; 21 | print "IP ". @$bh->fbl_hash['Source-ip']. "\n"; 22 | } 23 | if ($bh->type == 'autoresponse') { 24 | print "AUTO ". $bounceinfo[0]['autoresponse']. "\n"; 25 | } 26 | if ($bh->type) 27 | @$total[$bh->type]++; 28 | else 29 | @$total['unknown']++; 30 | print "\n"; 31 | } 32 | 33 | 34 | 35 | if (defined('STDIN')) { 36 | if (count($argv) > 1) { 37 | for ($i = 1; $i < count($argv); $i++) { 38 | if (is_dir($argv[$i])) { 39 | $dh = opendir($argv[$i]); 40 | while ($fn = readdir($dh)) { 41 | if (substr($fn,0,1) !== '.') { 42 | $email = file_get_contents($argv[$i].'/'.$fn); 43 | print $argv[1]."/$fn\n"; 44 | checkmail($email); 45 | } 46 | } 47 | } 48 | else { 49 | $email = file_get_contents($argv[$i]); 50 | print $argv[1]."\n"; 51 | checkmail($email); 52 | } 53 | } 54 | foreach ($total as $k => $v) { 55 | print "$k = $v\n"; 56 | } 57 | 58 | } 59 | else { 60 | $handle = fopen("php://stdin","r"); 61 | $email = stream_get_contents($handle); 62 | fclose($handle); 63 | checkmail($email); 64 | } 65 | foreach ($total as $t => $v) { 66 | printf("%-15s %6d\n", $t, $v); 67 | } 68 | } 69 | 70 | ?> 71 | -------------------------------------------------------------------------------- /eml/10.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/10.eml -------------------------------------------------------------------------------- /eml/11.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/11.eml -------------------------------------------------------------------------------- /eml/12.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/12.eml -------------------------------------------------------------------------------- /eml/13.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/13.eml -------------------------------------------------------------------------------- /eml/14.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/14.eml -------------------------------------------------------------------------------- /eml/15.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/15.eml -------------------------------------------------------------------------------- /eml/16.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/16.eml -------------------------------------------------------------------------------- /eml/17.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/17.eml -------------------------------------------------------------------------------- /eml/18.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/18.eml -------------------------------------------------------------------------------- /eml/19.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/19.eml -------------------------------------------------------------------------------- /eml/2.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/2.eml -------------------------------------------------------------------------------- /eml/20.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/20.eml -------------------------------------------------------------------------------- /eml/21.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/21.eml -------------------------------------------------------------------------------- /eml/22.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/22.eml -------------------------------------------------------------------------------- /eml/23.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/23.eml -------------------------------------------------------------------------------- /eml/24.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/24.eml -------------------------------------------------------------------------------- /eml/25.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/25.eml -------------------------------------------------------------------------------- /eml/26.eml: -------------------------------------------------------------------------------- 1 | Return-path: <> 2 | Envelope-to: ar1@ar1.outmailing.com 3 | Delivery-date: Mon, 30 Oct 2006 15:48:25 -0300 4 | Received: from postino11.prima.com.ar ([200.42.0.147]) 5 | by ar2.outmailing.net with smtp (Exim 4.60) 6 | id 1GecBM-0003ig-Rw 7 | for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:48:25 -0300 8 | Received: (qmail 69414 invoked for bounce); 30 Oct 2006 18:51:15 -0000 9 | Date: 30 Oct 2006 18:51:15 -0000 10 | From: MAILER-DAEMON@postino11.prima.com.ar 11 | To: ar1@ar1.outmailing.com 12 | MIME-Version: 1.0 13 | Content-Type: multipart/mixed; boundary="1162234271postino11.prima.com.ar3640051" 14 | Subject: failure notice 15 | 16 | --1162234271postino11.prima.com.ar3640051 17 | 18 | (postino11.prima.com.ar) 19 | Su mensaje no pudo ser entregado - Sua mensagem nao pode ser enviada - Your message could not be delivered. 20 | 21 | : 22 | Mailbox quota usage exceeded. Espacio en casilla de mail agotado. 23 | 24 | --- Mensaje original adjunto. 25 | 26 | --1162234271postino11.prima.com.ar3640051 27 | Content-Type: message/rfc822 28 | 29 | Return-Path: 30 | Received: (qmail 68709 invoked from network); 30 Oct 2006 18:51:11 -0000 31 | Received: from unknown (HELO ar2.outmailing.net) (200.68.65.111) 32 | by postino11.prima.com.ar with SMTP; 30 Oct 2006 18:51:11 -0000 33 | Received: from apache by ar2.outmailing.net with local (Exim 4.60) 34 | (envelope-from ) 35 | id 1GecBG-0003hg-IF 36 | for andres_ferrero@ciudad.com.ar; Mon, 30 Oct 2006 15:48:18 -0300 37 | To: andres_ferrero@ciudad.com.ar 38 | Subject: Eventos de La semana 39 | Received: from mailer 40 | by ar1.outmailing.com with HTTP (Mail); 41 | Mon, 30 Oct 2006 15:48:18 -0300 42 | Date: Mon, 30 Oct 2006 15:48:18 -0300 43 | From: Green Land Irish Pub 44 | Reply-to: fedecheme@hotmail.com 45 | Message-ID: <8b4ded0ce2ffb4f06b93347f80b9e5ff@ar1.outmailing.com> 46 | X-Priority: 3 47 | X-Mailer: AC Mailer 48 | X-mid: YW5kcmVzX2ZlcnJlcm9AY2l1ZGFkLmNvbS5hciAsIG03Mjg= 49 | MIME-Version: 1.0 50 | Content-Transfer-Encoding: 8bit 51 | Content-Type: text/html; charset="utf-8" 52 | 53 | 54 | 60 | 61 | 62 | 63 | 120 | 122 |
 
123 |
Si Ud. no puede visializar las 163 | imagenes haga click aqui

167 | 169 | 170 | 171 | --1162234271postino11.prima.com.ar3640051-- 172 | -------------------------------------------------------------------------------- /eml/27.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/27.eml -------------------------------------------------------------------------------- /eml/28.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/28.eml -------------------------------------------------------------------------------- /eml/29.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/29.eml -------------------------------------------------------------------------------- /eml/3.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/3.eml -------------------------------------------------------------------------------- /eml/31.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/31.eml -------------------------------------------------------------------------------- /eml/32.eml: -------------------------------------------------------------------------------- 1 | Return-path: <> 2 | Envelope-to: ar1@ar1.outmailing.com 3 | Delivery-date: Mon, 30 Oct 2006 15:38:36 -0300 4 | Received: from barracuda.intermedia.net.ar ([200.69.29.90]) 5 | by ar2.outmailing.net with esmtp (Exim 4.60) 6 | id 1Gec1s-0003VF-5Z 7 | for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:38:36 -0300 8 | MIME-Version: 1.0 9 | From: MAILER-DAEMON <> 10 | Message-Id: 11 | Subject: **Message you sent blocked by our bulk email filter** 12 | Content-Type: multipart/report; report-type=delivery-status; 13 | charset=utf-8; 14 | boundary="----------=_1162233687-1530-687" 15 | To: ar1@ar1.outmailing.com 16 | Date: Mon, 30 Oct 2006 15:41:27 -0300 (ART) 17 | 18 | ------------=_1162233687-1530-687 19 | Content-Type: text/plain; charset="utf-8" 20 | Content-Disposition: inline 21 | Content-Transfer-Encoding: base64 22 | 23 | WW91ciBtZXNzYWdlIHRvOiBzdGVsbGFtaXJhbmRhQGludGVybGluay5jb20u 24 | YXIKd2FzIGJsb2NrZWQgYnkgb3VyIFNwYW0gRmlyZXdhbGwuIFRoZSBlbWFp 25 | bCB5b3Ugc2VudCB3aXRoIHRoZSBmb2xsb3dpbmcgc3ViamVjdCBoYXMgTk9U 26 | IEJFRU4gREVMSVZFUkVEOgoKU3ViamVjdDogTEFTVCBWQUNBTkNJRVMhISEK 27 | Cg== 28 | 29 | ------------=_1162233687-1530-687 30 | Content-Type: message/delivery-status 31 | Content-Disposition: inline 32 | Content-Transfer-Encoding: 7bit 33 | Content-Description: Delivery error report 34 | 35 | Reporting-MTA: dns; barracuda.intermedia.net.ar 36 | Received-From-MTA: smtp; barracuda.intermedia.net.ar ([127.0.0.1]) 37 | Arrival-Date: Mon, 30 Oct 2006 15:41:20 -0300 (ART) 38 | 39 | Final-Recipient: rfc822; stellamiranda@interlink.com.ar 40 | Action: failed 41 | Status: 5.7.1 42 | Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, UBE, id=01530-01-625 43 | Last-Attempt-Date: Mon, 30 Oct 2006 15:41:27 -0300 (ART) 44 | 45 | ------------=_1162233687-1530-687 46 | Content-Type: text/rfc822-headers 47 | Content-Disposition: inline 48 | Content-Transfer-Encoding: 7bit 49 | Content-Description: Undelivered-message headers 50 | 51 | Received: from ar2.outmailing.net (ar2.outmailing.net [200.68.65.111]) 52 | by barracuda.intermedia.net.ar (Spam Firewall) with ESMTP id 29093D01B 53 | for ; Mon, 30 Oct 2006 15:41:19 -0300 (ART) 54 | Received: from apache by ar2.outmailing.net with local (Exim 4.60) 55 | (envelope-from ) 56 | id 1Gec1d-0003Uf-GE 57 | for stellamiranda@interlink.com.ar; Mon, 30 Oct 2006 15:38:21 -0300 58 | To: stellamiranda@interlink.com.ar 59 | Subject: LAST VACANCIES!!! 60 | Received: from mailer 61 | by ar1.outmailing.com with HTTP (Mail); 62 | Mon, 30 Oct 2006 15:38:21 -0300 63 | Date: Mon, 30 Oct 2006 15:38:21 -0300 64 | From: English & Fun 65 | Reply-To: info@welcometoenglishandfun.com 66 | Message-ID: 67 | X-Priority: 3 68 | X-Mailer: AC Mailer 69 | X-mid: c3RlbGxhbWlyYW5kYUBpbnRlcmxpbmsuY29tLmFyICwgbTcyNw== 70 | MIME-Version: 1.0 71 | Content-Type: multipart/alternative; 72 | boundary="b1_b40c7d554eaf8d35bdf73e333c270b15" 73 | 74 | ------------=_1162233687-1530-687-- 75 | -------------------------------------------------------------------------------- /eml/33.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/33.eml -------------------------------------------------------------------------------- /eml/34.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/34.eml -------------------------------------------------------------------------------- /eml/35.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/35.eml -------------------------------------------------------------------------------- /eml/36.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/36.eml -------------------------------------------------------------------------------- /eml/37.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/37.eml -------------------------------------------------------------------------------- /eml/38.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/38.eml -------------------------------------------------------------------------------- /eml/39.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/39.eml -------------------------------------------------------------------------------- /eml/4.eml: -------------------------------------------------------------------------------- 1 | Return-path: <> 2 | Envelope-to: ar1@ar1.outmailing.com 3 | Delivery-date: Mon, 30 Oct 2006 15:50:51 -0300 4 | Received: from cumeil11.prima.com.ar ([200.42.0.143] helo=cumeils.prima.com.ar) 5 | by ar2.outmailing.net with smtp (Exim 4.60) 6 | id 1GecDi-00044e-MA 7 | for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:50:50 -0300 8 | Received: (qmail 51340 invoked for bounce); 30 Oct 2006 18:53:41 -0000 9 | Date: 30 Oct 2006 18:53:41 -0000 10 | From: MAILER-DAEMON@cumeils.prima.com.ar 11 | To: ar1@ar1.outmailing.com 12 | MIME-Version: 1.0 13 | Content-Type: multipart/mixed; boundary="1162234421cumeils.prima.com.ar3369823" 14 | Subject: failure notice 15 | 16 | --1162234421cumeils.prima.com.ar3369823 17 | 18 | (cumeils.prima.com.ar) 19 | Su mensaje no pudo ser entregado - Sua mensagem nao pode ser enviada - Your message could not be delivered. 20 | 21 | : 22 | Esta casilla ha expirado por falta de uso. 23 | 24 | --- Mensaje original adjunto. 25 | 26 | --1162234421cumeils.prima.com.ar3369823 27 | Content-Type: message/rfc822 28 | 29 | Return-Path: 30 | Received: (qmail 51335 invoked from network); 30 Oct 2006 18:53:41 -0000 31 | Received: from unknown (HELO ar2.outmailing.net) (200.68.65.111) 32 | by cumeil11.prima.com.ar with SMTP; 30 Oct 2006 18:53:41 -0000 33 | Received: from apache by ar2.outmailing.net with local (Exim 4.60) 34 | (envelope-from ) 35 | id 1GecDa-00043k-5k 36 | for aracelibarrios@ubbi.com; Mon, 30 Oct 2006 15:50:42 -0300 37 | To: aracelibarrios@ubbi.com 38 | Subject: Eventos de La semana 39 | Received: from mailer 40 | by ar1.outmailing.com with HTTP (Mail); 41 | Mon, 30 Oct 2006 15:50:42 -0300 42 | Date: Mon, 30 Oct 2006 15:50:42 -0300 43 | From: Green Land Irish Pub 44 | Reply-to: fedecheme@hotmail.com 45 | Message-ID: <1672dbd6d834b4841b46e13f8268ea18@ar1.outmailing.com> 46 | X-Priority: 3 47 | X-Mailer: AC Mailer 48 | X-mid: YXJhY2VsaWJhcnJpb3NAdWJiaS5jb20gLCBtNzI4 49 | MIME-Version: 1.0 50 | Content-Transfer-Encoding: 8bit 51 | Content-Type: text/html; charset="utf-8" 52 | 53 | 54 | 60 | 61 | 62 | 63 | 120 | 122 |
 
123 |
Si Ud. no puede visializar las 163 | imagenes haga click aqui

167 | 169 | 170 | 171 | --1162234421cumeils.prima.com.ar3369823-- 172 | -------------------------------------------------------------------------------- /eml/40.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/40.eml -------------------------------------------------------------------------------- /eml/42.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/42.eml -------------------------------------------------------------------------------- /eml/43.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/43.eml -------------------------------------------------------------------------------- /eml/44.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/44.eml -------------------------------------------------------------------------------- /eml/45.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/45.eml -------------------------------------------------------------------------------- /eml/46.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/46.eml -------------------------------------------------------------------------------- /eml/47.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/47.eml -------------------------------------------------------------------------------- /eml/49.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/49.eml -------------------------------------------------------------------------------- /eml/5.1.1.eml: -------------------------------------------------------------------------------- 1 | Received: (qmail 1804 invoked from network); 15 Sep 2010 22:24:12 -0000 2 | Received: from unknown (HELO unknown) (10.1.0.252) 3 | by unknown with SMTP; 15 Sep 2010 22:24:12 -0000 4 | Received: from xxx.net ([1.1.1.1]) 5 | by unkown.com with ESMTP; 15 Sep 2010 15:24:11 -0700 6 | Date: Wed, 15 Sep 2010 22:24:10 +0000 7 | MIME-Version: 1.0 8 | Message-ID: <2.4.1284589450460@localhost> 9 | Content-Type: multipart/report; report-type=delivery-status; charset=us-ascii; 10 | boundary=___BoUnDaRy_1284589450461.698.6877695897484 11 | To: support@unknown.com 12 | From: Mailer Daemon 13 | Subject: Undeliverable: Hello World 14 | 15 | --___BoUnDaRy_1284589450461.698.6877695897484 16 | Date: Wed, 15 Sep 2010 22:24:10 +0000 17 | MIME-Version: 1.0 18 | Message-ID: <2.4.1284589450460@localhost> 19 | Content-Transfer-Encoding: quoted-printable 20 | Content-Type: text/plain; charset=us-ascii 21 | 22 | The attached message could not be delivered to the recipients listed b= 23 | elow. 24 | 25 | The original message was rejected at Wed, 15 Sep 2010 22:24:10 +0000 26 | 27 | ----- The following addresses had permanent fatal errors ----- 28 | 29 | send: RCPT TO: 30 | recv: 550 User unknown 31 | 32 | --___BoUnDaRy_1284589450461.698.6877695897484 33 | Content-Type: message/delivery-status 34 | 35 | Reporting-MTA: dns; smtp.somedomain.com 36 | 37 | Final-Recipient: 38 | Action: failed 39 | Status: 5.1.1 (permanent failure) 40 | Last-Attempt-Date: Wed, 15 Sep 2010 22:24:10 +0000 41 | 42 | --___BoUnDaRy_1284589450461.698.6877695897484 43 | Date: Wed, 15 Sep 2010 22:24:10 +0000 44 | MIME-Version: 1.0 45 | Message-ID: <2.4.1284589450460@localhost> 46 | Content-Transfer-Encoding: quoted-printable 47 | Content-Type: message/rfc822; charset=us-ascii 48 | 49 | Received: from unkownn.com (=5B1.1.1.1=5D) 50 | by smtp.somedomain.com (=7Bf885e408-6373-4fe1-96b5-c2a1474= 51 | 8506e=7D) 52 | via TCP (inbound) with SMTP id 20100915222355803 53 | for ; 54 | Wed, 15 Sep 2010 22:23:55 +0000 55 | X-RC-FROM: 56 | X-RC-RCPT: 57 | Received: (qmail 31893 invoked from network); 15 Sep 2010 22:23:52 -000= 58 | 0 59 | Received: from unknown (HELO us.local) (10.1.0.252) 60 | by unkown.com with SMTP; 15 Sep 2010 22:23:52 -0000 61 | From: =22Unknown=22 62 | To: =22someuser=22 63 | Date: Wed, 15 Sep 2010 15:23:52 -0700 64 | Subject: TEST BOUNCE 65 | MIME-Version: 1.0 66 | Content-Type: multipart/alternative; boundary=3D=22_=3DaspNetEmail=3D_5= 67 | 740adb73e4240d79764be5b605ba6c3=22 68 | X-Mailer: aspNetEmail ver 2.5.0.0 69 | X-RCPT-TO: 70 | MIME-Version: 1.0 71 | Message-ID: 72 | X-OriginalArrivalTime: 15 Sep 2010 22:23:52.0222 (UTC) FILETIME=3D=5BAD= 73 | 246BE0:01CB5524=5D 74 | 75 | --_=3DaspNetEmail=3D_5740adb73e4240d79764be5b605ba6c3 76 | Content-Type: text/plain; 77 | charset=3D=22utf-8=22 78 | Content-Transfer-Encoding: quoted-printable 79 | 80 | Hello World 81 | 82 | -------------------------------------------------------------------------------- /eml/5.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/5.eml -------------------------------------------------------------------------------- /eml/50.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/50.eml -------------------------------------------------------------------------------- /eml/51.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/51.eml -------------------------------------------------------------------------------- /eml/52.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/52.eml -------------------------------------------------------------------------------- /eml/53.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/53.eml -------------------------------------------------------------------------------- /eml/54.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/54.eml -------------------------------------------------------------------------------- /eml/55.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/55.eml -------------------------------------------------------------------------------- /eml/56.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/56.eml -------------------------------------------------------------------------------- /eml/57.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/57.eml -------------------------------------------------------------------------------- /eml/58.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/58.eml -------------------------------------------------------------------------------- /eml/59.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/59.eml -------------------------------------------------------------------------------- /eml/6.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/6.eml -------------------------------------------------------------------------------- /eml/60.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/60.eml -------------------------------------------------------------------------------- /eml/61.eml: -------------------------------------------------------------------------------- 1 | Received: (qmail 6136 invoked from network); 18 Jun 2014 17:42:53 -0000 2 | X-IronPort-Anti-Spam-Filtered: true 3 | X-IronPort-Anti-Spam-Result: AqQCAEfOoVM/lpkEnGdsb2JhbACDIIEZg0aqCjABjkUcAYZrU4EiDwEBAQEBCAsJCRQohAMBAhYGCxs1NgwhAg0EECYrGweIDAMRDZ8BgjMBi3h3mDkDfYVaiUKDEAuBNhACAQpAgkIPMhIkgRqBLYM2BYstgy6FDYFygUSLPViJXiEvAQ 4 | X-IronPort-AV: E=Sophos;i="5.01,501,1400025600"; 5 | d="scan'208,217";a="3130576" 6 | Received: by 3rdparty.com (Postfix) 7 | id 611822A0BE1; Wed, 18 Jun 2014 13:42:52 -0400 (EDT) 8 | Date: Wed, 18 Jun 2014 13:42:52 -0400 (EDT) 9 | From: MAILER-DAEMON@3rdparty.com (Mail Delivery System) 10 | Subject: Undelivered Mail Returned to Sender 11 | To: support@example.com 12 | Auto-Submitted: auto-replied 13 | MIME-Version: 1.0 14 | Content-Type: multipart/report; report-type=delivery-status; 15 | boundary="EF62D2A0BD1.1403113372/3rdparty.com" 16 | Message-Id: <20140618174252.611822A0BE1@3rdparty.com> 17 | 18 | This is a MIME-encapsulated message. 19 | 20 | --EF62D2A0BD1.1403113372/3rdparty.com 21 | Content-Description: Notification 22 | Content-Type: text/plain; charset=us-ascii 23 | 24 | This is the mail system at host 3rdparty.com. 25 | 26 | I'm sorry to have to inform you that your message could not 27 | be delivered to one or more recipients. It's attached below. 28 | 29 | For further assistance, please send mail to postmaster. 30 | 31 | If you do so, please include this problem report. You can 32 | delete your own text from the attached returned message. 33 | 34 | The mail system 35 | 36 | : host mta5.am0.yahoodns.net[66.196.118.34] said: 554 37 | 5.7.9 Message not accepted for policy reasons. See 38 | http://postmaster.yahoo.com/errors/postmaster-28.html (in reply to end of 39 | DATA command) 40 | 41 | --EF62D2A0BD1.1403113372/3rdparty.com 42 | Content-Description: Delivery report 43 | Content-Type: message/delivery-status 44 | 45 | Reporting-MTA: dns; 3rdparty.com 46 | X-Postfix-Queue-ID: EF62D2A0BD1 47 | X-Postfix-Sender: rfc822; support@example.com 48 | Arrival-Date: Wed, 18 Jun 2014 13:42:51 -0400 (EDT) 49 | 50 | Final-Recipient: rfc822; user@yahoo.com 51 | Original-Recipient: rfc822;user@yahoo.com 52 | Action: failed 53 | Status: 5.7.9 54 | Remote-MTA: dns; mta5.am0.yahoodns.net 55 | Diagnostic-Code: smtp; 554 5.7.9 Message not accepted for policy reasons. See 56 | http://postmaster.yahoo.com/errors/postmaster-28.html 57 | 58 | --EF62D2A0BD1.1403113372/3rdparty.com 59 | Content-Description: Undelivered Message 60 | Content-Type: message/rfc822 61 | 62 | Return-Path: 63 | Received: from PRODSVCHOST2-B (unknown [10.10.2.4]) 64 | by 3rdparty.com (Postfix) with ESMTP id EF62D2A0BD1 65 | for ; Wed, 18 Jun 2014 13:42:51 -0400 (EDT) 66 | Reply-To: support@example.com 67 | From: "Support" 68 | To: "user@yahoo.com" 69 | Message-ID: 70 | Date: Wed, 18 Jun 2014 13:42:51 -0400 71 | Subject: subjectline removoved 72 | MIME-Version: 1.0 73 | Content-Type: multipart/alternative; 74 | boundary="----752682C07B5C4B6E9EDB2BCCCE0D889F" 75 | 76 | ------752682C07B5C4B6E9EDB2BCCCE0D889F 77 | Content-type: text/plain; charset=utf-8 78 | Content-Transfer-Encoding: quoted-printable 79 | 80 | 81 | This was an email 82 | 83 | ------752682C07B5C4B6E9EDB2BCCCE0D889F 84 | Content-type: text/html; charset=utf-8 85 | Content-Transfer-Encoding: quoted-printable 86 | 87 | This was an email 88 | 89 | ------752682C07B5C4B6E9EDB2BCCCE0D889F-- 90 | 91 | 92 | --EF62D2A0BD1.1403113372/3rdparty.com-- 93 | -------------------------------------------------------------------------------- /eml/62.eml: -------------------------------------------------------------------------------- 1 | Received: (qmail 11526 invoked from network); 18 Jun 2014 12:00:02 -0000 2 | Received: from unknown (HELO panelmx.example.com) (10.1.111.3) 3 | by inboundmx02.local with SMTP; 18 Jun 2014 12:00:02 -0000 4 | X-IronPort-Anti-Spam-Filtered: true 5 | X-IronPort-Anti-Spam-Result: AvYCAOJ9oVNQQWAtnGdsb2JhbACDIAIFgRKDRoMRpyoBliCBDBYPAQEBAQEGDQkJFCiELXIDHSECERBRiEYJnV2PI5lKhUMXgUGMYwEBAkkhgmESJIEakBWKLYFEhSCQOTsvAYECCBc 6 | X-IronPort-AV: E=Sophos;i="5.01,499,1400025600"; 7 | d="scan'208,217";a="3121158" 8 | Received: from smtp.domain.com (unknown [192.168.4.31]) 9 | by fallback.mailcluster.introweb.intern (Postfix #82) with ESMTP id 61A332B7F2B 10 | for ; Wed, 18 Jun 2014 13:59:59 +0200 (CEST) 11 | Received: from smtp.domain.com (unknown [192.168.4.13]) 12 | by smtp.domain.com (Postfix) with ESMTP id E405D153445 13 | for ; Wed, 18 Jun 2014 14:03:03 +0200 (CEST) 14 | Received: by backend.domain.com (Postfix) 15 | id 9F433AC838; Wed, 18 Jun 2014 13:56:56 +0200 (CEST) 16 | Date: Wed, 18 Jun 2014 13:56:56 +0200 (CEST) 17 | From: MAILER-DAEMON@domain.com (Mail Delivery System) 18 | Subject: Undelivered Mail Returned to Sender 19 | To: support@example.com 20 | Auto-Submitted: auto-replied 21 | MIME-Version: 1.0 22 | Content-Type: multipart/report; report-type=delivery-status; 23 | boundary="32632AC835.1403092616/backend.domain.com" 24 | Message-Id: <20140618115656.9F433AC838@backend.domain.com> 25 | 26 | This is a MIME-encapsulated message. 27 | 28 | --32632AC835.1403092616/backend.domain.com 29 | Content-Description: Notification 30 | Content-Type: text/plain; charset=us-ascii 31 | 32 | This is the mail system at host backend.domain.com. 33 | 34 | I'm sorry to have to inform you that your message could not 35 | be delivered to one or more recipients. It's attached below. 36 | 37 | For further assistance, please send mail to 38 | 39 | If you do so, please include this problem report. You can 40 | delete your own text from the attached returned message. 41 | 42 | The mail system 43 | 44 | : permission denied. Command output: 45 | 91022: [06/18/2014 13:56:56] innocent message from 100.100.101.101 maildrop: 46 | maildir over quota. 47 | 48 | --32632AC835.1403092616/backend.domain.com 49 | Content-Description: Delivery report 50 | Content-Type: message/delivery-status 51 | 52 | Reporting-MTA: dns; backend.domain.com 53 | X-Postfix-Queue-ID: 32632AC835 54 | X-Postfix-Sender: rfc822; support@example.com 55 | Arrival-Date: Wed, 18 Jun 2014 13:56:56 +0200 (CEST) 56 | 57 | Final-Recipient: rfc822; user@mailcluster.local 58 | Original-Recipient: rfc822;user@domain.com 59 | Action: failed 60 | Status: 5.7.0 61 | Diagnostic-Code: x-unix; 91022: [06/18/2014 13:56:56] innocent message from 62 | 100.100.101.101 maildrop: maildir over quota. 63 | 64 | --32632AC835.1403092616/backend.domain.com 65 | Content-Description: Undelivered Message 66 | Content-Type: message/rfc822 67 | 68 | Received: from smtp.domain.com (unknown [192.168.4.32]) 69 | by backend.domain.com (Postfix) with ESMTP id 32632AC835 70 | for ; Wed, 18 Jun 2014 13:56:56 +0200 (CEST) 71 | Received: from example.com (example.com [100.100.101.101]) 72 | by smtp.domain.com (Postfix) with SMTP id 1200D153440 73 | for ; Wed, 18 Jun 2014 13:57:21 +0200 (CEST) 74 | Received: (qmail 14341 invoked from network); 18 Jun 2014 11:59:53 -0000 75 | Received: from spweb55.lndn.local (10.196.111.15) 76 | by spmail2 with SMTP; 18 Jun 2014 11:59:53 -0000 77 | Received: from mail pickup service by SPWEB55.lndn.local with Microsoft SMTPSVC; 78 | Wed, 18 Jun 2014 04:59:47 -0700 79 | From: "Support" 80 | To: "user@domain.com" 81 | Date: Wed, 18 Jun 2014 04:59:47 -0700 82 | Subject: Original Subject 83 | MIME-Version: 1.0 84 | Content-Type: multipart/alternative; 85 | boundary="_=aspNetEmail=_b39787cf5db6423281a96d2be75adc79" 86 | X-Mailer: aspNetEmail ver 2.5.0.0 87 | X-RCPT-TO: 88 | Message-ID: 89 | X-OriginalArrivalTime: 18 Jun 2014 11:59:47.0323 (UTC) FILETIME=[CCFF44B0:01CF8AEC] 90 | 91 | --_=aspNetEmail=_b39787cf5db6423281a96d2be75adc79 92 | Content-Type: text/plain; 93 | charset="utf-8" 94 | Content-Transfer-Encoding: quoted-printable 95 | 96 | Original Message 97 | 98 | --_=aspNetEmail=_b39787cf5db6423281a96d2be75adc79 99 | Content-Type: text/html; 100 | charset="utf-8" 101 | Content-Transfer-Encoding: quoted-printable 102 | 103 |

Original Message

104 | 105 | --_=aspNetEmail=_b39787cf5db6423281a96d2be75adc79-- 106 | 107 | --32632AC835.1403092616/backend.domain.com-- 108 | -------------------------------------------------------------------------------- /eml/7.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/7.eml -------------------------------------------------------------------------------- /eml/8.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/8.eml -------------------------------------------------------------------------------- /eml/9.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/eml/9.eml -------------------------------------------------------------------------------- /eml/arf1.txt: -------------------------------------------------------------------------------- 1 | From: 2 | Date: Thu, 8 Mar 2005 17:40:36 EDT 3 | Subject: FW: Earn money 4 | To: 5 | MIME-Version: 1.0 6 | Content-Type: multipart/report; report-type=feedback-report; boundary="part1_13d.2e68ed54_boundary" 7 | 8 | --part1_13d.2e68ed54_boundary 9 | Content-Type: text/plain; charset="US-ASCII" 10 | Content-Transfer-Encoding: 7bit 11 | 12 | This is an email abuse report for an email message received from IP 10.67.41.167 on Thu, 8 Mar 2005 14:00:00 EDT. 13 | For more information about this format please see http://www.mipassoc.org/arf/. 14 | 15 | --part1_13d.2e68ed54_boundary 16 | Content-Type: message/feedback-report 17 | 18 | Feedback-Type: abuse 19 | User-Agent: SomeGenerator/1.0 20 | Version: 0.1 21 | 22 | --part1_13d.2e68ed54_boundary 23 | Content-Type: message/rfc822 24 | Content-Disposition: inline 25 | 26 | From: 27 | Received: from mailserver.example.net (mailserver.example.net [10.67.41.167]) 28 | by example.com with ESMTP id M63d4137594e46; Thu, 08 Mar 2005 14:00:00 -0400 29 | To: 30 | Subject: Earn money 31 | MIME-Version: 1.0 32 | Content-type: text/plain 33 | Message-ID: 8787KJKJ3K4J3K4J3K4J3.mail@example.net 34 | Date: Thu, 02 Sep 2004 12:31:03 -0500 35 | 36 | Spam Spam Spam 37 | Spam Spam Spam 38 | Spam Spam Spam 39 | Spam Spam Spam 40 | --part1_13d.2e68ed54_boundary-- 41 | -------------------------------------------------------------------------------- /eml/arf2.txt: -------------------------------------------------------------------------------- 1 | From: 2 | Date: Thu, 8 Mar 2005 17:40:36 EDT 3 | Subject: FW: Earn money 4 | To: 5 | MIME-Version: 1.0 6 | Content-Type: multipart/report; report-type=feedback-report; 7 | boundary="part1_13d.2e68ed54_boundary" 8 | 9 | --part1_13d.2e68ed54_boundary 10 | Content-Type: text/plain; charset="US-ASCII" 11 | Content-Transfer-Encoding: 7bit 12 | 13 | This is an opt-out report for an email message received from IP 14 | 192.0.2.1 on Thu, 8 Mar 2005 14:00:00 EDT. For more information 15 | about this format please see http://www.mipassoc.org/arf/. 16 | 17 | --part1_13d.2e68ed54_boundary 18 | Content-Type: message/feedback-report 19 | 20 | Feedback-Type: opt-out 21 | User-Agent: SomeGenerator/1.0 22 | Version: 0.1 23 | Removal-Recipient: user@example.com 24 | 25 | --part1_13d.2e68ed54_boundary 26 | Content-Type: text/rfc822-header 27 | 28 | From: 29 | Received: from mailserver.example.net (mailserver.example.net [192.0.2.1]) 30 | by example.com with ESMTP id M63d4137594e46; Thu, 08 Mar 2005 14:00:00 -0400 31 | To: 32 | Subject: Earn money 33 | MIME-Version: 1.0 34 | Content-type: text/plain 35 | Message-ID: 8787KJKJ3K4J3K4J3K4J3.mail@example.net 36 | Date: Thu, 02 Sep 2004 12:31:03 -0500 37 | --part1_13d.2e68ed54_boundary-- 38 | 39 | -------------------------------------------------------------------------------- /eml/arf3.txt: -------------------------------------------------------------------------------- 1 | From: 2 | Date: Thu, 8 Mar 2005 17:40:36 EDT 3 | Subject: FW: Earn money 4 | To: 5 | MIME-Version: 1.0 6 | Content-Type: multipart/report; report-type=feedback-report; 7 | boundary="part1_13d.2e68ed54_boundary" 8 | 9 | --part1_13d.2e68ed54_boundary 10 | Content-Type: text/plain; charset="US-ASCII" 11 | Content-Transfer-Encoding: 7bit 12 | 13 | This is an email abuse report for an email message received from IP 14 | 192.0.2.1 on Thu, 8 Mar 2005 14:00:00 EDT. For more information 15 | about this format please see http://www.mipassoc.org/arf/. 16 | 17 | --part1_13d.2e68ed54_boundary 18 | Content-Type: message/feedback-report 19 | 20 | Feedback-Type: abuse 21 | User-Agent: SomeGenerator/1.0 22 | Version: 0.1 23 | Original-Mail-From: 24 | Original-Rcpt-To: 25 | Received-Date: Thu, 8 Mar 2005 14:00:00 EDT 26 | Source-IP: 192.0.2.1 27 | Authentication-Results: mail.example.com 28 | smtp.mail=somespammer@example.com; 29 | spf=fail 30 | Reported-Domain: example.net 31 | Reported-Uri: http://example.net/earn_money.html 32 | Reported-Uri: mailto:user@example.com 33 | Removal-Recipient: user@example.com 34 | 35 | --part1_13d.2e68ed54_boundary 36 | Content-Type: message/rfc822 37 | Content-Disposition: inline 38 | 39 | From: 40 | Received: from mailserver.example.net (mailserver.example.net 41 | [192.0.2.1]) by example.com with ESMTP id M63d4137594e46; 42 | Thu, 08 Mar 2005 14:00:00 -0400 43 | To: 44 | Subject: Earn money 45 | MIME-Version: 1.0 46 | Content-type: text/plain 47 | Message-ID: 8787KJKJ3K4J3K4J3K4J3.mail@example.net 48 | Date: Thu, 02 Sep 2004 12:31:03 -0500 49 | 50 | Spam Spam Spam 51 | Spam Spam Spam 52 | Spam Spam Spam 53 | Spam Spam Spam 54 | --part1_13d.2e68ed54_boundary-- 55 | 56 | -------------------------------------------------------------------------------- /eml/arf5.txt: -------------------------------------------------------------------------------- 1 | Return-Path: scomp@aol.net 2 | Received: from internal.ganeshaspeaks.com (LHLO internal.ganeshaspeaks.com) 3 | (59.162.116.97) by internal.ganeshaspeaks.com with LMTP; Sat, 20 Feb 2010 4 | 10:43:58 +0530 (IST) 5 | Received: from localhost (localhost.localdomain [127.0.0.1]) 6 | by internal.ganeshaspeaks.com (Postfix) with ESMTP id A676412297E7 7 | for ; Sat, 20 Feb 2010 10:43:58 +0530 (IST) 8 | X-Virus-Scanned: amavisd-new at internal.ganeshaspeaks.com 9 | X-Spam-Flag: NO 10 | X-Spam-Score: 2.742 11 | X-Spam-Level: ** 12 | X-Spam-Status: No, score=2.742 tagged_above=-10 required=6.6 13 | tests=[AWL=-0.548, BAYES_50=0.001, FH_DATE_PAST_20XX=3.188, 14 | HTML_MESSAGE=0.001, RDNS_NONE=0.1] 15 | Received: from internal.ganeshaspeaks.com ([127.0.0.1]) 16 | by localhost (internal.ganeshaspeaks.com [127.0.0.1]) (amavisd-new, port 10024) 17 | with ESMTP id nNWi-utOemve for ; 18 | Sat, 20 Feb 2010 10:43:54 +0530 (IST) 19 | Received: from internal.ganeshaspeaks.com (localhost.localdomain [127.0.0.1]) 20 | by internal.ganeshaspeaks.com (Postfix) with ESMTP id 86A9C122983B 21 | for ; Sat, 20 Feb 2010 10:43:54 +0530 (IST) 22 | Delivered-To: catchall@ganeshaspeaks.com 23 | Received: from mail.ganeshaspeaks.com [72.55.174.173] 24 | by internal.ganeshaspeaks.com with POP3 (fetchmail-6.3.6) 25 | for (multi-drop); Sat, 20 Feb 2010 10:43:54 +0530 (IST) 26 | Received: (qmail 8642 invoked by uid 502); 20 Feb 2010 05:06:35 -0000 27 | Delivered-To: abuse@ganeshaspeaks.com 28 | Received: (qmail 8636 invoked by uid 502); 20 Feb 2010 05:06:35 -0000 29 | Received: by simscan 1.4.0 ppid: 8632, pid: 8633, t: 0.0661s 30 | scanners: attach: 1.4.0 31 | Received: from unknown (HELO omr-d24.mx.aol.com) (205.188.249.68) 32 | by mail.ganeshaspeaks.com with SMTP; 20 Feb 2010 05:06:35 -0000 33 | Received-SPF: pass (mail.ganeshaspeaks.com: SPF record at aol.net designates 205.188.249.68 as permitted sender) 34 | Received: from scmp-m39.mail.aol.com (scmp-m39.mail.aol.com [172.21.139.207]) by omr-d24.mx.aol.com (v117.7) with ESMTP id MAILOMRD244-7d7c4b7f6dcd170; Sat, 20 Feb 2010 00:06:21 -0500 35 | Received: from scomp@aol.net by scmp-m39.mail.aol.com; Sat, 20 Feb 2010 00:06:17 EST 36 | To: abuse@ganeshaspeaks.com 37 | From: scomp@aol.net 38 | Date: Sat, 20 Feb 2010 00:06:17 EST 39 | Subject: Email Feedback Report for IP 72.55.174.206 40 | MIME-Version: 1.0 41 | Content-Type: multipart/report; report-type=feedback-report; boundary="boundary-1138-29572-2659438-32058" 42 | X-AOL-INRLY: promomail.ganeshaspeaks.com [72.55.174.206] scmp-m39 43 | X-Loop: scomp 44 | X-AOL-IP: 172.21.139.207 45 | Message-ID: <201002200006.7d7c4b7f6dcd170@omr-d24.mx.aol.com> 46 | 47 | --boundary-1138-29572-2659438-32058 48 | Content-Type: text/plain; charset="US-ASCII" 49 | Content-Transfer-Encoding: 7bit 50 | 51 | This is an email abuse report for an email message with the message-id of c257bb9c3f3743e436553b80d052b918@localhost.localdomain received from IP address 72.55.174.206 on Thu, 18 Feb 2010 19:40:47 -0500 (EST) 52 | 53 | For information, please review the top portion of the following page: 54 | http://postmaster.aol.com/tools/fbl.html 55 | 56 | For information about AOL E-mail guidelines, please see 57 | http://postmaster.aol.com/guidelines/ 58 | 59 | If you would like to cancel or change the configuration for your FBL please use the tool located at: 60 | http://postmaster.aol.com/waters/fbl_change_form.html 61 | 62 | 63 | --boundary-1138-29572-2659438-32058 64 | Content-Disposition: inline 65 | Content-Type: message/feedback-report 66 | 67 | Feedback-Type: abuse 68 | User-Agent: AOL SComp 69 | Version: 0.1 70 | Received-Date: Thu, 18 Feb 2010 19:40:47 -0500 (EST) 71 | Source-IP: 72.55.174.206 72 | Reported-Domain: promomail.ganeshaspeaks.com 73 | Redacted-Address: redacted 74 | Redacted-Address: redacted@ 75 | 76 | 77 | --boundary-1138-29572-2659438-32058 78 | Content-Type: message/rfc822 79 | Content-Disposition: inline 80 | 81 | Return-Path: 82 | Received: from mtain-md05.r1000.mx.aol.com (mtain-md05.r1000.mx.aol.com [172.29.96.89]) by air-db10.mail.aol.com (v127_r1.1) with ESMTP id MAILINDB102-86244b7dde10f7; Thu, 18 Feb 2010 19:40:48 -0500 83 | Received: from promomail.ganeshaspeaks.com (promomail.ganeshaspeaks.com [72.55.174.206]) 84 | by mtain-md05.r1000.mx.aol.com (Internet Inbound) with ESMTP id CD00438000096 85 | for ; Thu, 18 Feb 2010 19:40:47 -0500 (EST) 86 | Received: from massmail.ganeshaspeaks.com (unknown [10.1.209.5]) 87 | by promomail.ganeshaspeaks.com (Postfix) with ESMTP id A0BC9DE024A 88 | for ; Thu, 18 Feb 2010 19:40:47 -0500 (EST) 89 | X-DKIM: Sendmail DKIM Filter v2.8.3 promomail.ganeshaspeaks.com A0BC9DE024A 90 | DKIM-Signature: v=1; a=rsa-sha1; c=simple/simple; 91 | d=promomail.ganeshaspeaks.com; s=selector1; t=1266540047; 92 | bh=7DmK5MctEuZMdPVEkGzEkRPTKtY=; 93 | h=Date:To:From:Subject:Message-ID:MIME-Version:Content-Type; 94 | b=S+N0hVUMu3OTwiKXa3QDFYJ4Z1wcBIdLV76o5jLxV0/Aeeuwpwds8a0tA2sNQ8lDf 95 | TI1vi/kuUbipZ2gyTGpn0pA0FBztSSsJlQ3ATAHtWeij3MLChRJQm4+BCbOmHM8Qt+ 96 | Y3//EippMnT5625/G8BQCwmVMxM2x/tHkfz0EnFE= 97 | X-DomainKeys: Sendmail DomainKeys Filter v1.0.2 promomail.ganeshaspeaks.com A0BC9DE024A 98 | DomainKey-Signature: a=rsa-sha1; s=selector1; d=promomail.ganeshaspeaks.com; c=simple; q=dns; 99 | b=gbD94Wid2/PippufVTIFnyX6c2ti/3Srjuh+qlFtx5W9x5p6P+wLGAs/7zJ+A9Gm5 100 | IULNg9pjnXJaSo9TmjZ2daE9z4yZifmrlJLj6SRgH4+e6IoIah5O/oVVZvpYfSioG9P 101 | tRI0/P/gar1lQy1mbKy2SkU6uIA/3UztTe3M4YQ= 102 | Recieved: 103 | Date: Thu, 18 Feb 2010 19:40:47 -0500 104 | To: redacted@aol.com 105 | From: contact@promomail.ganeshaspeaks.com 106 | Subject: Get an insight into 2010 at affordable price 107 | Message-ID: 108 | X-Priority: 3 109 | X-Mailer: PHPMailer [version 1.73] 110 | X-Mailer: phplist v2.10.10 111 | X-MessageID: 48 112 | X-ListMember: redacted 113 | Precedence: bulk 114 | Errors-To: bounces3@promomail.ganeshaspeaks.com 115 | MIME-Version: 1.0 116 | Content-Type: multipart/alternative; 117 | boundary="b1_c257bb9c3f3743e436553b80d052b918" 118 | x-aol-global-disposition: G 119 | X-AOL-SCOLL-AUTHENTICATION: mail_rly_antispam_dkim-m215.2 ; domain : promomail.ganeshaspeaks.com DKIM : fail 120 | x-aol-sid: 3039ac1d60594b7dde0f386f 121 | X-AOL-IP: 72.55.174.206 122 | 123 | 124 | 125 | --b1_c257bb9c3f3743e436553b80d052b918 126 | Content-Type: text/plain; charset = "UTF-8" 127 | Content-Transfer-Encoding: quoted-printable 128 | 129 | 130 | 131 | 132 | 133 | It will be great if you can stay on, but if you want to UNSUBSCRIBE, 134 | click here 136 | 137 | You are receiving this mailer since you are a member at 138 | GaneshaSpeaks.com. 139 | 140 | If you cannot view this mailer properly, click here =20 141 | 142 | 143 | 146 | 147 | 150 | 151 | 154 | 155 | It will be great if you can stay on, but if you want to UNSUBSCRIBE, 156 | click here 158 | 159 | 160 | 161 | 162 | 163 | Your personal information is safe and secure on GaneshaSpeaks.com 164 | 165 | Please add contact@promomail.ganeshaspeaks.com 166 | 167 | to your addressbook for ensuring 168 | 169 | future mail delivery to your inbox 170 | 171 | SiddhiVinayak Astrology Services Pvt. Ltd., Behind Asia House, 172 | Swastik Cross Roads, 173 | 174 | Navrangpura, Ahmedabad - 380009, Ph. +91-796-522-1416. 175 | 176 | 177 | 178 | =20 179 | 180 | 181 | -- 182 | Powered by PHPlist, www.phplist.com -- 183 | 184 | --b1_c257bb9c3f3743e436553b80d052b918 185 | Content-Type: text/html; charset = "UTF-8" 186 | Content-Transfer-Encoding: quoted-printable 187 | 188 | 189 | 191 | 192 | 220 |

261 | 263 | 264 | 265 | 270 | 271 | 275 | 276 | 277 | 278 | 279 | 284 | 285 | 286 | 291 | 292 | 293 | 298 | 299 | 300 | 305 | 306 | 307 | 309 | 310 | 311 | 313 | 314 | 315 | 318 | 319 | 320 | 332 | 333 | 334 | 341 | 342 | 343 | 348 | 349 | 350 |
3D"gslogo"= 269 |
It will be great= 273 | if you can stay on, but if you want to UNSUBSCRIBE, click here
You are receiv= 281 | ing this mailer since you are a member at GaneshaSpeaks.com.
282 | If you cannot view this mailer properly, click here
3D"img"
3D"img"
It will be great if you can stay on= 317 | , but if you want to UNSUBSCRIBE, click here
321 | 331 |
Your personal information is safe and secure= 335 | on GaneshaSpeaks.com
336 | Please add co= 338 | ntact@promomail.ganeshaspeaks.com to your addressbook for ens= 339 | uring
340 | future mail delivery to your inbox
344 |
SiddhiVinayak Astrology Services Pvt. Ltd.= 345 | , Behind Asia House, Swastik Cross Roads,
346 | Navrangpura, Ahmedabad - 380009, Ph. +91-796-522-1416.
347 |



353 | 364 | powered by phplist v 2.10.10,= 366 | © tincan ltd 368 | 369 | --b1_c257bb9c3f3743e436553b80d052b918-- 370 | 371 | 372 | --boundary-1138-29572-2659438-32058-- 373 | 374 | 375 | -------------------------------------------------------------------------------- /eml/arf6.txt: -------------------------------------------------------------------------------- 1 | Return-Path: staff@hotmail.com 2 | Received: from internal.ganeshaspeaks.com (LHLO internal.ganeshaspeaks.com) 3 | (59.162.116.97) by internal.ganeshaspeaks.com with LMTP; Sat, 20 Feb 2010 4 | 11:10:54 +0530 (IST) 5 | Received: from localhost (localhost.localdomain [127.0.0.1]) 6 | by internal.ganeshaspeaks.com (Postfix) with ESMTP id 9FB29122AEBC 7 | for ; Sat, 20 Feb 2010 11:10:54 +0530 (IST) 8 | X-Virus-Scanned: amavisd-new at internal.ganeshaspeaks.com 9 | X-Spam-Flag: NO 10 | X-Spam-Score: 3.567 11 | X-Spam-Level: *** 12 | X-Spam-Status: No, score=3.567 tagged_above=-10 required=6.6 13 | tests=[AWL=-1.320, BAYES_50=0.001, FH_DATE_PAST_20XX=3.188, 14 | HTML_MESSAGE=0.001, RDNS_NONE=0.1, X_MESSAGE_INFO=1.597] 15 | Received: from internal.ganeshaspeaks.com ([127.0.0.1]) 16 | by localhost (internal.ganeshaspeaks.com [127.0.0.1]) (amavisd-new, port 10024) 17 | with ESMTP id FKDOnVPEA1w3 for ; 18 | Sat, 20 Feb 2010 11:10:48 +0530 (IST) 19 | Received: from internal.ganeshaspeaks.com (localhost.localdomain [127.0.0.1]) 20 | by internal.ganeshaspeaks.com (Postfix) with ESMTP id D3366122992B 21 | for ; Sat, 20 Feb 2010 11:10:47 +0530 (IST) 22 | Delivered-To: catchall@ganeshaspeaks.com 23 | Received: from mail.ganeshaspeaks.com [72.55.174.173] 24 | by internal.ganeshaspeaks.com with POP3 (fetchmail-6.3.6) 25 | for (multi-drop); Sat, 20 Feb 2010 11:10:47 +0530 (IST) 26 | Received: (qmail 18486 invoked by uid 502); 20 Feb 2010 05:25:13 -0000 27 | Delivered-To: abuse@ganeshaspeaks.com 28 | Received: (qmail 18473 invoked by uid 502); 20 Feb 2010 05:25:13 -0000 29 | Received: by simscan 1.4.0 ppid: 18463, pid: 18465, t: 0.1741s 30 | scanners: attach: 1.4.0 31 | Received: from unknown (HELO bay0-omc2-s1.bay0.hotmail.com) (65.54.190.76) 32 | by mail.ganeshaspeaks.com with SMTP; 20 Feb 2010 05:25:12 -0000 33 | Received-SPF: pass (mail.ganeshaspeaks.com: SPF record at spf-a.hotmail.com designates 65.54.190.76 as permitted sender) 34 | Received: from BAY0-JMR-DB02 ([65.54.190.125]) by bay0-omc2-s1.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); 35 | Fri, 19 Feb 2010 21:25:12 -0800 36 | X-HmXmrOriginalRecipient: masterblastervarun@hotmail.com 37 | X-Reporter-IP: 222.129.240.155 38 | X-Message-Delivery: Vj0xLjE7dXM9MDtsPTA7YT0wO0Q9MjtTQ0w9NA== 39 | X-Message-Status: n:0 40 | X-SID-PRA: contact@promomail.ganeshaspeaks.com 41 | X-SID-Result: Pass 42 | X-AUTH-Result: PASS 43 | X-Message-Info: 6sSXyD95QpXzBd+BwlL9N8+0QFs0qR/5VJbs1QJJ7xgVpOwv+1x64rOZtx9fnQbvuyJvNWyeL0uiHYrHm5RnPni1gyWqUWE5 44 | Received: from promomail.ganeshaspeaks.com ([72.55.174.206]) by bay0-mc3-f8.Bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); 45 | Fri, 19 Feb 2010 19:58:37 -0800 46 | Received: from massmail.ganeshaspeaks.com (unknown [10.1.209.5]) 47 | by promomail.ganeshaspeaks.com (Postfix) with ESMTP id 6E09BDE01E2 48 | for ; Fri, 19 Feb 2010 22:58:37 -0500 (EST) 49 | X-DKIM: Sendmail DKIM Filter v2.8.3 promomail.ganeshaspeaks.com 6E09BDE01E2 50 | DKIM-Signature: v=1; a=rsa-sha1; c=simple/simple; 51 | d=promomail.ganeshaspeaks.com; s=selector1; t=1266638317; 52 | bh=PVuoIFoBxfyNDmATIAa2b4/F5+o=; 53 | h=Date:To:From:Subject:Message-ID:MIME-Version:Content-Type; 54 | b=TMHoQj5/KrEShDKamuwhgvvecFd5sjgnQ6ZGURT+zeafm0IrIdN696lcX7vUrAvSf 55 | We9wpinlub9c3S5UK3+4PBsqWlSn+YdF1iPh2LCGlOfRrMPKbBAVSsEhg/aVAtOR1H 56 | Ud0AP8RWF7KBvidpjpzf49b25sVb55LC2uPCR0yg= 57 | X-DomainKeys: Sendmail DomainKeys Filter v1.0.2 promomail.ganeshaspeaks.com 6E09BDE01E2 58 | DomainKey-Signature: a=rsa-sha1; s=selector1; d=promomail.ganeshaspeaks.com; c=simple; q=dns; 59 | b=qnAAxaUmGN0nu36jfZBz0RLKCoDfzJmAx1LZjvpgIXKmiLZ6Q/mmBt4z0VUJimX/w 60 | ylNdc6ynwEPj3Omk94uA6vgYQzL0/+FzgP+G1IPShjn+NU/KafHYuqx9gbIoKd3TPbu 61 | KqK4mSczQ9gTe1ED6jS/lvgaGh59bx2jVu0sNAM= 62 | Recieved: 63 | Date: Fri, 19 Feb 2010 22:58:37 -0500 64 | To: masterblastervarun@hotmail.com 65 | From: contact@promomail.ganeshaspeaks.com 66 | Subject: Now, your Finance report at an easier rate 67 | Message-ID: <7d0005d5ddea9b8c2dd9ec1a35b2d5d4@localhost.localdomain> 68 | X-Priority: 3 69 | X-Mailer: PHPMailer [version 1.73] 70 | X-Mailer: phplist v2.10.10 71 | X-MessageID: 49 72 | X-ListMember: masterblastervarun@hotmail.com 73 | Precedence: bulk 74 | Errors-To: bounces3@promomail.ganeshaspeaks.com 75 | MIME-Version: 1.0 76 | Content-Type: multipart/alternative; 77 | boundary="b1_7d0005d5ddea9b8c2dd9ec1a35b2d5d4" 78 | X-OriginalArrivalTime: 20 Feb 2010 03:58:37.0940 (UTC) FILETIME=[FB3DC340:01CAB1E0] 79 | 80 | 81 | --b1_7d0005d5ddea9b8c2dd9ec1a35b2d5d4 82 | Content-Type: text/plain; charset = "UTF-8" 83 | Content-Transfer-Encoding: 8bit 84 | 85 | 86 | 87 | 88 | 89 | It will be great if you can stay on, but if you want to UNSUBSCRIBE, 90 | click here 92 | 93 | You are receiving this mailer since you are a member at 94 | GaneshaSpeaks.com. 95 | 96 | If you cannot view this mailer properly, click here 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | It will be great if you can stay on, but if you want to UNSUBSCRIBE, 106 | click here 108 | 109 | 110 | 111 | 112 | 113 | Your personal information is safe and secure on GaneshaSpeaks.com 114 | 115 | Please add contact@promomail.ganeshaspeaks.com 116 | 117 | to your addressbook for ensuring 118 | 119 | future mail delivery to your inbox 120 | 121 | SiddhiVinayak Astrology Services Pvt. Ltd., Behind Asia House, 122 | Swastik Cross Roads, 123 | 124 | Navrangpura, Ahmedabad - 380009, Ph. +91-796-522-1416. 125 | 126 | 127 | 128 | 129 | 130 | 131 | -- 132 | Powered by PHPlist, www.phplist.com -- 133 | 134 | 135 | 136 | --b1_7d0005d5ddea9b8c2dd9ec1a35b2d5d4 137 | Content-Type: text/html; charset = "UTF-8" 138 | Content-Transfer-Encoding: 8bit 139 | 140 | 141 | 142 | 143 | 160 |

193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 229 | 230 | 231 | 234 | 235 | 236 | 240 | 241 | 242 |
gslogo
It will be great if you can stay on, but if you want to UNSUBSCRIBE, click here
You are receiving this mailer since you are a member at GaneshaSpeaks.com.
205 | If you cannot view this mailer properly, click here
img
img
img
img
img
It will be great if you can stay on, but if you want to UNSUBSCRIBE, click here
227 | 228 |
Your personal information is safe and secure on GaneshaSpeaks.com
232 | Please add contact@promomail.ganeshaspeaks.com to your addressbook for ensuring
233 | future mail delivery to your inbox
237 |
SiddhiVinayak Astrology Services Pvt. Ltd., Behind Asia House, Swastik Cross Roads,
238 | Navrangpura, Ahmedabad - 380009, Ph. +91-796-522-1416.
239 |
243 | 244 |

245 | 246 | twitter




247 | 254 | powered by phplist v 2.10.10, © tincan ltd 255 | 256 | 257 | 258 | --b1_7d0005d5ddea9b8c2dd9ec1a35b2d5d4-- 259 | 260 | 261 | 262 | -------------------------------------------------------------------------------- /eml/exchange1.eml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Delivered-To: account@gmail.com 4 | Received: by 10.86.62.16 with SMTP id k16cs115611fga; 5 | Sun, 5 Apr 2009 11:41:40 -0700 (PDT) 6 | Received: by 10.210.53.1 with SMTP id b1mr2656107eba.85.1238956900481; 7 | Sun, 05 Apr 2009 11:41:40 -0700 (PDT) 8 | Return-Path: <> 9 | Received: from norway3.telecomputing.no (norway3.telecomputing.no [213.203.17.7]) 10 | by mx.google.com with ESMTP id 25si4240805ewy.47.2009.04.05.11.41.40; 11 | Sun, 05 Apr 2009 11:41:40 -0700 (PDT) 12 | Received-SPF: pass (google.com: domain of norway3.telecomputing.no designates 213.203.17.7 as permitted sender) client-ip=213.203.17.7; 13 | Authentication-Results: mx.google.com; spf=pass (google.com: domain of norway3.telecomputing.no designates 213.203.17.7 as permitted sender) smtp.mail= 14 | Received: from EUROOSLCE8VS1.Euro.Tecosroot.com ([10.2.6.233]) by norway3.telecomputing.no with InterScan Message Security Suite; Sun, 05 Apr 2009 20:41:39 +0200 15 | From: postmaster@Tecosroot.com 16 | To: account@gmail.com 17 | Date: Sun, 5 Apr 2009 20:41:39 +0200 18 | MIME-Version: 1.0 19 | Content-Type: multipart/report; report-type=delivery-status; 20 | boundary="9B095B5ADSN=_01C9B328E395D54200012C39EUROOSLCE8VS1.Eu" 21 | X-DSNContext: 335a7efd - 4523 - 00000001 - 80040546 22 | Message-ID: 23 | Subject: Delivery Status Notification (Failure) 24 | 25 | This is a MIME-formatted message. 26 | Portions of this message may be unreadable without a MIME-capable mail program. 27 | 28 | --9B095B5ADSN=_01C9B328E395D54200012C39EUROOSLCE8VS1.Eu 29 | Content-Type: text/plain; charset=unicode-1-1-utf-7 30 | 31 | This is an automatically generated Delivery Status Notification. 32 | 33 | Delivery to the following recipients failed. 34 | 35 | phk@nordiskeiendom.no 36 | 37 | 38 | 39 | 40 | --9B095B5ADSN=_01C9B328E395D54200012C39EUROOSLCE8VS1.Eu 41 | Content-Type: message/delivery-status 42 | 43 | Reporting-MTA: dns;EUROOSLCE8VS1.Euro.Tecosroot.com 44 | Received-From-MTA: dns;smtp05.telecomputing.no 45 | Arrival-Date: Sun, 5 Apr 2009 20:41:39 +0200 46 | 47 | Final-Recipient: rfc822;phk@nordiskeiendom.no 48 | Action: failed 49 | Status: 5.1.1 50 | 51 | --9B095B5ADSN=_01C9B328E395D54200012C39EUROOSLCE8VS1.Eu 52 | Content-Type: message/rfc822 53 | 54 | Received: from smtp05.telecomputing.no ([213.203.17.25]) by EUROOSLCE8VS1.Euro.Tecosroot.com with Microsoft SMTPSVC(6.0.3790.3959); 55 | Sun, 5 Apr 2009 20:41:39 +0200 56 | Received: by fg-out-1718.google.com with SMTP id l27so142929fgb.4 57 | for ; Sun, 05 Apr 2009 11:41:38 -0700 (PDT) 58 | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; 59 | d=gmail.com; s=gamma; 60 | h=domainkey-signature:mime-version:received:date:message-id:subject 61 | :from:to:content-type; 62 | bh=fwvEVZNvLI5PwrH5605R317id8iekL4BGFg/RescybM=; 63 | b=uzyQjb0YSTa+m/Q1/3mNUNUDyL7ahQmfVCokA0Sg7MDdKSvcU8zXsElVfkUswD21Rr 64 | cHfbvWYch9nJSfRHrUcPn8AtRKaMOXIkt7G5fHi/ktD3fauHMsZDLqvAE9RIxUXfgpup 65 | d32FN0pQkvcy8sRoOmEeW3bOSZYFPjbEA1l+8= 66 | DomainKey-Signature: a=rsa-sha1; c=nofws; 67 | d=gmail.com; s=gamma; 68 | h=mime-version:date:message-id:subject:from:to:content-type; 69 | b=NQilgggKIklfiHUAPfl6Hgij5a95XqPxE7bJP9nNv2jI/IOx2Gv2Rlf45cy4tqDL9U 70 | rxXrzzdvqV+UlglWCt9bgrJkp9uBDqrV64i2vCzFVRcCtivfi2wdkh4Z7f/AigWP551x 71 | IUIhWJ1bHwOZGtz+g67RXOzm7FjJX0mdQBq9o= 72 | MIME-Version: 1.0 73 | Received: by 10.86.65.9 with SMTP id n9mr2492157fga.31.1238956898166; Sun, 05 74 | Apr 2009 11:41:38 -0700 (PDT) 75 | Date: Sun, 5 Apr 2009 20:41:38 +0200 76 | Message-ID: <63267c0f0904051141o6de11a88t7bf60c46de6964fd@mail.gmail.com> 77 | Subject: Test 78 | From: "Gmail Account" 79 | To: phk@nordiskeiendom.no 80 | Content-Type: multipart/alternative; boundary=000e0cd25152ceaaa90466d32133 81 | Return-Path: account@gmail.com 82 | X-OriginalArrivalTime: 05 Apr 2009 18:41:39.0470 (UTC) FILETIME=[2817EAE0:01C9B61E] 83 | 84 | --000e0cd25152ceaaa90466d32133 85 | Content-Type: text/plain; charset=ISO-8859-1 86 | Content-Transfer-Encoding: 7bit 87 | 88 | This is a test 89 | Regards, 90 | Gmail Account 91 | 92 | --000e0cd25152ceaaa90466d32133 93 | Content-Type: text/html; charset=ISO-8859-1 94 | Content-Transfer-Encoding: 7bit 95 | 96 | This is a test 97 |

Regards,
Gmail Account
98 | 99 | --000e0cd25152ceaaa90466d32133-- 100 | 101 | 102 | --9B095B5ADSN=_01C9B328E395D54200012C39EUROOSLCE8VS1.Eu-- -------------------------------------------------------------------------------- /eml/exchange2.eml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Delivered-To: account@gmail.com 4 | Received: by 10.86.62.16 with SMTP id k16cs115683fga; 5 | Sun, 5 Apr 2009 11:43:30 -0700 (PDT) 6 | Received: by 10.210.76.19 with SMTP id y19mr775100eba.19.1238957010346; 7 | Sun, 05 Apr 2009 11:43:30 -0700 (PDT) 8 | Return-Path: <> 9 | Received: from smtp113.aits.fr (smtpout.aits.fr [90.80.15.200]) 10 | by mx.google.com with ESMTP id 8si4438097ewy.109.2009.04.05.11.43.30; 11 | Sun, 05 Apr 2009 11:43:30 -0700 (PDT) 12 | Received-SPF: pass (google.com: domain of smtp113.aits.fr designates 90.80.15.200 as permitted sender) client-ip=90.80.15.200; 13 | Authentication-Results: mx.google.com; spf=pass (google.com: domain of smtp113.aits.fr designates 90.80.15.200 as permitted sender) smtp.mail= 14 | Received: from localhost (unknown [127.0.0.1]) 15 | by smtp113.aits.fr (Postfix) with ESMTP id 12F5F1EF7FF 16 | for ; Sun, 5 Apr 2009 20:36:02 +0200 (CEST) 17 | X-Virus-Scanned: amavisd-new at lce.adecco.net 18 | Received: from smtp113.aits.fr ([127.0.0.1]) 19 | by localhost (lx001113.lce.adecco.net [127.0.0.1]) (amavisd-new, port 10024) 20 | with ESMTP id R1IXZBoxzxuO for ; 21 | Sun, 5 Apr 2009 20:36:01 +0200 (CEST) 22 | Received: from meintfr02052.wwit.adecco.net (meintfr02052.wwit.adecco.net [10.100.94.52]) 23 | by smtp113.aits.fr (Postfix) with ESMTP id E46461EF7F9 24 | for ; Sun, 5 Apr 2009 20:36:01 +0200 (CEST) 25 | From: postmaster@adecco.net 26 | To: account@gmail.com 27 | Date: Sun, 5 Apr 2009 20:43:17 +0200 28 | MIME-Version: 1.0 29 | Content-Type: multipart/report; report-type=delivery-status; 30 | boundary="9B095B5ADSN=_01C9B12EFB9017CA00003667meintfr02052.wwi" 31 | X-DSNContext: 335a7efd - 4523 - 00000001 - 80040546 32 | Message-ID: 33 | Subject: Delivery Status Notification (Failure) 34 | 35 | This is a MIME-formatted message. 36 | Portions of this message may be unreadable without a MIME-capable mail program. 37 | 38 | --9B095B5ADSN=_01C9B12EFB9017CA00003667meintfr02052.wwi 39 | Content-Type: text/plain; charset=unicode-1-1-utf-7 40 | 41 | This is an automatically generated Delivery Status Notification. 42 | 43 | Delivery to the following recipients failed. 44 | 45 | inger.lise.hole@adecco.no 46 | 47 | 48 | 49 | 50 | --9B095B5ADSN=_01C9B12EFB9017CA00003667meintfr02052.wwi 51 | Content-Type: message/delivery-status 52 | 53 | Reporting-MTA: dns;meintfr02052.wwit.adecco.net 54 | Received-From-MTA: dns;smtp091.aits.fr 55 | Arrival-Date: Sun, 5 Apr 2009 20:43:17 +0200 56 | 57 | Original-Recipient: rfc822;inger.lise.hole@adecco.no 58 | Final-Recipient: rfc822;inger.lise.hole@adecco.no 59 | Action: failed 60 | Status: 5.1.1 61 | 62 | --9B095B5ADSN=_01C9B12EFB9017CA00003667meintfr02052.wwi 63 | Content-Type: message/rfc822 64 | 65 | Received: from smtp091.aits.fr ([10.100.109.111]) by meintfr02052.wwit.adecco.net with Microsoft SMTPSVC(6.0.3790.3959); 66 | Sun, 5 Apr 2009 20:43:17 +0200 67 | Received: from localhost (unknown [127.0.0.1]) 68 | by smtp091.aits.fr (Postfix) with ESMTP id 7C0BF9F30B3 69 | for ; Sun, 5 Apr 2009 20:42:33 +0200 (CEST) 70 | X-Virus-Scanned: amavisd-new at lce.adecco.net 71 | Received: from smtp091.aits.fr ([127.0.0.1]) 72 | by localhost (lx001091.lce.adecco.net [127.0.0.1]) (amavisd-new, port 10024) 73 | with ESMTP id esLE2xMUjKhO for ; 74 | Sun, 5 Apr 2009 20:42:31 +0200 (CEST) 75 | Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.154]) 76 | by smtp091.aits.fr (Postfix) with ESMTP id AA6F19F30B4 77 | for ; Sun, 5 Apr 2009 20:42:03 +0200 (CEST) 78 | Received: by fg-out-1718.google.com with SMTP id e12so702940fga.17 79 | for ; Sun, 05 Apr 2009 11:42:58 -0700 (PDT) 80 | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; 81 | d=gmail.com; s=gamma; 82 | h=domainkey-signature:mime-version:received:date:message-id:subject 83 | :from:to:content-type; 84 | bh=1TNYLtKu1czWz2NnFQ2aqDbB0AcmbTgrpfGO+DF1CqU=; 85 | b=EgK9ou/H4NpJxm681hywYK1/VP0XICSs08P3LF545RDtXohnPQrS47wvCuL6cl5GxK 86 | mjRxyEti8G3C7xFpqFg1wUH8jmLilWHnhLKQ4yuULvQvRQhG6ps21Nn2s40/FTm2ZFCq 87 | 3xCzo7TGDoAvnSlEhRhFzI4JoZv91XW2G7yCE= 88 | DomainKey-Signature: a=rsa-sha1; c=nofws; 89 | d=gmail.com; s=gamma; 90 | h=mime-version:date:message-id:subject:from:to:content-type; 91 | b=UjXRgDRLENKAIkKCCv4PQXVRG22gE7VFVNwKW5sxEyElQ4AE3CdrzU6Eht2snM1+f4 92 | NPsUL/D0o47tDAWzLBjsxRNui2rbPI1XMzJZfb4OaHQ8ORKtXnI5QZ9xdGbkxQUoJQJw 93 | 5Fw32AsyoIKHIH6yBUwFXHhuK06fWnis29/e0= 94 | MIME-Version: 1.0 95 | Received: by 10.86.31.18 with SMTP id e18mr2435668fge.72.1238956978868; Sun, 96 | 05 Apr 2009 11:42:58 -0700 (PDT) 97 | Date: Sun, 5 Apr 2009 20:42:58 +0200 98 | Message-ID: <63267c0f0904051142s4a841b18qb1c702a94a3257be@mail.gmail.com> 99 | Subject: This will bounce 100 | From: "Gmail Account" 101 | To: Petter.Gulbrandsen@no.compuware.com, inger.lise.hole@adecco.no 102 | Content-Type: multipart/alternative; boundary=000e0cd247509e11b20466d326c9 103 | Return-Path: account@gmail.com 104 | X-OriginalArrivalTime: 05 Apr 2009 18:43:17.0833 (UTC) FILETIME=[62B8EB90:01C9B61E] 105 | 106 | --000e0cd247509e11b20466d326c9 107 | Content-Type: text/plain; charset=ISO-8859-1 108 | Content-Transfer-Encoding: 7bit 109 | 110 | Regards, 111 | Gmail Account 112 | 113 | --000e0cd247509e11b20466d326c9 114 | Content-Type: text/html; charset=ISO-8859-1 115 | Content-Transfer-Encoding: 7bit 116 | 117 | Regards, 118 |

Gmail Account
119 | 120 | --000e0cd247509e11b20466d326c9-- 121 | 122 | 123 | --9B095B5ADSN=_01C9B12EFB9017CA00003667meintfr02052.wwi-- -------------------------------------------------------------------------------- /eml/exchange3.eml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Delivered-To: account@gmail.com 4 | Received: by 10.86.62.16 with SMTP id k16cs115964fga; 5 | Sun, 5 Apr 2009 11:51:13 -0700 (PDT) 6 | Received: by 10.210.56.7 with SMTP id e7mr433402eba.98.1238957473780; 7 | Sun, 05 Apr 2009 11:51:13 -0700 (PDT) 8 | Return-Path: <> 9 | Received: from landfill.emea.compuware.com (mx5.emea.compuware.com [195.137.231.34]) 10 | by mx.google.com with ESMTP id 6si4075678ewy.6.2009.04.05.11.51.13; 11 | Sun, 05 Apr 2009 11:51:13 -0700 (PDT) 12 | Received-SPF: pass (google.com: domain of landfill.emea.compuware.com designates 195.137.231.34 as permitted sender) client-ip=195.137.231.34; 13 | Authentication-Results: mx.google.com; spf=pass (google.com: domain of landfill.emea.compuware.com designates 195.137.231.34 as permitted sender) smtp.mail= 14 | Received: from emea-ams-ex009.emea.cpwr.corp (unknown [172.16.17.63]) 15 | by landfill.emea.compuware.com (Postfix) with ESMTP id 55CE1310B7 16 | for ; Sun, 5 Apr 2009 18:51:13 +0000 (GMT) 17 | From: postmaster@compuware.com 18 | To: account@gmail.com 19 | Date: Sun, 5 Apr 2009 20:51:13 +0200 20 | MIME-Version: 1.0 21 | Content-Type: multipart/report; report-type=delivery-status; 22 | boundary="9B095B5ADSN=_01C987E3050D8C560001953Eemea?ams?ex009.e" 23 | X-DSNContext: 335a7efd - 4523 - 00000001 - 80040546 24 | Message-ID: 25 | Subject: Delivery Status Notification (Failure) 26 | 27 | This is a MIME-formatted message. 28 | Portions of this message may be unreadable without a MIME-capable mail program. 29 | 30 | --9B095B5ADSN=_01C987E3050D8C560001953Eemea?ams?ex009.e 31 | Content-Type: text/plain; charset=unicode-1-1-utf-7 32 | 33 | This is an automatically generated Delivery Status Notification. 34 | 35 | Delivery to the following recipients failed. 36 | 37 | Petter.Gulbrandsen@no.compuware.com 38 | 39 | 40 | 41 | 42 | --9B095B5ADSN=_01C987E3050D8C560001953Eemea?ams?ex009.e 43 | Content-Type: message/delivery-status 44 | 45 | Reporting-MTA: dns;emea-ams-ex009.emea.cpwr.corp 46 | Received-From-MTA: dns;mx4.emea.compuware.com 47 | Arrival-Date: Sun, 5 Apr 2009 20:51:12 +0200 48 | 49 | Final-Recipient: rfc822;Petter.Gulbrandsen@no.compuware.com 50 | Action: failed 51 | Status: 5.1.1 52 | 53 | --9B095B5ADSN=_01C987E3050D8C560001953Eemea?ams?ex009.e 54 | Content-Type: message/rfc822 55 | 56 | Received: from mx4.emea.compuware.com ([172.16.16.87]) by emea-ams-ex009.emea.cpwr.corp with Microsoft SMTPSVC(6.0.3790.3959); 57 | Sun, 5 Apr 2009 20:51:12 +0200 58 | Received: from mx4.emea.compuware.com (localhost.emea.cpwr.corp [127.0.0.1]) 59 | by int-paperbin.emea.cpwr.corp (Postfix) with ESMTP id 8B1119003A 60 | for ; Sun, 5 Apr 2009 18:51:09 +0000 (UTC) 61 | X-Spam-Checker-Version: SpamAssassin 3.1.7-cpwr (2006-10-05) on 62 | paperbin.emea.cpwr.corp 63 | X-Spam-Level: * 64 | X-Spam-Status: No, score=1.1 required=5.0 tests=HTML_MESSAGE, 65 | HTML_SHORT_LENGTH autolearn=disabled version=3.1.7-cpwr 66 | X-Spam-Report: 67 | * 0.6 HTML_SHORT_LENGTH BODY: HTML is extremely short 68 | * 0.5 HTML_MESSAGE BODY: HTML included in message 69 | Received-SPF: pass (mx4.emea.compuware.com: domain of gmail.com designates 72.14.220.154 as permitted sender) client-ip=72.14.220.154; envelope-from=account@gmail.com; helo=fg-out-1718.google.com; 70 | Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.154]) 71 | by mx4.emea.compuware.com (Postfix) with ESMTP id 82AC98FEF3 72 | for ; Sun, 5 Apr 2009 18:51:09 +0000 (UTC) 73 | Received: by fg-out-1718.google.com with SMTP id 19so785062fgg.15 74 | for ; Sun, 05 Apr 2009 11:51:09 -0700 (PDT) 75 | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; 76 | d=gmail.com; s=gamma; 77 | h=domainkey-signature:mime-version:received:date:message-id:subject 78 | :from:to:content-type; 79 | bh=1TNYLtKu1czWz2NnFQ2aqDbB0AcmbTgrpfGO+DF1CqU=; 80 | b=EgK9ou/H4NpJxm681hywYK1/VP0XICSs08P3LF545RDtXohnPQrS47wvCuL6cl5GxK 81 | mjRxyEti8G3C7xFpqFg1wUH8jmLilWHnhLKQ4yuULvQvRQhG6ps21Nn2s40/FTm2ZFCq 82 | 3xCzo7TGDoAvnSlEhRhFzI4JoZv91XW2G7yCE= 83 | DomainKey-Signature: a=rsa-sha1; c=nofws; 84 | d=gmail.com; s=gamma; 85 | h=mime-version:date:message-id:subject:from:to:content-type; 86 | b=UjXRgDRLENKAIkKCCv4PQXVRG22gE7VFVNwKW5sxEyElQ4AE3CdrzU6Eht2snM1+f4 87 | NPsUL/D0o47tDAWzLBjsxRNui2rbPI1XMzJZfb4OaHQ8ORKtXnI5QZ9xdGbkxQUoJQJw 88 | 5Fw32AsyoIKHIH6yBUwFXHhuK06fWnis29/e0= 89 | MIME-Version: 1.0 90 | Received: by 10.86.31.18 with SMTP id e18mr2435668fge.72.1238956978868; Sun, 91 | 05 Apr 2009 11:42:58 -0700 (PDT) 92 | Date: Sun, 5 Apr 2009 20:42:58 +0200 93 | Message-ID: <63267c0f0904051142s4a841b18qb1c702a94a3257be@mail.gmail.com> 94 | Subject: This will bounce 95 | From: "Gmail Account" 96 | To: Petter.Gulbrandsen@no.compuware.com, inger.lise.hole@adecco.no 97 | Content-Type: multipart/alternative; boundary=000e0cd247509e11b20466d326c9 98 | Return-Path: account@gmail.com 99 | X-OriginalArrivalTime: 05 Apr 2009 18:51:12.0892 (UTC) FILETIME=[7DE12BC0:01C9B61F] 100 | 101 | --000e0cd247509e11b20466d326c9 102 | Content-Type: text/plain; charset=ISO-8859-1 103 | Content-Transfer-Encoding: 7bit 104 | 105 | Regards, 106 | Gmail Account 107 | 108 | --000e0cd247509e11b20466d326c9 109 | Content-Type: text/html; charset=ISO-8859-1 110 | Content-Transfer-Encoding: 7bit 111 | 112 | Regards, 113 |

Gmail Account
114 | 115 | --000e0cd247509e11b20466d326c9-- 116 | 117 | 118 | 119 | --9B095B5ADSN=_01C987E3050D8C560001953Eemea?ams?ex009.e-- -------------------------------------------------------------------------------- /eml/fbl-aol.txt: -------------------------------------------------------------------------------- 1 | Received: (qmail 23182 invoked from network); 30 Dec 2010 18:45:23 -0000 2 | Received: from unknown (HELO ourmailserver.com) (10.1.0.252) 3 | by ourmailserver.com with SMTP; 30 Dec 2010 18:45:23 -0000 4 | Received: from omr-m11.mx.aol.com ([64.12.207.153]) 5 | by ourmailserver.com with ESMTP; 30 Dec 2010 10:45:22 -0800 6 | Received: from scmp-d41.mail.aol.com (scmp-d41.mail.aol.com [172.19.132.204]) by omr-m11.mx.aol.com (v117.7) with ESMTP id MAILOMRM117-fa9b4d1cd33b2a7; Thu, 30 Dec 2010 13:45:15 -0500 7 | Received: from scomp@aol.net by scmp-d41.mail.aol.com; Thu, 30 Dec 2010 13:45:14 EST 8 | To: fbl-abuse@outmailserver.com 9 | From: scomp@aol.net 10 | Date: Thu, 30 Dec 2010 13:45:14 EST 11 | Subject: Email Feedback Report for IP 24.64.1.1 12 | MIME-Version: 1.0 13 | Content-Type: multipart/report; report-type=feedback-report; boundary="boundary-1138-29572-2659438-18612" 14 | X-AOL-INRLY: ourdomain.com [24.64.1.1] scmp-d41 15 | X-Loop: scomp 16 | X-AOL-IP: 172.19.132.204 17 | Message-ID: <201012301345.fa9b4d1cd33b2a7@omr-m11.mx.aol.com> 18 | 19 | --boundary-1138-29572-2659438-18612 20 | Content-Type: text/plain; charset="US-ASCII" 21 | Content-Transfer-Encoding: 7bit 22 | 23 | This is an email abuse report for an email message with the message-id of WEB8-Qe6e5512333834e5792b28af4d88dc308@web8-q received from IP address 24.64.1.1 on Thu, 30 Dec 2010 09:23:16 -0500 (EST) 24 | 25 | For information, please review the top portion of the following page: 26 | http://postmaster.aol.com/tools/fbl.html 27 | 28 | For information about AOL E-mail guidelines, please see 29 | http://postmaster.aol.com/guidelines/ 30 | 31 | If you would like to cancel or change the configuration for your FBL please use the tool located at: 32 | http://postmaster.aol.com/waters/fbl_change_form.html 33 | 34 | 35 | --boundary-1138-29572-2659438-18612 36 | Content-Disposition: inline 37 | Content-Type: message/feedback-report 38 | 39 | Feedback-Type: abuse 40 | User-Agent: AOL SComp 41 | Version: 0.1 42 | Received-Date: Thu, 30 Dec 2010 09:23:16 -0500 (EST) 43 | Source-IP: 24.64.1.1 44 | Reported-Domain: ourdomain.com 45 | Redacted-Address: redacted 46 | Redacted-Address: redacted@ 47 | 48 | 49 | --boundary-1138-29572-2659438-18612 50 | Content-Type: message/rfc822 51 | Content-Disposition: inline 52 | 53 | Return-Path: 54 | Received: from mtain-dj08.r1000.mx.aol.com (mtain-dj08.r1000.mail.aol.com [172.19.187.144]) by air-df02.mail.aol.com (v129.4) with ESMTP id MAILINDF022-5ee74d1c96a81c4; Thu, 30 Dec 2010 09:26:48 -0500 55 | Received: from ourdomain.com (ourdomain.com [24.64.1.1]) 56 | by mtain-dj08.r1000.mx.aol.com (Internet Inbound) with SMTP id DCF633800021B 57 | for ; Thu, 30 Dec 2010 09:23:16 -0500 (EST) 58 | Received: (qmail 9104 invoked from network); 30 Dec 2010 14:23:14 -0000 59 | Received: from web8.local (10.1.0.252) 60 | by ourmailserver.com with SMTP; 30 Dec 2010 14:23:14 -0000 61 | Received: from mail pickup service by web8.local with Microsoft SMTPSVC; 62 | Thu, 30 Dec 2010 06:23:14 -0800 63 | From: "Support" 64 | To: redacted@aol.com 65 | Date: Thu, 30 Dec 2010 06:23:14 -0800 66 | Subject: Some Subject Line 67 | MIME-Version: 1.0 68 | Content-Type: multipart/alternative; 69 | boundary="_=aspNetEmail=_e47c4b2a8d0b4772ad7ec167c35c86d9" 70 | X-Mailer: aspNetEmail ver 2.5.0.0 71 | X-RCPT-TO: 72 | MIME-Version: 1.0 73 | Message-ID: 74 | X-OriginalArrivalTime: 30 Dec 2010 14:23:14.0094 (UTC) FILETIME=[1810CCE0:01CBA82D] 75 | x-aol-global-disposition: G 76 | X-AOL-SCOLL-AUTHENTICATION: mail_rly_antispam_dkim-m202.1 ; domain : No domain found DKIM : none 77 | x-aol-sid: 3039cdbc9d0d4d1c95d4461c 78 | X-AOL-IP: 24.64.1.1 79 | X-AOL-SPF: domain : ourdomain.com SPF : pass 80 | 81 | 82 | 83 | --_=aspNetEmail=_e47c4b2a8d0b4772ad7ec167c35c86d9 84 | Content-Type: text/plain; 85 | charset="utf-8" 86 | Content-Transfer-Encoding: quoted-printable 87 | 88 | Dear USER 89 | 90 | x 91 | x 92 | x 93 | x 94 | 95 | --_=aspNetEmail=_e47c4b2a8d0b4772ad7ec167c35c86d9 96 | Content-Type: text/html; 97 | charset="utf-8" 98 | Content-Transfer-Encoding: quoted-printable 99 | 100 |

Dear USER

101 | x 102 | x 103 | x 104 | x 105 | 106 | --_=aspNetEmail=_e47c4b2a8d0b4772ad7ec167c35c86d9-- 107 | 108 | 109 | --boundary-1138-29572-2659438-18612-- 110 | -------------------------------------------------------------------------------- /eml/fbl-comcast.txt: -------------------------------------------------------------------------------- 1 | Received: (qmail 8693 invoked from network); 30 Dec 2010 19:48:57 -0000 2 | Received: from unknown (HELO ourmailserver.com) (10.1.0.252) 3 | by ourmailserver.com with SMTP; 30 Dec 2010 19:48:57 -0000 4 | Received: from mrb-d1.returnpath.net ([67.217.228.241]) 5 | by ourmailserver.com with ESMTP; 30 Dec 2010 11:48:57 -0800 6 | Received: from parc.lan.senderscore.net (parc.lan.senderscore.net [10.8.2.234]) 7 | by mrb-d1.returnpath.net (Postfix) with ESMTP id 974834BB6 8 | for ; Thu, 30 Dec 2010 12:48:55 -0700 (MST) 9 | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=senderscore.net; 10 | s=081107; t=1293738535; i=@senderscore.net; 11 | bh=aCYEA97qjTQ0lBA7/pXd+ECJS11dqg8AtoxNZ+uzVoo=; 12 | h=Content-Transfer-Encoding:Content-Type:MIME-Version:Date:Subject: 13 | To:From:Message-Id; 14 | b=Vbp+IdF0Bfu1weX/KImVtEafytWmiaoMqRlB8Nq8yUtXaVc9yeOhnNvplFqza1pRH 15 | TTMiD4OynLDJuELPReKBTL2jFiFe9AJ43Vligx7shCZxrN2gHFSXDt7tz5OSjJkNkn 16 | fSZYwTyqEQuQ4oYyzCEJ/XqVmyp/PDIvAn5SYgUY= 17 | Received: by parc.lan.senderscore.net (Postfix, from userid 106603) 18 | id 8D3C8BDD; Thu, 30 Dec 2010 12:48:55 -0700 (MST) 19 | Content-Transfer-Encoding: binary 20 | Content-Type: multipart/report; boundary="_----------=_12937385352787524276"; report-type="feedback-report" 21 | MIME-Version: 1.0 22 | X-Mailer: MIME::Lite 3.01 (F2.73; T1.28; A2.04; B3.01; Q3.01) 23 | Date: Thu, 30 Dec 2010 19:48:55 UT 24 | Subject: comcast Abuse Report 25 | To: fbl-abuse@ourdomain.com 26 | From: feedbackloop@comcastfbl.senderscore.net 27 | Message-Id: <20101230194855.8D3C8BDD@parc.lan.senderscore.net> 28 | 29 | This is a multi-part message in MIME format. 30 | 31 | --_----------=_12937385352787524276 32 | Content-Disposition: inline 33 | Content-Transfer-Encoding: 7bit 34 | Content-Type: text/plain 35 | 36 | This is a comcast email abuse report for an email message received from IP 24.64.1.1 on Fri, 24 Dec 2010 02:07:37 +0000 37 | 38 | 39 | --_----------=_12937385352787524276 40 | Content-Disposition: inline 41 | Content-Transfer-Encoding: 7bit 42 | Content-Type: message/feedback-report 43 | 44 | User-Agent: comcast Feedback Loop (V0.01) 45 | Reported-Domain: ourdomain.com 46 | Arrival-Date: Fri, 24 Dec 2010 02:07:37 +0000 47 | Feedback-Type: abuse 48 | Version: 1 49 | Source-IP: 24.64.1.1 50 | Original-Message-ID: WEB984880f6664cc4cfcb65239d134bfd9c7@web9 51 | Original-Rcpt-To: undisclosed comcast recipient 52 | Original-Mail-From: support@ourdomain.com 53 | 54 | --_----------=_12937385352787524276 55 | Content-Disposition: inline 56 | Content-Transfer-Encoding: 8bit 57 | Content-Type: message/rfc822 58 | 59 | Return-Path: support@ourdomain.com 60 | Received: from imta35.westchester.pa.mail.comcast.net (LHLO 61 | imta35.westchester.pa.mail.comcast.net) (76.96.59.250) by 62 | sz0163.ev.mail.comcast.net with LMTP; Fri, 24 Dec 2010 02:07:36 +0000 (UTC) 63 | Received: from ourdomain.com ([24.64.1.1]) 64 | by imta35.westchester.pa.mail.comcast.net with comcast 65 | id mq7c1f0133X5gaJ0bq7cgB; Fri, 24 Dec 2010 02:07:37 +0000 66 | X-CAA-SPAM: 00000 67 | X-Authority-Analysis: v=1.1 cv=Hu/qbIQ1+L5hR7DX/T9LMmwmuWMV5E4oohQQkw1cegU= 68 | c=1 sm=1 a=A6HzZo_Vo9UA:10 a=qp+a6utUeyOj6/V0h5h35g==:17 a=rfX_wvhiAAAA:8 69 | a=JGDdjlENAAAA:8 a=C_IRinGWAAAA:8 a=c4sALXHMncbZh0z_Z3MA:9 70 | a=oeps-6xKFydRxetrEUEA:7 a=FJC7OhlS-D9t4bW4ieM6pSLLOHsA:4 a=QEXdDO2ut3YA:10 71 | a=JHGorsmrRLgA:10 a=80goQLXkAAAA:8 a=wU0ir2YEuFX_l4SXHPwA:9 72 | a=uMGQt756ojJo4PSIdqAA:7 a=K3Zcbs3NcS9gW89sNk0gbvkOF50A:4 a=si9q_4b84H0A:10 73 | a=qp+a6utUeyOj6/V0h5h35g==:117 74 | Received: (qmail 5029 invoked from network); 24 Dec 2010 02:07:35 -0000 75 | Received: from web9.local (10.1.0.252) 76 | by ourmailserver.com with SMTP; 24 Dec 2010 02:07:35 -0000 77 | Received: from mail pickup service by web9.dom.local with Microsoft SMTPSVC; 78 | Thu, 23 Dec 2010 18:07:34 -0800 79 | From: "Our domain" 80 | To: undisclosed comcast recipient 81 | Date: Thu, 23 Dec 2010 18:07:34 -0800 82 | Subject: Season's Greetings 83 | MIME-Version: 1.0 84 | Content-Type: multipart/alternative; 85 | boundary="_=aspNetEmail=_1a5374b5dd87484ba82fad9323495320" 86 | X-Mailer: aspNetEmail ver 2.5.0.0 87 | X-RCPT-TO: 88 | MIME-Version: 1.0 89 | Message-ID: 90 | X-OriginalArrivalTime: 24 Dec 2010 02:07:34.0968 (UTC) FILETIME=[549E2B80:01CBA30F] 91 | 92 | 93 | --_=aspNetEmail=_1a5374b5dd87484ba82fad9323495320 94 | Content-Type: text/plain; 95 | charset="utf-8" 96 | 97 | Season...s Greetings 98 | 99 | 100 | --_=aspNetEmail=_1a5374b5dd87484ba82fad9323495320 101 | Content-Type: text/html; 102 | charset="utf-8" 103 | 104 |

Season's Greetings

105 | 106 | --_=aspNetEmail=_1a5374b5dd87484ba82fad9323495320-- 107 | 108 | --_----------=_12937385352787524276-- 109 | 110 | -------------------------------------------------------------------------------- /eml/fbl-hotmail.txt: -------------------------------------------------------------------------------- 1 | Received: (qmail 16743 invoked from network); 30 Dec 2010 18:37:33 -0000 2 | Received: from unknown (HELO ourmailserver.com) (10.1.0.252) 3 | by ourmailserver.com with SMTP; 30 Dec 2010 18:37:33 -0000 4 | Received: from bay0-omc2-s15.bay0.hotmail.com ([65.54.190.90]) 5 | by ourmailserver.com with ESMTP; 30 Dec 2010 10:37:17 -0800 6 | Received: from BAY0-JMR-DB02 ([65.54.190.125]) by bay0-omc2-s15.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); 7 | Thu, 30 Dec 2010 10:37:16 -0800 8 | Date: Thu, 30 Dec 10 10:37:16 -0800 9 | From: staff@hotmail.com 10 | Subject: complaint about message from 24.64.1.1 11 | To: fbl-abuse@ourdomain.com 12 | MIME-Version: 1.0 13 | Content-Type: multipart/mixed; boundary="A80427F4-B4F2-4D64-BECA-12CAD20DE5F5" 14 | Return-Path: staff@hotmail.com 15 | Message-ID: 16 | X-OriginalArrivalTime: 30 Dec 2010 18:37:16.0535 (UTC) FILETIME=[9544B870:01CBA850] 17 | 18 | --A80427F4-B4F2-4D64-BECA-12CAD20DE5F5 19 | Content-Type: message/rfc822 20 | Content-Disposition: inline 21 | 22 | X-HmXmrOriginalRecipient: somerecipient@hotmail.com 23 | X-Reporter-IP: 96.23.88.208 24 | X-Message-Delivery: Vj0xLjE7dXM9MDtsPTE7YT0xO0Q9MTtTQ0w9MA== 25 | X-Message-Status: n 26 | X-SID-PRA: Our Domain 27 | X-AUTH-Result: NONE 28 | X-Message-Info: /Afko6AgMSzYW0lYpZQpJ1fX1hpBS7ZsGpYQz72u0pGUrNVnYB55cCmtxJMioyRUp4kBLVmh5ORjL/cKELk+Un2AYg/2pHDlTSy4Jebte06vpiO+vUgPLA== 29 | Received: from ourdomain.com ([24.64.1.1]) by snt0-mc2-f47.Snt0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); 30 | Thu, 30 Dec 2010 06:50:29 -0800 31 | Received: (qmail 7488 invoked from network); 30 Dec 2010 14:50:29 -0000 32 | Received: from web.local (10.1.0.252) 33 | by ourmailserver.com with SMTP; 30 Dec 2010 14:50:29 -0000 34 | Received: from mail pickup service by WEB.local with Microsoft SMTPSVC; 35 | Thu, 30 Dec 2010 06:50:29 -0800 36 | From: "Our Domain" 37 | To: "someuser@hotmail.com" 38 | Date: Thu, 30 Dec 2010 06:50:29 -0800 39 | Subject: Some Subject Line 40 | MIME-Version: 1.0 41 | Content-Type: multipart/alternative; 42 | boundary="_=aspNetEmail=_7d2331908aec4efe9b55fe9f27355434" 43 | X-Mailer: aspNetEmail ver 2.5.0.0 44 | X-RCPT-TO: 45 | MIME-Version: 1.0 46 | Message-ID: 47 | X-OriginalArrivalTime: 30 Dec 2010 14:50:29.0339 (UTC) FILETIME=[E6BF62B0:01CBA830] 48 | Return-Path: support@ourdomain.com 49 | 50 | --_=aspNetEmail=_7d2331908aec4efe9b55fe9f27355434 51 | Content-Type: text/plain; 52 | charset="utf-8" 53 | Content-Transfer-Encoding: quoted-printable 54 | 55 | Season's Greetings 56 | 57 | --_=aspNetEmail=_7d2331908aec4efe9b55fe9f27355434 58 | Content-Type: text/html; 59 | charset="utf-8" 60 | Content-Transfer-Encoding: quoted-printable 61 | 62 |

Season's Greetings

63 | 64 | --_=aspNetEmail=_7d2331908aec4efe9b55fe9f27355434-- 65 | 66 | --A80427F4-B4F2-4D64-BECA-12CAD20DE5F5-- 67 | -------------------------------------------------------------------------------- /eml/fbl-yahoo.txt: -------------------------------------------------------------------------------- 1 | Received: (qmail 5171 invoked from network); 30 Dec 2010 18:15:44 -0000 2 | Received: from unknown (HELO ourmailserver.com) (10.1.0.252) 3 | by ourmailserver.com with SMTP; 30 Dec 2010 18:15:44 -0000 4 | X-IronPort-Anti-Spam-Filtered: true 5 | X-IronPort-Anti-Spam-Result: AgMFAMJaHE1Dw4dVkWdsb2JhbACCIgmBRZIwjUNvAQEBAQkLCgcRAyGmeIgllBd0BIRliTw 6 | X-IronPort-AV: E=Sophos;i="4.60,250,1291622400"; 7 | d="scan'208,223";a="29936099" 8 | Received: from n7-vm3.bullet.mail.sp2.yahoo.com ([67.195.135.85]) 9 | by ourmailserver.com with SMTP; 30 Dec 2010 10:15:42 -0800 10 | Received: from [67.195.134.239] by n7.bullet.mail.sp2.yahoo.com with NNFMP; 30 Dec 2010 18:15:41 -0000 11 | Received: from [67.195.134.246] by t4.bullet.mail.sp2.yahoo.com with NNFMP; 30 Dec 2010 18:15:41 -0000 12 | Received: from [127.0.0.1] by vps108.asd.mail.sp2.yahoo.com with NNFMP; 30 Dec 2010 18:15:41 -0000 13 | X-Yahoo-Newman-Id: cfl-test 14 | MIME-Version: 1.0 15 | Content-Transfer-Encoding: 7bit 16 | Content-Type: multipart/report; boundary="_----------=_12937329419079035"; report-type="feedback-report" 17 | X-Mailer: MIME::Lite 3.021 (F2.6; T1.27; A2.04; B3.05; Q3.03) 18 | Date: Thu, 30 Dec 2010 10:15:41 -0800 19 | From: Yahoo! Mail AntiSpam Feedback 20 | To: fbl-abuse@ourdomain.com 21 | Subject: Some Subject Line 22 | X-Yahoo-Newman-Property: cfl 23 | 24 | This is a multi-part message in MIME format. 25 | 26 | --_----------=_12937329419079035 27 | MIME-Version: 1.0 28 | Content-Disposition: inline 29 | Content-Transfer-Encoding: 7bit 30 | Content-Type: text/plain; charset="US-ASCII" 31 | X-Mailer: MIME::Lite 3.021 (F2.6; T1.27; A2.04; B3.05; Q3.03) 32 | Date: Thu, 30 Dec 2010 10:15:41 -0800 33 | 34 | This is an email abuse report for an email message received from ourdomain.com on Tue, 28 Dec 2010 11:57:56 PST 35 | 36 | --_----------=_12937329419079035 37 | Content-Disposition: inline 38 | Content-Transfer-Encoding: 7bit 39 | Content-Type: message/feedback-report 40 | 41 | Feedback-Type: abuse 42 | User-Agent: Yahoo!-Mail-Feedback/1.0 43 | Version: 0.1 44 | Original-Mail-From: 45 | Original-Rcpt-To: someuser@yahoo.com 46 | Received-Date: Tue, 28 Dec 2010 11:57:56 PST 47 | Reported-Domain: ourdomain.com 48 | Authentication-Results: 49 | 50 | --_----------=_12937329419079035 51 | Content-Disposition: inline 52 | Content-Transfer-Encoding: 7bit 53 | Content-Type: message/rfc822 54 | 55 | From Tim's Advisors Tue Dec 28 18:43:07 2010 56 | X-Apparently-To: someuser@yahoo.com via 98.138.90.126; Tue, 28 Dec 2010 11:57:56 -0800 57 | Return-Path: 58 | Received-SPF: pass (mta1253.mail.ac4.yahoo.com: domain of support@ourdomain.com designates 24.64.1.1 as permitted sender) 59 | X-Originating-IP: [24.64.1.1] 60 | Authentication-Results: mta1253.mail.ac4.yahoo.com from=ourdomain.com; domainkeys=neutral (no sig); from=ourdomain.com; dkim=pass (ok) 61 | Received: from 127.0.0.1 (HELO ourdomain.com) (24.64.1.1) 62 | by mta1253.mail.ac4.yahoo.com with SMTP; Tue, 28 Dec 2010 11:57:56 -0800 63 | Received: (qmail 17907 invoked from network); 28 Dec 2010 18:43:07 -0000 64 | Received: from web8.local (10.1.0.252) 65 | by ourmailserver.com with SMTP; 28 Dec 2010 18:43:07 -0000 66 | From: "Support" 67 | To: "someuser@yahoo.com" 68 | Date: Tue, 28 Dec 2010 10:43:07 -0800 69 | Subject: Subject Line 70 | MIME-Version: 1.0 71 | Content-Type: multipart/alternative; 72 | boundary="_=aspNetEmail=_5da1132d859a4ec986c1d3fb5e251b71" 73 | X-Mailer: aspNetEmail ver 2.5.0.0 74 | X-RCPT-TO: 75 | MIME-Version: 1.0 76 | Message-ID: 77 | X-OriginalArrivalTime: 28 Dec 2010 18:43:07.0449 (UTC) FILETIME=[119A7290:01CBA6BF] 78 | 79 | 80 | --_=aspNetEmail=_5da1132d859a4ec986c1d3fb5e251b71 81 | Content-Type: text/plain; 82 | charset="utf-8" 83 | Content-Transfer-Encoding: quoted-printable 84 | 85 | Season's Greetings 86 | 87 | --_=aspNetEmail=_5da1132d859a4ec986c1d3fb5e251b71 88 | Content-Type: text/html; 89 | charset="utf-8" 90 | Content-Transfer-Encoding: quoted-printable 91 | 92 |

Season's Greetings

93 | 94 | --_=aspNetEmail=_5da1132d859a4ec986c1d3fb5e251b71-- 95 | --_----------=_12937329419079035-- 96 | -------------------------------------------------------------------------------- /eml/hotmailbounce.txt: -------------------------------------------------------------------------------- 1 | Received: (qmail 13873 invoked from network); 30 Jun 2010 17:37:37 -0000 2 | Received: from unknown (HELO mailprod.blahblah.com) (10.1.0.252) 3 | by mailprod.blahblah.com with SMTP; 30 Jun 2010 17:37:37 -0000 4 | X-IronPort-Anti-Spam-Filtered: true 5 | X-IronPort-Anti-Spam-Result: AikHABIeK0xBNr5hkWdsb2JhbACBXYFAj30CjDYVAQECCQsKBxEDH6gnh0k7h0uJBoQzcgSDbIZW 6 | X-IronPort-AV: E=Sophos;i="4.53,514,1272870000"; 7 | d="scan'208";a="30815619" 8 | Received: from bay0-omc2-s22.bay0.hotmail.com ([65.54.190.97]) 9 | by mailprod.blahblah.com with ESMTP; 30 Jun 2010 10:38:04 -0700 10 | Received: from BAY0-JMR-DB02 ([65.54.190.125]) by bay0-omc2-s22.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); 11 | Wed, 30 Jun 2010 10:38:06 -0700 12 | Date: Wed, 30 Jun 10 10:38:06 -0700 13 | From: staff@hotmail.com 14 | Subject: complaint about message from 74.200.17.xxx 15 | To: fbl-abuse@blahblah.com 16 | MIME-Version: 1.0 17 | Content-Type: multipart/mixed; boundary="F484BCB3-CE4F-4E2D-9A8E-B18786277C43" 18 | Return-Path: staff@hotmail.com 19 | Message-ID: 20 | X-OriginalArrivalTime: 30 Jun 2010 17:38:06.0174 (UTC) FILETIME=[FF7E5FE0:01CB187A] 21 | 22 | --F484BCB3-CE4F-4E2D-9A8E-B18786277C43 23 | Content-Type: message/rfc822 24 | Content-Disposition: inline 25 | 26 | X-HmXmrOriginalRecipient: spamreportinguser@hotmail.com 27 | X-Reporter-IP: 98.85.167.31 28 | X-Message-Delivery: Vj0xLjE7dXM9MDtsPTA7YT0wO0Q9MTtTQ0w9MA== 29 | X-Message-Status: n:0 30 | X-SID-PRA: Blah Blah 31 | X-AUTH-Result: NONE 32 | X-Message-Info: JGTYoYF78jGaD9OjFspetK21jb5YJjHBXJxnZUVNN0j7B/bMz45x/Gbn0EO5qRr9wooEUVeb5a3oux+Jz45coW6tHfR0bcKS 33 | Received: from blahblah.com ([12.12.12.12]) by bay0-mc2-f46.Bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); 34 | Wed, 30 Jun 2010 08:51:03 -0700 35 | Received: (qmail 11630 invoked from network); 30 Jun 2010 15:50:34 -0000 36 | Received: from unknown (HELO mailprod.blahblah.com) (10.1.0.252) 37 | by mailprod.blahblah.com with SMTP; 30 Jun 2010 15:50:34 -0000 38 | Received: from mailprod.blahblah.com (unverified [127.0.0.1]) 39 | by mailprod.blahblah.com (SurgeMail 3.9e) with ESMTP id 99677464-1773919 40 | for ; Wed, 30 Jun 2010 08:51:03 -0700 41 | Return-Path: 42 | X-Sender: support@blahblah.com 43 | From: "BuildingMaterialsTalk" 44 | To: "spamreportinguser@hotmail.com" 45 | Date: Wed, 30 Jun 2010 08:35:33 -0700 46 | Subject: Some Subject Line 47 | MIME-Version: 1.0 48 | Content-Type: multipart/alternative; 49 | boundary="_=aspNetEmail=_d1ff02f81150479fa81f301d782b3645" 50 | X-Mailer: aspNetEmail ver 2.5.0.0 51 | X-RCPT-TO: 52 | X-Web-Domain: www.blahblah.com 53 | MIME-Version: 1.0 54 | Message-ID: 55 | X-Originating-IP: 56 | X-OriginalArrivalTime: 30 Jun 2010 15:51:03.0564 (UTC) FILETIME=[0B51DCC0:01CB186C] 57 | 58 | --_=aspNetEmail=_d1ff02f81150479fa81f301d782b3645 59 | Content-Type: text/plain; 60 | charset="utf-8" 61 | Content-Transfer-Encoding: quoted-printable 62 | 63 | xx Original Text content here xx 64 | 65 | --_=aspNetEmail=_d1ff02f81150479fa81f301d782b3645 66 | Content-Type: text/html; 67 | charset="utf-8" 68 | Content-Transfer-Encoding: quoted-printable 69 | 70 |

xx Original HTML content here xx

71 | 72 | --_=aspNetEmail=_d1ff02f81150479fa81f301d782b3645-- 73 | 74 | --F484BCB3-CE4F-4E2D-9A8E-B18786277C43 75 | 76 | -------------------------------------------------------------------------------- /eml/testfile.eml: -------------------------------------------------------------------------------- 1 | Return-Path: 2 | Delivered-To: bouncemail@mysnip.de 3 | Received: from localhost (mail1.mysnip.de [127.0.0.1]) 4 | by mail1.mysnip.de (Postfix) with ESMTP id EEF3514015E56 5 | for ; Wed, 27 Jun 2007 23:31:24 +0200 (CEST) 6 | X-Virus-Scanned: amavisd-new at mysnip.de 7 | Received: from mail1.mysnip.de ([127.0.0.1]) 8 | by localhost (mail1.mysnip.de [127.0.0.1]) (amavisd-new, port 10024) 9 | with LMTP id EeO14FZ3CSlD for ; 10 | Wed, 27 Jun 2007 23:31:24 +0200 (CEST) 11 | Received: from [192.168.1.18] (A6258.a.strato-dslnet.de [89.62.98.88]) 12 | (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) 13 | (No client certificate requested) 14 | by mail1.mysnip.de (Postfix) with ESMTP id 10CB814015E58 15 | for ; Wed, 27 Jun 2007 23:31:23 +0200 (CEST) 16 | Resent-From: Thomas Seifert 17 | Resent-To: bouncemail@mysnip.de 18 | Resent-Date: Wed, 27 Jun 2007 23:31:21 +0200 19 | Resent-Message-Id: <4682D729.6020006@mysnip.de> 20 | Resent-User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.1.4) Gecko/20070604 Thunderbird/2.0.0.4 21 | Received: from localhost (mail1.mysnip.de [127.0.0.1]) 22 | by mail1.mysnip.de (Postfix) with ESMTP id DD17D14015E57 23 | for ; Wed, 27 Jun 2007 22:10:52 +0200 (CEST) 24 | X-Virus-Scanned: amavisd-new at mysnip.de 25 | Received: from mail1.mysnip.de ([127.0.0.1]) 26 | by localhost (mail1.mysnip.de [127.0.0.1]) (amavisd-new, port 10024) 27 | with LMTP id Mqc0v55gZp8K for ; 28 | Wed, 27 Jun 2007 22:10:52 +0200 (CEST) 29 | Received: from web1.mysnip.de (web1.mysnip.de [87.237.123.24]) 30 | by mail1.mysnip.de (Postfix) with ESMTP id 43FC014015E56 31 | for ; Wed, 27 Jun 2007 22:10:52 +0200 (CEST) 32 | Received: by web1.mysnip.de (Postfix) 33 | id 183982C0475D0; Wed, 27 Jun 2007 22:10:52 +0200 (CEST) 34 | Date: Wed, 27 Jun 2007 22:10:52 +0200 (CEST) 35 | From: MAILER-DAEMON@web1.mysnip.de (Mail Delivery System) 36 | Subject: Undelivered Mail Returned to Sender 37 | To: wwwmail@mysnip.de 38 | Auto-Submitted: auto-replied 39 | MIME-Version: 1.0 40 | Content-Type: multipart/report; report-type=delivery-status; 41 | boundary="91F2C2C03486B.1182975052/web1.mysnip.de" 42 | Message-Id: <20070627201052.183982C0475D0@web1.mysnip.de> 43 | 44 | This is a MIME-encapsulated message. 45 | 46 | --91F2C2C03486B.1182975052/web1.mysnip.de 47 | Content-Description: Notification 48 | Content-Type: text/plain; charset=us-ascii 49 | 50 | This is the mail system at host web1.mysnip.de. 51 | 52 | I'm sorry to have to inform you that your message could not 53 | be delivered to one or more recipients. It's attached below. 54 | 55 | For further assistance, please send mail to postmaster. 56 | 57 | If you do so, please include this problem report. You can 58 | delete your own text from the attached returned message. 59 | 60 | The mail system 61 | 62 | : host mxs.mail.ru[194.67.23.20] said: 550 Access from 63 | ip address 87.237.123.24 blocked. Visit 64 | http://win.mail.ru/cgi-bin/support_bl?ip=87.237.123.24 (in reply to RCPT TO 65 | command) 66 | 67 | --91F2C2C03486B.1182975052/web1.mysnip.de 68 | Content-Description: Delivery report 69 | 70 | Content-Type: message/delivery-status 71 | 72 | Reporting-MTA: dns; web1.mysnip.de 73 | X-Postfix-Queue-ID: 91F2C2C03486B 74 | X-Postfix-Sender: rfc822; wwwmail@mysnip.de 75 | Arrival-Date: Wed, 27 Jun 2007 22:10:49 +0200 (CEST) 76 | 77 | Final-Recipient: rfc822; leopold_skryd@mail.ru 78 | Action: failed 79 | Status: 5.0.0 80 | Remote-MTA: dns; mxs.mail.ru 81 | Diagnostic-Code: smtp; 550 Access from ip address 87.237.123.24 blocked. Visit 82 | http://win.mail.ru/cgi-bin/support_bl?ip=87.237.123.24 83 | 84 | --91F2C2C03486B.1182975052/web1.mysnip.de 85 | Content-Description: Undelivered Message 86 | Content-Type: message/rfc822 87 | 88 | Received: by web1.mysnip.de (Postfix, from userid 1000) 89 | id 91F2C2C03486B; Wed, 27 Jun 2007 22:10:49 +0200 (CEST) 90 | To: rusculture 91 | Subject: Registration Confirmation 92 | From: webmaster@myphorum.de 93 | Message-Id: <20070627201049.91F2C2C03486B@web1.mysnip.de> 94 | Date: Wed, 27 Jun 2007 22:10:49 +0200 (CEST) 95 | 96 | Herzlichen Dank, das Sie sich registriert haben. Nachstehend werden Sie ihren 97 | Benutzernamen und ihr temporäres Passwort finden. Gehen Sie bitte zu 98 | http://dolecek.myphorum.de/XBR/login.php und melden Sie sich an.: 99 | 100 | Benutzername: rusculture 101 | Passwort: ecaec5 102 | 103 | Ändern Sie bitte beim Anmelden das Passwort. 104 | 105 | --91F2C2C03486B.1182975052/web1.mysnip.de-- 106 | -------------------------------------------------------------------------------- /eml/unsubscribe.txt: -------------------------------------------------------------------------------- 1 | -------------- 2 | 2010-03-01 07:09:00 3 | matches: Array 4 | matches0: u=fc57b3707d19c808dd64b3986fd60968 5 | matches1: fc57b3707d19c808dd64b3986fd60968 6 | suid: fc57b3707d19c808dd64b3986fd60968 7 | wb: 8 | xh: 9 | subscriber exists: 1 10 | email: rrcatto@ananzi.co.za 11 | unsubscribed? 1 12 | body: 13 | This is a multi-part MIME message 14 | 15 | --_===367450483====mail01.ananzi.co.za===_ 16 | Content-Type: text/html; charset="ISO-8859-1" 17 | Content-Transfer-Encoding: 8bit 18 | 19 | 20 | 21 | 22 | --- the forwarded message follows --- 23 | 24 | --_===367450483====mail01.ananzi.co.za===_ 25 | Content-Type: message/rfc822 26 | 27 | Return-Path: 28 | Received: from server.redplanethosting.co.za ([72.44.90.66] verified) 29 | by mail01.ananzi.co.za (CommuniGate Pro SMTP 5.0.9) 30 | with ESMTPS id 365830386 for rrcatto@ananzi.co.za; Fri, 19 Feb 2010 14:14:02 +0200 31 | DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=ctnlist.co.za; 32 | h=Received:To:From:Reply-To:Subject:Date:X-LibVersion:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; 33 | b=KZ+4RGX25GjoDN3eLVdO4Pbhmvq038zAjAnoNIZri+dSfrlit58pjaTOSv+eBm8kJ3wsNb2FTUjr4/vvW3zfMMNL4tu6QP6vcdMnr3oZV0JqjyydQ27YbrHsjRQwJPR3; 34 | Received: from ns1.redplanethosting.co.za ([72.44.90.66]) 35 | by server.redplanethosting.co.za with esmtpa (Exim 4.69) 36 | (envelope-from ) 37 | id 1Ni6V2-0007NS-20 38 | for rrcatto@ananzi.co.za; Thu, 18 Feb 2010 15:33:00 +0200 39 | To: Richard Catto 40 | From: Cape Town news 41 | Reply-To: Cape Town news 42 | Subject: Reach for a Dream Charity Golf Day - March 12 2010 43 | Date: Thu, 18 Feb 2010 15:33:00 +0200 44 | X-LibVersion: 3.3.2 45 | MIME-Version: 1.0 46 | Content-Type: multipart/alternative; 47 | boundary="_=_swift-16974649274b7d418c0f44f5.90970824_=_" 48 | Content-Transfer-Encoding: 7bit 49 | Message-ID: <20100218133300.13935.872214324.swift@ctnlist.co.za> 50 | X-AntiAbuse: This header was added to track abuse, please include it with any abuse report 51 | X-AntiAbuse: Primary Hostname - server.redplanethosting.co.za 52 | X-AntiAbuse: Original Domain - ananzi.co.za 53 | X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] 54 | X-AntiAbuse: Sender Address Domain - ctnlist.co.za 55 | 56 | *************************** 57 | * This is Cape Town news! * 58 | *************************** 59 | 60 | WARNING: THE TEXT ONLY VERSION IS NOT THE REAL DEAL! 61 | =================================================== 62 | Hi Richard 63 | 64 | The last text only version of the Cape Town news newsletter was sent out on July 17 2005. After that date, Cape Town news switched to using an html format, which is what you should be viewing right now. 65 | 66 | The reason you are not seeing the correct version of Cape Town news, is because your email program isn't capable of or is not configured to display html emails. 67 | 68 | I would love you to experience Cape Town news in all it's html glory, so I recommend that you switch to using Mozilla Thunderbird or gmail to manage your mail. 69 | 70 | However, if that is not possible for any reason and you'd still like to view the latest Cape Town news newsletter, you can click this link and view it online on a specially built web archive of Cape Town news newsletters: 71 | http://ctnlist.co.za/archive.php?a=57 72 | 73 | Here is a very stripped down version of what appears in the HTML version of this email: 74 | 75 | ~ ~ ~ * ~ ~ ~ ~ ~ ~ * ~ ~ ~ ~ ~ ~ * ~ ~ ~ ~ ~ ~ * ~ ~ ~ ~ ~ ~ * ~ ~ ~ 76 | Reach for a Dream Charity Golf Day 77 | 78 | March 12 2010 79 | 80 | You are invited to attend Reach For A Dream's Golf Day on the 12th of March 2010 at the River Club. 81 | 82 | FORMAT: 83 | 84 | American Scramble (9 holes) 85 | 86 | ENTRY FEE: 87 | 88 | R200 per person / R1000 per team of 5 players. Includes gift bag on arrival, game of golf and lunch. We encourage both men and women to sign up. 89 | 90 | REGISTRATION: 91 | 92 | 10h00 to 10h30 93 | 94 | TEE-OFF: 95 | 96 | "Shotgun start" at 11h00 sharp!!! 97 | 98 | LUNCH: 99 | 100 | Served from 13h00 101 | 102 | AUCTION: 103 | 104 | From 15h00. 105 | 106 | A "silent auction" option is available for those who are not able to attend. Auction items will be on display on the day or click here to preview the list now. 107 | 108 | PLUS: 109 | 110 | There will be a "Beat The Pro", "Hole-in-one" and putting competition. 111 | 112 | Corporates have the option of branding a hole at R300 each. 113 | 114 | For bookings / donation of prize for auction or the gift bags please contact the office on 021 555 3013 or email Genevieve. 115 | 116 | VENUE: 117 | 118 | The River Club 119 | Liesbeek Parkway, Observatory 120 | Cape Town, Western Cape 7705 121 | Tel: 021 448 6117 122 | ~ ~ ~ * ~ ~ ~ ~ ~ ~ * ~ ~ ~ ~ ~ ~ * ~ ~ ~ ~ ~ ~ * ~ ~ ~ ~ ~ ~ * ~ ~ ~ 123 | 124 | If you would like to subscribe to receive these mailings, click this link: 125 | http://ctnlist.co.za/subscribe.php 126 | 127 | If you would like to unsubscribe from these mailings, click this link: 128 | http://ctnlist.co.za/unsubscribe.php?u=fc57b3707d19c808dd64b3986fd60968 129 | 130 | If you would like to change your email address, click this link: 131 | http://ctnlist.co.za/subscribe.php?u=fc57b3707d19c808dd64b3986fd60968 132 | 133 | If you would like to share this with friends, click this link: 134 | http://ctnlist.co.za/forward.php?u=fc57b3707d19c808dd64b3986fd60968&m=61 135 | 136 | If you would like to advertise with in Cape Town news, please contact me. 137 | 138 | This newsletter is distributed via http://ctnlist.co.za/, a custom mailing list program written in PHP and MySQL by Richard Catto. Contact me if you would like to use it for your own mailing list. 139 | 140 | Cheers, 141 | Richard Catto 142 | ctn editor 143 | Cape Town news 144 | http://capetownnews.co.za/ 145 | 073 258 8545 146 | http://twitter.com/rrcatto 147 | http://www.facebook.com/rrcatto 148 | --_=_swift-16974649274b7d418c0f44f5.90970824_=_ 149 | Content-Type: text/html; charset=iso-8859-1 150 | Content-Transfer-Encoding: 8bit 151 | 152 |
153 |
154 |

155 | Cape Town news

156 |

157 | Keeping you in the loop!

158 |
159 | 163 |
164 |

165 |

166 |
167 |
168 |

169 |

170 |
171 |
172 |

173 |

174 |
175 |
176 |

177 |

178 |

179 |

180 | Reach for a Dream Charity Golf Day
181 |

182 |

183 | March 12 2010
184 |

185 |

186 | You are invited to attend Reach For A Dream's Golf Day on the 12th of March 2010 at the River Club.

187 |

188 | FORMAT:

189 |

190 | American Scramble (9 holes)

191 |

192 | ENTRY FEE:

193 |

194 | R200 per person / R1000 per team of 5 players. Includes gift bag on arrival, game of golf and lunch. We encourage both men and women to sign up.

195 |

196 | REGISTRATION:

197 |

198 | 10h00 to 10h30

199 |

200 | TEE-OFF:

201 |

202 | "Shotgun start" at 11h00 sharp!!!

203 |

204 | LUNCH:

205 |

206 | Served from 13h00

207 |

208 | AUCTION:

209 |

210 | From 15h00.
211 |

212 |

213 | A "silent auction" option is available for those who are not able to attend. Auction items will be on display on the day or click here to preview the list now.

214 |

215 | PLUS:

216 |

217 | There will be a "Beat The Pro", "Hole-in-one" and putting competition.

218 |

219 | Corporates have the option of branding a hole at R300 each.

220 |

221 | For bookings / donation of prize for auction or the gift bags please contact the office on 021 555 3013 or email Genevieve.

222 |

223 | VENUE:

224 |

225 |

226 |

227 | The River Club
228 | Liesbeek Parkway, Observatory
229 | Cape Town, Western Cape 7705
230 | Tel: 021 448 6117
231 |

232 |

233 |
234 |

235 |

236 | I use twitter to inform my followers of newsworthy trends with links to relevant articles. I've linked it to my Facebook account so that twitter updates are reflected on Facebook - ask me how to do this, if you want to know how.
237 |

238 |

239 | Coming soon to gmail is Google Buzz which is a brand new Social Media feature that is Google's answer to Twitter.

240 |
241 |
242 |

243 | BEST ONLINE SHOPS IN CAPE TOWN

244 |

245 | Get Books, DVDs, Music, Games, Electronics online for less couriered direct to your front door!
246 |

247 |

248 | Two local online shops (both based in Cape Town) that I can fully recommend that you use are Loot and Take2. Both of them offer an efficient next day courier service and exceptional customer support that listens to your demands.

249 |

250 | Save yourself time and the frustration of crowded malls by buying online!

251 |
252 |
253 |

254 | RECOMMENDED LOOT

255 |

256 |     

257 |
258 |
259 |

260 | CHOCOLATE WORKSHOPS

261 |

262 | Learn how to make chocolate from home. In two 2 hour classes, you will make slabs and filled chocolates, decorate a "special events" cake, work with transfers and make truffles.

263 |

264 | Cost is R600 all inclusive (just bring a container to take home the items you will be making). Workshops are held on Tuesday, Wednesday and Saturday from 14h30 till 16h30 in Claremont (off Keurboom Road).

265 |

266 | Dates: February 23, 24, 27; March 2, 3, 6

267 |

268 | Phone Sheilagh on 084 303 6633 for an appointment

269 |
270 |
271 |

272 | OLD MUTUAL SUMMER SUNSET CONCERTS AT KIRSTENBOSCH

273 |

274 | February 21 - Just Jinjer / February 28 - Prime Circle

275 |

276 | March 7 - Goldfish / March 14 - The Dirty Skirts / March 21 - Cape Philharmonic Orchestra / March 28 - Watershed

277 |

278 | April 4 - Old Mutual Encounter - Tidal Waves and friend: Tumi Molekane

279 |

280 | Time (for all shows): 17h30 - 19h30 / Gates open at 15h30. Ticket sales: 021- 761 2866 / 799 8782

281 |

282 | This information courtesy of Linet of Hippo Communications 021 557-0246

283 |
284 |
285 |

286 | ASCENSION CAN BE A REALITY THIS LIFETIME

287 |

288 | A powerful one-day workshop designed to initiate a major and positive change your life!
289 |

290 |

291 |

292 | Workshop on Sunday 18 April 2010 09h00 - 16h00 in Muizenberg R400 (Lunch & manual included).
293 | Contact Anthea on 083 227 0269 or office number - Coral 021 709 0393 / info@sacredsustainability.co.za

294 |
295 |
296 |

297 | DUESOUTH XTERRA - FEBRUARY 20 2010

298 |

299 | Top South African multi-sport athlete Dan Hugo will return to Grabouw on Saturday, 20 February 2010 with his eye on his second championship title in the DUESOUTH XTERRA finals presented by REHIDRAT®. The 2008 national champion will hit the spectacular Grabouw course in supreme form fresh off his convincing victory at XTERRA Buffelspoort Dam in January.

300 |

301 | Taking place at the Grabouw Country Club, Western Cape. Registration on Wednesday, 17 February and Thursday, 18 February 2010 at DUESOUTH Store (Canal Walk) from 09h00 till 21h00

302 |

303 | For more information, race rules or to enter please contact Stillwater Sport & Entertainment on (021) 883 – 2413 or e-mail.

304 |
305 |
306 |

307 | BAYMARKETING

308 |

309 | South African & German Strategic Marketing, Public Relations and Sales Specialists, Cape Town
310 |

311 |

312 | Grow through fresh ideas! We specialize in strategic business development through targeted marketing and individual sales concepts. We coordinate branding, media planning, creative design, promotional appearances, events and publicity into an intelligent marketing mix.
313 |

314 |

315 | Contact Ines Stoll on 021 7905977 or info@baymarketing.co.za

316 |
317 |
318 |

319 | ACCURATE READINGS AND PSYCHIC COUNSELLING

320 |

321 | Medical, emotional and financial: as well as picking up the issues psychically, I also use the following to confirm what has come through and the answers you are looking for :- Aspects of Self, Greek Mythology, Oracle Cards, Runes, Numerology, Astrology, Palmistry. I also do Holistic Healing, Deep Tissue Massage, Alignment and Lymph Drainage when a physical shift is required.

322 |

323 | Contact Annette on 082 375 5693. Milnerton. Email and phone readings also available.
324 |

325 |
326 |
327 |

328 | QUALIFIED BOOKKEEPER

329 |

330 | I am a qualified Bookkeeper, with 28 years experience and do books to Trial Balance or Balance Sheet, including Debtors, Creditors, Stock, Petty Cash, Cash Books and Reconciliations and ALL Monthly and Annual Statutory Returns. I use Pastel, IQ and Quickbooks etc. either at your premises, or my offices, on your own Computer or my laptop. I also sell, train and support various Accounting packages.

331 |

332 | Contact Annette on 082 375 5693

333 |
334 |
335 |

336 | ACCOUNTING SERVICE

337 |

338 | Retired Accountant available to assist small and medium sized businesses with bookkeeping and preparation of Final Accounts for audit and taxation purposes. Preparation of budgets, business plan for starting business and yearly or annual projections.
339 |

340 |

341 | Contact Frank 073 075 6961
342 |

343 |
344 |
345 |

346 | HOME911 - USE YOUR CELLPHONE TO PROTECT YOURSELF

347 |

348 | Turn your cellphone into a personal panic button with the Home911 service. At the touch of a speeddial number, Home911 connects you to up to 10 family and friends to alert them to the fact that you need emergency assistance.

349 |

350 | To find out more, please contact Joseph Strydom on 082 887 7286 or go directly to the web site to sign up.

351 |
352 |
353 |

354 | HOUSE SITTING SERVICE - BERGVLIET / CONSTANTIA AREA

355 |

356 | Reliable mature married couple available to house sit, look after pets, plants and domestic staff while you are away. Reasonable daily rate. References available.

357 |

358 | Contact Liz on 021 715 6820

359 |
360 |
361 |

362 | CARROT CAKES FOR ALL OCCASIONS

363 |

364 | Nutritious and delicious moist carrot cakes, with or without icing.

365 |

366 | Call 021 715 6820 to order

367 |
368 |
369 |

370 | Hi Richard

371 |

372 | This notice is published by Cape Town news. Contact me for advertisement rates.
373 |
374 | Cheers,
375 | Richard Catto
376 | ctn editor
377 | 073 258 8545
378 |

379 |

380 | This email is archived online here: ARCHIVE
381 |

382 |

383 | Richard Catto's Facebook profile

384 |
385 |
386 | 387 | --_=_swift-16974649274b7d418c0f44f5.90970824_=_-- 388 | 389 | 390 | --_===367450483====mail01.ananzi.co.za===_-- 391 | 392 | 393 | -------------------------------------------------------------------------------- /php.bouncehandler.v7.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortune/PHP-Bounce-Handler/956e65b0d502b1904546c3c46480409ded41d755/php.bouncehandler.v7.4.zip -------------------------------------------------------------------------------- /testdriver1.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | File Tests:

\n"; 14 | foreach($files as $file) { 15 | echo "$file "; 16 | $bounce = file_get_contents("eml/".$file); 17 | $multiArray = $bouncehandler->get_the_facts($bounce); 18 | if( !empty($multiArray[0]['action']) 19 | && !empty($multiArray[0]['status']) 20 | && !empty($multiArray[0]['recipient']) ){ 21 | print " - Passed
\n"; 22 | } 23 | else{ 24 | print " - WRONG
\n"; 25 | print "
\n";
 26 |                 print_r($multiArray[0]);
 27 |                 print "
\n"; 28 | } 29 | } 30 | } 31 | } 32 | ?> 33 | 34 |

bounce_driver.class.php -- Version 7.4

35 | 36 |

37 | Chris Fortune ~ http://cfortune.kics.bc.ca 38 |

39 |

June 19, 2014

40 |
    41 |
  • make auto-responder identification table driven
  • 42 |
  • make bounce_statuscodes.php (prev rfc1893_status_codes.php) generated from IANA list 43 | php Make_statuscodes.php >bounce_statuscodes.php
  • 44 |
  • allow for rfc status codes with 2 digits in the 3rd paramater
  • 45 |
  • more supression for php notifications on undefined data
  • 46 |
  • better detection and field definition for FBL handling
  • 47 |
  • remove spaces in joined header lines
  • 48 |
  • remove invalid/redundant implode operations
  • 49 |
  • add two new sample emails 61,62
  • 50 |
  • add command line test tool (cmdline_test.php)
  • 51 | 52 |

    53 | July 4, 2013 54 |

    55 |

    56 | Replaced deprecated split() function. 57 | Added auto-responder identification filter. 58 | Suppressed php Notice errors. 59 |

    60 |


    61 | 62 | Download source code 63 |
    64 | 65 | 66 |

    67 | Feb 3, 2011 68 |

    69 |

    70 | Hey! Class is no longer static, it is rewritten in dynamic $this-> notation. It's much easier to customize now. If you are upgrading from a previous version, you will need to rewrite your method invocation code. 71 |

    72 |


    73 | 74 | Download source code 75 |
    76 | 77 |

    78 | This bounce handler Attempts to parse Multipart reports for hard bounces, according to RFC1892 (RFC 1892 - The Multipart/Report Content Type for the Reporting of Mail System Administrative Messages) and RFC1894 (RFC 1894 - An Extensible Message Format for Delivery Status Notifications). We can reuse this for any well-formed bounces.

    79 |

    80 | It handles FBL (Feedback Loop) emails, if they are in Abuse Feedback Reporting Format, ARF (It even handles Hotmail's ridiculous attempts at FBL). DKIM parsing is not yet implemented. 81 |

    82 |

    83 | You can configure custom regular expressions to find any web beacons you may have put in your outgoing mails, in either the mail body or an x-header field. (see source code for examples). You can use it to track data (eg, recipient, list, mail run, etc...) by sending out unique ids, then parsing them from the bounces. This is especially useful when parsing FBL's, because usually all recipient fields have been removed (redacted). 84 |

    85 |

    86 | If the bounce is not well formed, it tries to extract some useful information anyway. Currently Postfix and Exim are supported, partially. You can edit the function get_the_facts() if you want to add a parser for your own busted MTA. Please forward any useful & reuseable code to the keeper of this class. Chris Fortune

    87 | web_beacon_preg_1 = "/u=([0-9a-fA-F]{32})/"; 91 | $bouncehandler->web_beacon_preg_2 = "/m=(\d*)/"; 92 | 93 | // find a web beacon in an X-header field (in the head section) 94 | $bouncehandler->x_header_search_1 = "X-ctnlist-suid"; 95 | //$bouncehandler->x_header_search_2 = "X-sumthin-sumpin"; 96 | 97 | if($_GET['eml']){ 98 | echo "

    ".$_GET['eml']." -- "; 99 | echo "View a different bounce

    "; 100 | $bounce = file_get_contents("eml/".$_GET['eml']); 101 | echo "

    Quick and dirty bounce handler:
    102 | useage: 103 |

    104 | require_once(\"bounce_driver.class.php\");
    105 | \$bouncehandler = new Bouncehandler();
    106 | \$multiArray = \$bouncehandler->get_the_facts(\$strEmail); , or
    107 | \$multiArray = \$bouncehandler->parse_email(\$strEmail);
    (same thing) 108 |
    109 | returns a multi-dimensional associative array of bounced recipient addresses and their SMTP status codes (if available)

    110 | print_r(\$multiArray); 111 |

    "; 112 | 113 | $multiArray = $bouncehandler->get_the_facts($bounce); 114 | echo ""; 119 | 120 | $bounce = $bouncehandler->init_bouncehandler($bounce, 'string'); 121 | list($head, $body) = preg_split("/\r\n\r\n/", $bounce, 2); 122 | } 123 | else{ 124 | print "

    1. Test All Sample Bounce E-mails\n\n"; 125 | print "
    2. Or, select a bounce email to view the parsed results:
    \n"; 126 | 127 | $files = get_sorted_file_list('eml'); 128 | if (is_array($files)) { 129 | reset($files); 130 | echo "

    Files:

    \n"; 131 | foreach($files as $file) { 132 | echo "$file
    \n"; 133 | } 134 | } 135 | exit; 136 | } 137 | 138 | echo "

    Will return recipient's email address, the RFC1893 error code, and the action. Action can be one of the following: 139 |

      140 |
    • 'transient'(temporary problem), 141 |
    • 'failed' (permanent problem), 142 |
    • 'autoreply' (a vacation auto-response), or 143 |
    • '' (nothing -- not classified).
    "; 144 | 145 | echo "

    You could dereference the \$multiArray in a 'for loop', for example...

    146 |
    147 |     foreach(\$multiArray as \$the){
    148 |         switch(\$the['action']){
    149 |             case 'failed':
    150 |                 //do something
    151 |                 kill_him(\$the['recipient']);
    152 |                 break;
    153 |             case 'transient':
    154 |                 //do something else
    155 |                 \$num_attempts  = delivery_attempts(\$the['recipient']);
    156 |                 if(\$num_attempts  > 10){
    157 |                     kill_him(\$the['recipient']);
    158 |                 }
    159 |                 else{
    160 |                     insert_into_queue(\$the['recipient'], (\$num_attempts+1));
    161 |                 }
    162 |                 break;
    163 |             case 'autoreply':
    164 |                 //do something different
    165 |                 postpone(\$the['recipient'], '7 days');
    166 |                 break;
    167 |             default:
    168 |                 //don't do anything
    169 |                 break;
    170 |         }
    171 |     }
    172 | 
    173 | Or, if it is an FBL, you could use the class variables to access the
    174 | data (Unlike Multipart-reports, FBL's report only one bounce)
    175 | You could also use them if the output array has only one index:
    176 | 
    177 |     if(\$bouncehandler->type == 'fbl'
    178 |        or count(\$bouncehandler->output) == 1)
    179 |     {
    180 |         echo \$bouncehandler->action : .... $bouncehandler->action
    181 |         echo \$bouncehandler->status : .... $bouncehandler->status
    182 |         echo \$bouncehandler->recipient : .... $bouncehandler->recipient
    183 |         echo \$bouncehandler->feedback_type : .... $bouncehandler->feedback_type
    184 |     }
    185 | 
    186 | These class variables are safe for all bounce types:
    187 | 
    188 |     echo \$bouncehandler->type : .... $bouncehandler->type
    189 |     echo \$bouncehandler->subject : .... $bouncehandler->subject
    190 |     echo \$bouncehandler->web_beacon_1 : .... $bouncehandler->web_beacon_1
    191 |     echo \$bouncehandler->web_beacon_2 : .... $bouncehandler->web_beacon_2
    192 |     echo \$bouncehandler->x_header_beacon_1 : .... $bouncehandler->x_header_beacon_1
    193 |     echo \$bouncehandler->x_header_beacon_2 : .... $bouncehandler->x_header_beacon_2
    194 | 
    195 | 
    196 | "; 197 | echo "

    That's all you need to know, but if you want to get more complicated you can. All methods are public. See source code.


    "; 198 | 199 | 200 | echo "

    Here is the parsed head

    \n"; 201 | $head_hash = $bouncehandler->parse_head($head); 202 | echo ""; 205 | 206 | if($bouncehandler->is_hotmail_fbl) echo "RRRRRR".$bouncehandler->recipient ; 207 | exit; 208 | 209 | if ($bouncehandler->is_RFC1892_multipart_report($head_hash)){ 210 | print "

    Looks like an RFC1892 multipart report

    "; 211 | } 212 | else if($bouncehandler->looks_like_an_FBL){ 213 | print "

    It's a Feedback Loop, "; 214 | if($bouncehandler->is_hotmail_fbl){ 215 | print " in Hotmail Doofus Format (HDF?)

    "; 216 | }else{ 217 | print " in Abuse Feedback Reporting format (ARF)
    "; 218 | echo ""; 221 | } 222 | } 223 | else { 224 | print "

    Not an RFC1892 multipart report

    "; 225 | echo ""; 228 | exit; 229 | } 230 | 231 | 232 | echo "

    Here is the parsed report

    \n"; 233 | echo "

    Postfix adds an appropriate X- header (X-Postfix-Sender:), so you do not need to create one via phpmailer. RFC's call for an optional Original-recipient field, but mandatory Final-recipient field is a fair substitute.

    "; 234 | $boundary = $head_hash['Content-type']['boundary']; 235 | $mime_sections = $bouncehandler->parse_body_into_mime_sections($body, $boundary); 236 | $rpt_hash = $bouncehandler->parse_machine_parsable_body_part($mime_sections['machine_parsable_body_part']); 237 | echo ""; 240 | 241 | 242 | 243 | echo "

    Here is the error status code

    \n"; 244 | echo "

    It's all in the status code, if you can find one.

    "; 245 | for($i=0; $iReport #".($i+1)."
    \n"; 247 | echo $bouncehandler->find_recipient($rpt_hash['per_recipient'][$i]); 248 | $scode = $rpt_hash['per_recipient'][$i]['Status']; 249 | echo "
    $scode
    "; 250 | echo $bouncehandler->fetch_status_messages($scode); 251 | echo "

    \n"; 252 | } 253 | 254 | echo "

    The Diagnostic-code

    is not the same as the reported status code, but it seems to be more descriptive, so it should be extracted (if possible)."; 255 | for($i=0; $iReport #".($i+1)."
    \n"; 257 | echo $bouncehandler->find_recipient($rpt_hash['per_recipient'][$i]); 258 | $dcode = $rpt_hash['per_recipient'][$i]['Diagnostic-code']['text']; 259 | if($dcode){ 260 | echo "

    $dcode
    "; 261 | echo $bouncehandler->fetch_status_messages($dcode); 262 | } 263 | else{ 264 | echo "
    couldn't decode
    "; 265 | } 266 | echo "

    \n"; 267 | } 268 | 269 | echo "

    Grab original To: and From:

    \n"; 270 | echo "

    Just in case we don't have an Original-recipient: field, or a X-Postfix-Sender: field, we can retrieve information from the (optional) returned message body part

    \n"; 271 | $head = $bouncehandler->get_head_from_returned_message_body_part($mime_sections); 272 | echo "

    From: ".$head['From']."
    To: ".$head['To']."
    Subject: ".$head['Subject']."

    "; 273 | 274 | 275 | echo "

    Here is the body in RFC1892 parts

    \n"; 276 | echo "

    Three parts: [first_body_part], [machine_parsable_body_part], and [returned_message_body_part]

    "; 277 | echo ""; 280 | 281 | 282 | /* 283 | $status_code = $bouncehandler->format_status_code($rpt_hash['per_recipient'][$i]['Status']); 284 | $status_code_msg = $bouncehandler->fetch_status_messages($status_code['code']); 285 | $status_code_remote_msg = $status_code['text']; 286 | $diag_code = $bouncehandler->format_status_code($rpt_hash['per_recipient'][$i]['Diagnostic-code']['text']); 287 | $diag_code_msg = $bouncehandler->fetch_status_messages($diag_code['code']); 288 | $diag_code_remote_msg = $diag_code['text']; 289 | */ 290 | 291 | function get_sorted_file_list($d){ 292 | $fs = array(); 293 | if ($h = opendir($d)) { 294 | while (false !== ($f = readdir($h))) { 295 | if($f=='.' || $f=='..') continue; 296 | $fs[] = $f; 297 | } 298 | closedir($h); 299 | sort($fs, SORT_STRING);// 300 | } 301 | return $fs; 302 | } 303 | 304 | ?> 305 | --------------------------------------------------------------------------------