'',
+ 'type' => ''
+ );
+ if (isset($arr[1])) {
+ if (strpos($arr[0], '@') !== false) {
+ $output['addr'] = $this->_strip_angle_brackets($arr[0]);
+ $output['type'] = (!empty($arr[1])) ? trim($arr[1]) : 'unknown';
+ } else {
+ $output['type'] = trim($arr[0]);
+ $output['addr'] = $this->_strip_angle_brackets($arr[1]);
+ }
+ } elseif (isset($arr[0])) {
+ if (strpos($arr[0], '@') !== false) {
+ $output['addr'] = $this->_strip_angle_brackets($arr[0]);
+ $output['type'] = 'unknown';
+ }
}
- return $ret;
+
+ return $output;
}
- function fetch_status_messages($code){
- include_once ("bounce_statuscodes.php");
- $ret = $this->format_status_code($code);
- $arr = explode('.', $ret['code']);
- $str = "". $status_code_classes[$arr[0]]['title'] . " - " .$status_code_classes[$arr[0]]['descr']. " ". $status_code_subclasses[$arr[1].".".$arr[2]]['title'] . " - " .$status_code_subclasses[$arr[1].".".$arr[2]]['descr']. "
";
- return $str;
+ /**
+ * Decode the diagnostic code into just the code number.
+ *
+ * @param string $dcode The diagnostic code
+ *
+ * @return string
+ */
+ function decode_diagnostic_code($dcode)
+ {
+ if (preg_match("/(\d\.\d\.\d)\s/", $dcode, $array)) {
+ return $array[1];
+ } else if (preg_match("/(\d\d\d)\s/", $dcode, $array)) {
+ return $array[1];
+ }
+
+ return '';
}
- function get_action_from_status_code($code){
- if($code=='')
+ /**
+ * Get a brief status/recommend action from the status code.
+ *
+ * @param string $code The status code string supplied.
+ *
+ * @return string Either "success", "transient", "failed" or "" (unknown).
+ */
+ function get_action_from_status_code($code)
+ {
+ if ($code == '') {
return '';
+ }
$ret = $this->format_status_code($code);
- switch (isset($ret['code']) ? $ret['code'][0] : '') {
- case(2):
- return 'success';
- break;
- case(4):
- return 'transient';
- break;
- case(5):
- return 'failed';
- break;
- default:
- return '';
- break;
+ /**
+ * We weren't able to read the code
+ */
+ if ($ret['code'] === '') {
+ return '';
+ }
+ /**
+ * Work out the rough status from the first digit of the code
+ */
+ switch (substr($ret['code'], 0, 1)) {
+ case(2):
+ return 'success';
+ break;
+ case(4):
+ return 'transient';
+ break;
+ case(5):
+ return 'failed';
+ break;
+ default:
+ return '';
+ break;
}
}
- function decode_diagnostic_code($dcode){
- if(preg_match("/(\d\.\d\.\d)\s/", $dcode, $array)){
- return $array[1];
- }
- else if(preg_match("/(\d\d\d)\s/", $dcode, $array)){
- return $array[1];
+ /**
+ * Extract the code and text from a status code string.
+ *
+ * @param string $code A status code string in the format 12.34.56 Reason or 123456 reason
+ * Reason or 123456 reason
+ * @param bool $strict Only accept triplets (12.34.56) and not that
+ * "breaks RFC" 12.34 format
+ *
+ * @return array Associative array containing code (two or three decimal
+ * separated numbers) and text
+ */
+ function format_status_code($code, $strict = false)
+ {
+ $ret = array('code' => '', 'text' => '');
+ $matches = array();
+ if (preg_match(
+ '/([245]\.[01234567]\.\d{1,2})\s*(.*)/', $code, $matches
+ )) {
+ $ret['code'] = $matches[1];
+ $ret['text'] = $matches[2];
+ } else if (preg_match(
+ '/([245])([01234567])(\d{1,2})\s*(.*)/', $code, $matches
+ )) {
+ $ret['code'] = $matches[1] . '.' . $matches[2] . '.' . $matches[3];
+ $ret['text'] = $matches[4];
+ } else if (false === $strict
+ && preg_match(
+ '/([245]\.[01234567])\s*(.*)/', $code, $matches
+ )
+ ) {
+ /**
+ * Handle major.minor code style (which is against RFCs - should
+ * always be major.minor.sub)
+ */
+ $ret['code'] = $matches[1] . '.0';
+ $ret['text'] = $matches[2];
+ } else if (false === $strict
+ && preg_match(
+ '/([245])([01234567])\s*(.*)/', $code, $matches
+ )
+ ) {
+ /**
+ * Handle major.minor code style (which is against RFCs - should
+ * always be major.minor.sub)
+ */
+ $ret['code'] = $matches[1] . '.' . $matches[2] . '.0';
+ $ret['text'] = $matches[3];
}
+ return $ret;
}
- function is_a_bounce(){
- foreach ($this->bouncesubj as $s)
- if (preg_match("/^$s/i", $this->head_hash['Subject']))
- return true;
- #if(@preg_match('/auto_reply/',$this->head_hash['Precedence'])) return true; # autoresponse, not bounce
- if (isset($this->head_hash['From']) &&
- preg_match("/^(postmaster|mailer-daemon)\@?/i", $this->head_hash['From']))
- return true;
- return false;
- }
-
- function find_email_addresses($first_body_part){
- // not finished yet. This finds only one address.
- if (preg_match("/\b([A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4})\b/i", $first_body_part, $matches)){
- return array($matches[1]);
+ /**
+ * Find the recipient from either the original-recipient or
+ * final-recipieint settings.
+ *
+ * @param array $per_rcpt Headers
+ *
+ * @return string Email address
+ */
+ function find_recipient($per_rcpt)
+ {
+ $recipient = '';
+ if ($per_rcpt['Original-recipient']['addr'] !== '') {
+ $recipient = $per_rcpt['Original-recipient']['addr'];
+ } else if ($per_rcpt['Final-recipient']['addr'] !== '') {
+ $recipient = $per_rcpt['Final-recipient']['addr'];
}
- else
- return array();
+ $recipient = $this->_strip_angle_brackets($recipient);
+
+ return $recipient;
}
+ /**
+ * @param $recipient
+ * @param $index
+ *
+ * @return string
+ */
+ function get_status_code_from_text($recipient, $index)
+ {
+ for ($i = $index; $i < count($this->body_hash); $i++) {
+ $line = trim($this->body_hash[$i]);
- // these functions are for feedback loops
- function is_an_ARF(){
- if(isset($this->head_hash['Content-type']['report-type']) && preg_match('/feedback-report/',$this->head_hash['Content-type']['report-type']))
- return true;
- if(isset($this->head_hash['X-loop']) && preg_match('/scomp/',$this->head_hash['X-loop']))
- return true;
- if(isset($this->head_hash['X-hmxmroriginalrecipient'])) {
- $this->is_hotmail_fbl = TRUE;
- $this->recipient = $this->head_hash['X-hmxmroriginalrecipient'];
- return true;
- }
- if(isset($this->first_body_hash['X-hmxmroriginalrecipient']) ) {
- $this->is_hotmail_fbl = TRUE;
- $this->recipient = $this->first_body_hash['X-hmxmroriginalrecipient'];
- return true;
- }
- return false;
- }
-
- // look for common auto-responders
- function is_an_autoresponse() {
- foreach (array ('Auto-submitted', 'X-autorespond') as $a) {
- if (isset($this->head_hash[$a])) {
- $this->autoresponse = "$a: ". $this->head_hash[$a];
- return TRUE;
+ //skip Message-ID lines
+ if (stripos($line, 'Message-ID') !== false) {
+ continue;
}
- }
- foreach (array ('Precedence', 'X-precedence') as $a) {
- if (isset($this->head_hash[$a]) && preg_match('/^(auto|junk)/i', $this->head_hash[$a])) {
- $this->autoresponse = "$a: ". $this->head_hash[$a];
- return TRUE;
+
+ /* recurse into the email if you find the recipient **/
+ if (stristr($line, $recipient) !== false) {
+ // the status code MIGHT be in the next few lines after the
+ // recipient line,
+ // depending on the message from the foreign host...
+ $status_code = $this->get_status_code_from_text(
+ $recipient, $i + 1
+ );
+ if ($status_code) {
+ return $status_code;
+ }
+
}
- }
-
- $subj = isset($this->head_hash['Subject']) ? $this->head_hash['Subject'] : '';
- foreach ($this->autorespondlist as $a) {
- if (preg_match("/$a/i", $subj)) {
- $this->autoresponse = $this->head_hash['Subject'];
- return TRUE;
+
+ /******** exit conditions ********/
+ // if it's the end of the human readable part in this stupid bounce
+ if (stristr($line, '------ This is a copy of the message') !== false
+ ) {
+ break;
+ }
+ //if we see an email address other than our current recipient's,
+ if (count($this->find_email_addresses($line)) >= 1
+ && stristr($line, $recipient) === false
+ && strstr($line, 'FROM:<') === false
+ ) {
+ // Kanon added this line because Hotmail puts the e-mail
+ //address too soon and there actually is error message stuff
+ //after it.
+ break;
}
+
+ //******** pattern matching ********/
+ foreach ($this->_bouncelist as $bouncetext => $bouncecode) {
+ if (preg_match("/$bouncetext/i", $line, $matches)) {
+ return (isset($matches[1])) ? $matches[1] : $bouncecode;
+ }
+ }
+
+ // Search for a rfc3463 style return code
+ if (preg_match(
+ '/\W([245]\.[01234567]\.[0-9]{1,2})\W/', $line, $matches
+ )) {
+ return $matches[1];
+ // ??? this seems somewhat redundant
+ // $mycode = str_replace('.', '', $matches[1]);
+ // $mycode = $this->format_status_code($mycode);
+ // return implode('.', $mycode['code']); #x.y.z format
+ }
+
+ // search for RFC2821 return code
+ // thanks to mark.tolman@gmail.com
+ // Maybe at some point it should have it's own place within the
+ // main parsing scheme (at line 88)
+ if (preg_match('/\]?: ([45][01257][012345]) /', $line, $matches)
+ || preg_match(
+ '/^([45][01257][012345]) (?:.*?)(?:denied|inactive|'.
+ 'deactivated|rejected|disabled|unknown|no such|'.
+ 'not (?:our|activated|a valid))+/i',
+ $line, $matches
+ )
+ ) {
+ $mycode = $matches[1];
+ // map RFC2821 -> RFC3463 codes
+ if ($mycode == '550' || $mycode == '551' || $mycode == '553'
+ || $mycode == '554'
+ ) {
+ // perm error
+ return '5.1.1';
+ } elseif ($mycode == '452' || $mycode == '552') {
+ // mailbox full
+ return '4.2.2';
+ } elseif ($mycode == '450' || $mycode == '421') {
+ // temp unavailable
+ return '4.3.2';
+ }
+ // ???$mycode = $this->format_status_code($mycode);
+ // ???return implode('.', $mycode['code']);
+ }
+
}
- return FALSE;
+
+ return '5.5.0'; // other or unknown status
}
-
-
-
- // use a perl regular expression to find the web beacon
- public function find_web_beacon($body, $preg){
- if(!isset($preg) || !$preg)
- return "";
- if(preg_match($preg, $body, $matches))
+
+
+ /**
+ * Returns the type of email - either autoresponse, fbl, bounce or "false".
+ *
+ * @return bool|string
+ */
+ function find_type()
+ {
+ if ($this->looks_like_an_autoresponse) {
+ return "autoresponse";
+ } elseif ($this->looks_like_an_FBL) {
+ return "fbl";
+ } elseif ($this->looks_like_a_bounce) {
+ return "bounce";
+ } else {
+ return false;
+ }
+ }
+
+ // look for common auto-responders
+
+ /**
+ * Search for a web beacon in the email body.
+ *
+ * @param string $body Email body.
+ * @param string $preg Regular expression to look for.
+ *
+ * @return string
+ */
+ public function find_web_beacon($body, $preg)
+ {
+ if (!isset($preg) || !$preg) {
+ return '';
+ }
+ if (preg_match($preg, $body, $matches)) {
return $matches[1];
+ }
+
+ return '';
}
-
- public function find_x_header($xheader){
+
+
+ /**
+ * use a PECL regular expression to find the web beacon
+ *
+ * @param string $xheader Header string to look for.
+ *
+ * @return string
+ */
+ public function find_x_header($xheader)
+ {
$xheader = ucfirst(strtolower($xheader));
// check the header
- if(isset($this->head_hash[$xheader])){
+ if (isset($this->head_hash[$xheader])) {
return $this->head_hash[$xheader];
}
// check the body too
$tmp_body_hash = $this->standard_parser($this->body_hash);
- if(isset($tmp_body_hash[$xheader])){
+ if (isset($tmp_body_hash[$xheader])) {
return $tmp_body_hash[$xheader];
}
- return "";
+
+ return '';
}
-
- private function find_fbl_recipients($fbl){
- if(isset($fbl['Original-rcpt-to'])){
- return $fbl['Original-rcpt-to'];
- }
- else if(isset($fbl['Removal-recipient'])){
- return trim(str_replace('--', '', $fbl['Removal-recipient']));
- }
+
+ /**
+ * @param $mime_sections
+ *
+ * @return array
+ */
+ function get_head_from_returned_message_body_part($mime_sections)
+ {
+ $temp = explode(
+ "\r\n\r\n", $mime_sections['returned_message_body_part']
+ );
+ $head = $this->standard_parser($temp[1]);
+ $head['From'] = $this->extract_address($head['From']);
+ $head['To'] = $this->extract_address($head['To']);
+
+ return $head;
}
- private function strip_angle_brackets($recipient){
- if (preg_match('/[<[](.*)[>\]]/', $recipient, $matches))
- return trim($matches[1]);
- else
- return trim($recipient);
+ /**
+ * @param $str
+ *
+ * @return mixed
+ */
+ function extract_address($str)
+ {
+ $from = '';
+ $from_stuff = preg_split('/[ \"\'\<\>:\(\)\[\]]/', $str);
+ foreach ($from_stuff as $things) {
+ if (strpos($things, '@') !== false) {
+ $from = $things;
+ }
+ }
+
+ return $from;
}
+ /**
+ * Format a status code into a HTML marked up reason.
+ *
+ * @param string $code A status code line.
+ * @param array $status_code_classes Rough description of status code.
+ * @param array $status_code_subclasses Details of each specific subcode.
+ *
+ * @return string HTML marked up reason
+ */
+ function fetch_status_messages(
+ $code, $status_code_classes = array(), $status_code_subclasses = array()
+ ) {
+ $array = $this->fetch_status_message_as_array(
+ $code, $status_code_classes, $status_code_subclasses
+ );
+ $str = '' . $array['title'] . ' - ' . $array['description']
+ . ' ' . $array['sub_title'] . ' - '
+ . $array['sub_description'];
+ return $str;
+ }
- /*The syntax of the final-recipient field is as follows:
- "Final-Recipient" ":" address-type ";" generic-address
- */
- private function format_final_recipient_array($arr){
- $output = array('addr'=>'',
- 'type'=>'');
- if (isset($arr[1])) {
- if (strpos($arr[0], '@') !== FALSE){
- $output['addr'] = $this->strip_angle_brackets($arr[0]);
- $output['type'] = (!empty($arr[1])) ? trim($arr[1]) : 'unknown';
+ /**
+ * Get human readable details of an SMTP status code.
+ *
+ * Loads in bounce_statuscodes if $status_code_classes or
+ * $status_code_subclasses is empty.
+ *
+ * @param string $code A status code line or number.
+ * @param array $status_code_classes Rough description of the code.
+ * @param array $status_code_subclasses Details of each specific subcode.
+ *
+ * @return array Human readable details of the code.
+ */
+ public function fetch_status_message_as_array(
+ $code,
+ $status_code_classes = array(),
+ $status_code_subclasses = array()
+ ) {
+ $code_classes = $status_code_classes;
+ $sub_classes = $status_code_subclasses;
+ /**
+ * Load from the provided bounce_statuscodes.php file if not set
+ */
+ if (empty($code_classes) || empty($sub_classes)) {
+ include "bounce_statuscodes.php";
+ if (empty($code_classes)) {
+ $code_classes = $status_code_classes;
}
- else {
- $output['type'] = trim($arr[0]);
- $output['addr'] = $this->strip_angle_brackets($arr[1]);
+ if (empty($sub_classes)) {
+ $sub_classes = $status_code_subclasses;
}
}
- return $output;
+ $return = array(
+ 'input_code' => $code,
+ 'formatted_code_code' => '',
+ 'formatted_code_text=' > '',
+ 'major_code' => '',
+ 'sub_code' => '',
+ 'title' => 'No major code found',
+ 'description' => '',
+ 'sub_title' => 'No sub code found',
+ 'sub_description' => ''
+ );
+ $formatted_code = $this->format_status_code($code);
+ if ('' === $formatted_code['code']) {
+ $return['title'] = 'Could not parse code';
+ $return['sub_title'] = 'Could not parse code';
+ } else {
+ $arr = explode('.', $formatted_code['code']);
+ $return['formatted_code_code'] = $formatted_code['code'];
+ $return['formatted_code_text'] = $formatted_code['text'];
+ if (true === isset($arr[0])) {
+ $return['major_code'] = $arr[0];
+ if (true === isset($code_classes[$arr[0]])) {
+ if (true === isset($code_classes[$arr[0]]['title'])) {
+ $return['title'] = $code_classes[$arr[0]]['title'];
+ } else {
+ $return['title']
+ = 'No title available for major code: ' . $arr[0];
+ }
+ if (true === isset($code_classes[$arr[0]]['descr'])) {
+ $return['description']
+ = $code_classes[$arr[0]]['descr'];
+ }
+ } else {
+ $return['title']
+ = 'Unrecognised major code: ' . $arr[0] . 'xxx';
+ }
+ }
+ $sub_label = '';
+ if (true === isset($arr[1]) && true === isset($arr[2])) {
+ $sub_label = $arr[1] . '.' . $arr[2];
+ } elseif (true === isset($arr[1])) {
+ $sub_label = $arr[1];
+ }
+ if ('' !== $sub_label) {
+ $return['sub_code'] = $sub_label;
+ if (true === isset($sub_classes[$sub_label])) {
+ if (true === isset($sub_classes[$sub_label]['title'])) {
+ $return['sub_title']
+ = $sub_classes[$sub_label]['title'];
+ } else {
+ $return['sub_title']
+ = 'No sub title available for sub code: '
+ . $sub_label;
+ }
+ if (true === isset($sub_classes[$sub_label]['descr'])) {
+ $return['sub_description']
+ = $sub_classes[$sub_label]['descr'];
+ }
+ } else {
+ $return['sub_title']
+ = 'Unrecognised sub code: ' . $sub_label;
+ }
+ }
+ }
+ return $return;
}
-}/** END class BounceHandler **/
-?>
+}
diff --git a/bounce_responses.php b/bounce_responses.php
index 37b1bf9..e65c725 100644
--- a/bounce_responses.php
+++ b/bounce_responses.php
@@ -1,239 +1,263 @@
+ * @license http://opensource.org/licenses/BSD-2-Clause BSD
+ * @link https://github.com/cfortune/PHP-Bounce-Handler/
+*/
-# text in messages from which to figure out what kind of bounce
+// text in messages from which to figure out what kind of bounce
$bouncelist = array(
- '[45]\d\d[- ]#?([45]\.\d\.\d{1,2})' => 'x', # use the code from the regex
- 'Diagnostic[- ][Cc]ode: smtp; ?\d\d\ ([45]\.\d\.\d{1,2})' => 'x', # use the code from the regex
- 'Status: ([45]\.\d\.\d{1,2})' => 'x', # use the code from the regex
-
- 'not yet been delivered' => '4.2.0', #
- 'Message will be retried for' => '4.2.0', #
- 'Connection frequency limited\. http:\/\/service\.mail\.qq\.com' => '4.2.0',
-
- 'Benutzer hat zuviele Mails auf dem Server' => '4.2.2', #.DE "mailbox full"
- 'exceeded storage allocation' => '4.2.2', #
- 'Mailbox full' => '4.2.2', #
- 'mailbox is full' => '4.2.2', #BH
- 'Mailbox quota usage exceeded' => '4.2.2', #BH
- 'Mailbox size limit exceeded' => '4.2.2', #
- 'over ?quota' => '4.2.2', #
- 'quota exceeded' => '4.2.2', #
- 'Quota violation' => '4.2.2', #
- 'User has exhausted allowed storage space' => '4.2.2', #
- 'User has too many messages on the server' => '4.2.2', #
- 'User mailbox exceeds allowed size' => '4.2.2', #
- 'mailfolder is full' => '4.2.2', #
- 'user has Exceeded' => '4.2.2', #
- 'not enough storage space' => '4.2.2', #
-
- '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.
- 'delivery temporarily suspended' => '4.3.2', #
- 'Greylisted for 5 minutes' => '4.3.2', #
- 'Greylisting in action' => '4.3.2', #
- 'Server busy' => '4.3.2', #
- 'server too busy' => '4.3.2', #
- 'system load is too high' => '4.3.2', #
- 'temporarily deferred' => '4.3.2', #
- 'temporarily unavailable' => '4.3.2', #
- 'Throttling' => '4.3.2', #
- 'too busy to accept mail' => '4.3.2', #
- 'too many connections' => '4.3.2', #
- 'too many sessions' => '4.3.2', #
- 'Too much load' => '4.3.2', #
- 'try again later' => '4.3.2', #
- 'Try later' => '4.3.2', #
- 'retry timeout exceeded' => '4.4.7', #
- 'queue too long' => '4.4.7', #
-
- '554 delivery error:' => '5.1.1', #SB: Yahoo/rogers.com generic delivery failure (see also OU-00)
- 'account has been disabled' => '5.1.1', #
- 'account is unavailable' => '5.1.1', #
- 'Account not found' => '5.1.1', #
- 'Address invalid' => '5.1.1', #
- 'Address is unknown' => '5.1.1', #
- 'Address unknown' => '5.1.1', #
- 'Addressee unknown' => '5.1.1', #
- 'ADDRESS_NOT_FOUND' => '5.1.1', #
- 'bad address' => '5.1.1', #
- 'Bad destination mailbox address' => '5.1.1', #
- 'destin. Sconosciuto' => '5.1.1', #.IT "user unknown"
- 'Destinatario errato' => '5.1.1', #.IT "invalid"
- 'Destinatario sconosciuto o mailbox disatttivata' => '5.1.1', #.IT "unknown /disabled"
- 'does not exist' => '5.1.1', #
- 'Email Address was not found' => '5.1.1', #
- 'Excessive userid unknowns' => '5.1.1', #
- 'Indirizzo inesistente' => '5.1.1', #.IT "no user"
- 'Invalid account' => '5.1.1', #
- 'invalid address' => '5.1.1', #
- 'Invalid or unknown virtual user' => '5.1.1', #
- 'Invalid mailbox' => '5.1.1', #
- 'Invalid recipient' => '5.1.1', #
- 'Mailbox not found' => '5.1.1', #
- 'mailbox unavailable' => '5.1.1', #
- 'nie istnieje' => '5.1.1', #.PL "does not exist"
- 'Nie ma takiego konta' => '5.1.1', #.PL "no such account"
- 'No mail box available for this user' => '5.1.1', #
- 'no mailbox here' => '5.1.1', #
- 'No one with that email address here' => '5.1.1', #
- 'no such address' => '5.1.1', #
- 'no such email address' => '5.1.1', #
- 'No such mail drop defined' => '5.1.1', #
- 'No such mailbox' => '5.1.1', #
- 'No such person at this address' => '5.1.1', #
- 'no such recipient' => '5.1.1', #
- 'No such user' => '5.1.1', #
- 'not a known user' => '5.1.1', #
- 'not a valid mailbox' => '5.1.1', #
- 'not a valid user' => '5.1.1', #
- 'not available' => '5.1.1', #
- 'not exists' => '5.1.1', #
- 'Recipient address rejected' => '5.1.1', #
- 'Recipient not allowed' => '5.1.1', #
- 'Recipient not found' => '5.1.1', #
- 'recipient rejected' => '5.1.1', #
- 'Recipient unknown' => '5.1.1', #
- "server doesn't handle mail for that user" => '5.1.1', #
- 'This account is disabled' => '5.1.1', #
- 'This address no longer accepts mail' => '5.1.1', #
- 'This email address is not known to this system' => '5.1.1', #
- 'Unknown account' => '5.1.1', #
- 'unknown address or alias' => '5.1.1', #
- 'Unknown email address' => '5.1.1', #
- 'Unknown local part' => '5.1.1', #
- 'unknown or illegal alias' => '5.1.1', #
- 'unknown or illegal user' => '5.1.1', #
- 'Unknown recipient' => '5.1.1', #
- 'unknown user' => '5.1.1', #
- 'user disabled' => '5.1.1', #
- "User doesn't exist in this server" => '5.1.1', #
- 'user invalid' => '5.1.1', #
- 'User is suspended' => '5.1.1', #
- 'User is unknown' => '5.1.1', #
- 'User not found' => '5.1.1', #
- 'User not known' => '5.1.1', #
- 'User unknown' => '5.1.1', #
- 'valid RCPT command must precede DATA' => '5.1.1', #
- 'was not found in LDAP server' => '5.1.1', #
- 'We are sorry but the address is invalid' => '5.1.1', #
- 'Unable to find alias user' => '5.1.1', #
-
- "domain isn't in my list of allowed rcpthosts" => '5.1.2', #
- 'Esta casilla ha expirado por falta de uso' => '5.1.2', #BH ES:expired
- 'host ?name is unknown' => '5.1.2', #
- 'no relaying allowed' => '5.1.2', #
- 'no such domain' => '5.1.2', #
- 'not our customer' => '5.1.2', #
- 'relay not permitted' => '5.1.2', #
- 'Relay access denied' => '5.1.2', #
- 'relaying denied' => '5.1.2', #
- 'Relaying not allowed' => '5.1.2', #
- 'This system is not configured to relay mail' => '5.1.2', #
- 'Unable to relay' => '5.1.2', #
- 'unrouteable mail domain' => '5.1.2', #BH
- 'we do not relay' => '5.1.2', #
-
- 'Old address no longer valid' => '5.1.6', #
- 'recipient no longer on server' => '5.1.6', #
-
- 'Sender address rejected' => '5.1.8', #
-
- 'exceeded the rate limit' => '5.2.0', #
- 'Local Policy Violation' => '5.2.0', #
- 'Mailbox currently suspended' => '5.2.0', #
- 'mailbox unavailable' => '5.2.0', #
- 'mail can not be delivered' => '5.2.0', #
- 'Delivery failed' => '5.2.0', #
- 'mail couldn\'t be delivered' => '5.2.0', #
- '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
-
- 'Account disabled' => '5.2.1', #
- 'account has been disabled' => '5.2.1', #
- 'Account Inactive' => '5.2.1', #
- 'Adressat unbekannt oder Mailbox deaktiviert' => '5.2.1', #
- 'Destinataire inconnu ou boite aux lettres desactivee' => '5.2.1', #.FR disabled
- 'mail is not currently being accepted for this mailbox' => '5.2.1', #
- 'El usuario esta en estado: inactivo' => '5.2.1', #.IT inactive
- 'email account that you tried to reach is disabled' => '5.2.1', #
- 'inactive user' => '5.2.1', #
- 'Mailbox disabled for this recipient' => '5.2.1', #
- 'mailbox has been blocked due to inactivity' => '5.2.1', #
- 'mailbox is currently unavailable' => '5.2.1', #
- 'Mailbox is disabled' => '5.2.1', #
- 'Mailbox is inactive' => '5.2.1', #
- 'Mailbox Locked or Suspended' => '5.2.1', #
- 'mailbox temporarily disabled' => '5.2.1', #
- 'Podane konto jest zablokowane administracyjnie lub nieaktywne'=> '5.2.1', #.PL locked or inactive
- "Questo indirizzo e' bloccato per inutilizzo" => '5.2.1', #.IT blocked/expired
- 'Recipient mailbox was disabled' => '5.2.1', #
- 'Domain name not found' => '5.2.1',
-
- 'couldn\'t find any host named' => '5.4.4', #
- 'couldn\'t find any host by that name' => '5.4.4', #
- 'PERM_FAILURE: DNS Error' => '5.4.4', #SB: Routing failure
- 'Temporary lookup failure' => '5.4.4', #
- 'unrouteable address' => '5.4.4', #
- "can't connect to" => '5.4.4', #
-
- 'Too many hops' => '5.4.6', #
-
- 'Requested action aborted' => '5.5.0', #
-
- 'rejecting password protected file attachment' => '5.6.2', #RFC "Conversion required and prohibited"
-
- '550 OU-00' => '5.7.1', #SB hotmail returns a OU-001 if you're on their blocklist
- '550 SC-00' => '5.7.1', #SB hotmail returns a SC-00x if you're on their blocklist
- '550 DY-00' => '5.7.1', #SB hotmail returns a DY-00x if you're a dynamic IP
- '554 denied' => '5.7.1', #
- 'You have been blocked by the recipient' => '5.7.1', #
- 'requires that you verify' => '5.7.1', #
- 'Access denied' => '5.7.1', #
- 'Administrative prohibition - unable to validate recipient' => '5.7.1', #
- 'Blacklisted' => '5.7.1', #
- 'blocke?d? for spam' => '5.7.1', #
- 'conection refused' => '5.7.1', #
- 'Connection refused due to abuse' => '5.7.1', #
- 'dial-up or dynamic-ip denied' => '5.7.1', #
- 'Domain has received too many bounces' => '5.7.1', #
- 'failed several antispam checks' => '5.7.1', #
- 'found in a DNS blacklist' => '5.7.1', #
- 'IPs blocked' => '5.7.1', #
- 'is blocked by' => '5.7.1', #
- 'Mail Refused' => '5.7.1', #
- 'Message does not pass DomainKeys' => '5.7.1', #
- 'Message looks like spam' => '5.7.1', #
- 'Message refused by' => '5.7.1', #
- 'not allowed access from your location' => '5.7.1', #
- 'permanently deferred' => '5.7.1', #
- 'Rejected by policy' => '5.7.1', #
- 'rejected by Windows Live Hotmail for policy reasons' => '5.7.1', #
- 'Rejected for policy reasons' => '5.7.1', #
- 'Rejecting banned content' => '5.7.1', #
- 'Sorry, looks like spam' => '5.7.1', #
- 'spam message discarded' => '5.7.1', #
- 'Too many spams from your IP' => '5.7.1', #
- 'TRANSACTION FAILED' => '5.7.1', #
- 'Transaction rejected' => '5.7.1', #
- 'Wiadomosc zostala odrzucona przez system antyspamowy' => '5.7.1', #.PL rejected as spam
- 'Your message was declared Spam' => '5.7.1' #
+ // use the code from the regex
+ '[45]\d\d[- ]#?([45]\.\d\.\d{1,2})' => 'x',
+ // use the code from the regex
+ 'Diagnostic[- ][Cc]ode: smtp; ?\d\d\ ([45]\.\d\.\d{1,2})' => 'x',
+ // use the code from the regex
+ 'Status: ([45]\.\d\.\d{1,2})' => 'x',
+ 'not yet been delivered' => '4.2.0',
+ 'Message will be retried for' => '4.2.0',
+ 'Connection frequency limited\. http:\/\/service\.mail\.qq\.com' => '4.2.0',
+ // .DE "mailbox full"
+ 'Benutzer hat zuviele Mails auf dem Server' => '4.2.2',
+ 'exceeded storage allocation' => '4.2.2',
+ 'Mailbox full' => '4.2.2',
+ 'mailbox is full' => '4.2.2', // BH
+ 'Mailbox quota usage exceeded' => '4.2.2', // BH
+ 'Mailbox size limit exceeded' => '4.2.2',
+ 'over ?quota' => '4.2.2',
+ 'quota exceeded' => '4.2.2',
+ 'Quota violation' => '4.2.2',
+ 'User has exhausted allowed storage space' => '4.2.2',
+ 'User has too many messages on the server' => '4.2.2',
+ 'User mailbox exceeds allowed size' => '4.2.2',
+ 'mailfolder is full' => '4.2.2',
+ 'user has Exceeded' => '4.2.2',
+ 'not enough storage space' => '4.2.2',
+ /**
+ * SB: 4.3.2 is a more generic 'defer'; Kanon added.
+ * From Symantec_AntiVirus_for_SMTP_Gateways@uqam.ca I'm 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.
+ **/
+ 'Delivery attempts will continue to be made for' => '4.3.2',
+ 'delivery temporarily suspended' => '4.3.2',
+ 'Greylisted for 5 minutes' => '4.3.2',
+ 'Greylisting in action' => '4.3.2',
+ 'Server busy' => '4.3.2',
+ 'server too busy' => '4.3.2',
+ 'system load is too high' => '4.3.2',
+ 'temporarily deferred' => '4.3.2',
+ 'temporarily unavailable' => '4.3.2',
+ 'Throttling' => '4.3.2',
+ 'too busy to accept mail' => '4.3.2',
+ 'too many connections' => '4.3.2',
+ 'too many sessions' => '4.3.2',
+ 'Too much load' => '4.3.2',
+ 'try again later' => '4.3.2',
+ 'Try later' => '4.3.2',
+ 'retry timeout exceeded' => '4.4.7',
+ 'queue too long' => '4.4.7',
+ '554 delivery error:' => '5.1.1',
+ // SB: Yahoo/rogers.com generic delivery failure (see also OU-00)
+ 'account is unavailable' => '5.1.1',
+ 'Account not found' => '5.1.1',
+ 'Address invalid' => '5.1.1',
+ 'Address is unknown' => '5.1.1',
+ 'Address unknown' => '5.1.1',
+ 'Addressee unknown' => '5.1.1',
+ 'ADDRESS_NOT_FOUND' => '5.1.1',
+ 'bad address' => '5.1.1',
+ 'Bad destination mailbox address' => '5.1.1',
+ // .IT "user unknown"
+ 'destin. Sconosciuto' => '5.1.1',
+ // .IT "invalid"
+ 'Destinatario errato' => '5.1.1',
+ 'Destinatario sconosciuto o mailbox disatttivata' => '5.1.1',
+ // .IT "unknown /disabled"
+ 'does not exist' => '5.1.1',
+ 'Email Address was not found' => '5.1.1',
+ 'Excessive userid unknowns' => '5.1.1',
+ // .IT "no user"
+ 'Indirizzo inesistente' => '5.1.1',
+ 'Invalid account' => '5.1.1',
+ 'invalid address' => '5.1.1',
+ 'Invalid or unknown virtual user' => '5.1.1',
+ 'Invalid mailbox' => '5.1.1',
+ 'Invalid recipient' => '5.1.1',
+ 'Mailbox not found' => '5.1.1',
+ 'nie istnieje' => '5.1.1',
+ // .PL "does not exist"
+ 'Nie ma takiego konta' => '5.1.1', // .PL "no such account"
+ 'No mail box available for this user' => '5.1.1',
+ 'no mailbox here' => '5.1.1',
+ 'No one with that email address here' => '5.1.1',
+ 'no such address' => '5.1.1',
+ 'no such email address' => '5.1.1',
+ 'No such mail drop defined' => '5.1.1',
+ 'No such mailbox' => '5.1.1',
+ 'No such person at this address' => '5.1.1',
+ 'no such recipient' => '5.1.1',
+ 'No such user' => '5.1.1',
+ 'not a known user' => '5.1.1',
+ 'not a valid mailbox' => '5.1.1',
+ 'not a valid user' => '5.1.1',
+ 'not available' => '5.1.1',
+ 'not exists' => '5.1.1',
+ 'Recipient address rejected' => '5.1.1',
+ 'Recipient not allowed' => '5.1.1',
+ 'Recipient not found' => '5.1.1',
+ 'recipient rejected' => '5.1.1',
+ 'Recipient unknown' => '5.1.1',
+ "server doesn't handle mail for that user" => '5.1.1',
+ 'This account is disabled' => '5.1.1',
+ 'This address no longer accepts mail' => '5.1.1',
+ 'This email address is not known to this system' => '5.1.1',
+ 'Unknown account' => '5.1.1',
+ 'unknown address or alias' => '5.1.1',
+ 'Unknown email address' => '5.1.1',
+ 'Unknown local part' => '5.1.1',
+ 'unknown or illegal alias' => '5.1.1',
+ 'unknown or illegal user' => '5.1.1',
+ 'Unknown recipient' => '5.1.1',
+ 'unknown user' => '5.1.1',
+ 'user disabled' => '5.1.1', "User doesn't exist in this server" => '5.1.1',
+ 'user invalid' => '5.1.1',
+ 'User is suspended' => '5.1.1',
+ 'User is unknown' => '5.1.1',
+ 'User not found' => '5.1.1',
+ 'User not known' => '5.1.1',
+ 'User unknown' => '5.1.1',
+ 'valid RCPT command must precede DATA' => '5.1.1',
+ 'was not found in LDAP server' => '5.1.1',
+ 'We are sorry but the address is invalid' => '5.1.1',
+ 'Unable to find alias user' => '5.1.1',
+ "domain isn't in my list of allowed rcpthosts" => '5.1.2',
+ 'Esta casilla ha expirado por falta de uso' => '5.1.2', // BH ES:expired
+ 'host ?name is unknown' => '5.1.2',
+ 'no relaying allowed' => '5.1.2',
+ 'no such domain' => '5.1.2',
+ 'not our customer' => '5.1.2',
+ 'relay not permitted' => '5.1.2',
+ 'Relay access denied' => '5.1.2',
+ 'relaying denied' => '5.1.2',
+ 'Relaying not allowed' => '5.1.2',
+ 'This system is not configured to relay mail' => '5.1.2',
+ 'Unable to relay' => '5.1.2',
+ 'unrouteable mail domain' => '5.1.2', // BH
+ 'we do not relay' => '5.1.2',
+ 'Old address no longer valid' => '5.1.6',
+ 'recipient no longer on server' => '5.1.6',
+ 'Sender address rejected' => '5.1.8',
+ 'exceeded the rate limit' => '5.2.0',
+ 'Local Policy Violation' => '5.2.0',
+ 'Mailbox currently suspended' => '5.2.0',
+ 'mailbox unavailable' => '5.2.0',
+ 'mail can not be delivered' => '5.2.0',
+ 'Delivery failed' => '5.2.0',
+ 'mail couldn\'t be delivered' => '5.2.0',
+ '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
+ 'Account disabled' => '5.2.1',
+ 'account has been disabled' => '5.2.1',
+ 'Account Inactive' => '5.2.1',
+ 'Adressat unbekannt oder Mailbox deaktiviert' => '5.2.1',
+ 'Destinataire inconnu ou boite aux lettres desactivee' => '5.2.1',
+ // .FR disabled
+ 'mail is not currently being accepted for this mailbox' => '5.2.1',
+ 'El usuario esta en estado: inactivo' => '5.2.1', // .IT inactive
+ 'email account that you tried to reach is disabled' => '5.2.1',
+ 'inactive user' => '5.2.1',
+ 'Mailbox disabled for this recipient' => '5.2.1',
+ 'mailbox has been blocked due to inactivity' => '5.2.1',
+ 'mailbox is currently unavailable' => '5.2.1',
+ 'Mailbox is disabled' => '5.2.1',
+ 'Mailbox is inactive' => '5.2.1',
+ 'Mailbox Locked or Suspended' => '5.2.1',
+ 'mailbox temporarily disabled' => '5.2.1',
+ 'Podane konto jest zablokowane administracyjnie lub nieaktywne' => '5.2.1',
+ // .PL locked or inactive
+ "Questo indirizzo e' bloccato per inutilizzo" => '5.2.1',
+ // .IT blocked/expired
+ 'Recipient mailbox was disabled' => '5.2.1',
+ 'Domain name not found' => '5.2.1',
+ 'couldn\'t find any host named' => '5.4.4',
+ 'couldn\'t find any host by that name' => '5.4.4',
+ 'PERM_FAILURE: DNS Error' => '5.4.4', // SB: Routing failure
+ 'Temporary lookup failure' => '5.4.4',
+ 'unrouteable address' => '5.4.4',
+ "can't connect to" => '5.4.4',
+ 'Too many hops' => '5.4.6',
+ 'Requested action aborted' => '5.5.0',
+ 'rejecting password protected file attachment' => '5.6.2',
+ // RFC "Conversion required and prohibited"
+ '550 OU-00' => '5.7.1',
+ // SB hotmail returns a OU-001 if you're on their blocklist
+ '550 SC-00' => '5.7.1',
+ // SB hotmail returns a SC-00x if you're on their blocklist
+ '550 DY-00' => '5.7.1',
+ // SB hotmail returns a DY-00x if you're a dynamic IP
+ '554 denied' => '5.7.1',
+ 'You have been blocked by the recipient' => '5.7.1',
+ 'requires that you verify' => '5.7.1',
+ 'Access denied' => '5.7.1',
+ 'Administrative prohibition - unable to validate recipient' => '5.7.1',
+ 'Blacklisted' => '5.7.1',
+ 'blocke?d? for spam' => '5.7.1',
+ 'conection refused' => '5.7.1',
+ 'Connection refused due to abuse' => '5.7.1',
+ 'dial-up or dynamic-ip denied' => '5.7.1',
+ 'Domain has received too many bounces' => '5.7.1',
+ 'failed several antispam checks' => '5.7.1',
+ 'found in a DNS blacklist' => '5.7.1',
+ 'IPs blocked' => '5.7.1',
+ 'is blocked by' => '5.7.1',
+ 'Mail Refused' => '5.7.1',
+ 'Message does not pass DomainKeys' => '5.7.1',
+ 'Message looks like spam' => '5.7.1',
+ 'Message refused by' => '5.7.1',
+ 'not allowed access from your location' => '5.7.1',
+ 'permanently deferred' => '5.7.1',
+ 'Rejected by policy' => '5.7.1',
+ 'rejected by Windows Live Hotmail for policy reasons' => '5.7.1',
+ 'Rejected for policy reasons' => '5.7.1',
+ 'Rejecting banned content' => '5.7.1',
+ 'Sorry, looks like spam' => '5.7.1',
+ 'spam message discarded' => '5.7.1',
+ 'Too many spams from your IP' => '5.7.1',
+ 'TRANSACTION FAILED' => '5.7.1',
+ 'Transaction rejected' => '5.7.1',
+ 'Wiadomosc zostala odrzucona przez system antyspamowy' => '5.7.1',
+ // .PL rejected as spam
+ 'Your message was declared Spam' => '5.7.1'
);
-# triggers for autoresponders
+// triggers for autoresponders
$autorespondlist = array(
- '^\[?auto.{0,20}reply\]?',
- '^auto[ -]?response',
- '^Yahoo! auto response',
- '^Thank you for your email\.',
- '^Vacation.{0,20}(reply|respon)',
+ 'auto:',
+ '^away from.{0,15}office',
+ '^.?auto(mated|matic).{0,5}(reply|response)',
'^out.?of (the )?office',
- '^(I am|I\'m).{0,20}\s(away|on vacation|on leave|out of office|out of the office)',
- "\350\207\252\345\212\250\345\233\236\345\244\215" #sino.com, 163.com UTF8 encoded
+ '^(I am|I\'m|I will).{0,15}\s(away|on vacation|on leave|out of office|'.
+ 'out of the office)',
+ '^Thank you for your e-?mail',
+ '^This is an automated',
+ '^Vacation.{0,10}(alert|reply|response)',
+ '^Yahoo! auto response',
+ // sino.com, 163.com UTF8 encoded
+ "\350\207\252\345\212\250\345\233\236\345\244\215"
);
-# trigger subject lines for bounces
+// trigger subject lines for bounces
$bouncesubj = array(
'deletver reports about your e?mail',
'delivery errors',
@@ -245,7 +269,7 @@
'delivery status notif',
'failure delivery',
'failure notice',
- 'mail delivery fail', #catches failure and failed
+ 'mail delivery fail', // catches failure and failed
'mail delivery system',
'mailserver notification',
'mail status report',
@@ -254,9 +278,9 @@
'mdaemon notification',
'message delayed',
'nondeliverable mail',
- 'Non[_ ]remis[_ ]', #fr
- 'No[_ ]se[_ ]puede[_ ]entregar', #es
- 'Onbestelbaar', #nl
+ 'Non[_ ]remis[_ ]', // fr
+ 'No[_ ]se[_ ]puede[_ ]entregar', // es
+ 'Onbestelbaar', // nl
'returned e?mail',
'returned to sender',
'returning message to sender',
@@ -266,14 +290,13 @@
'warning: message',
);
-#
-# test mapping to ensure that we don't match one within another
-#
-#foreach ($bouncelist as $l1 => $j) {
-# foreach ($bouncelist as $l2 => $k) {
-# if (($l1 != $l2) && preg_match("/$l1/i", $l2)) {
-# print "'$l1'($j) = '$l2'($k)\n";
-# }
-# }
-#}
-?>
\ No newline at end of file
+//
+// test mapping to ensure that we don't match one within another
+//
+// foreach ($bouncelist as $l1 => $j) {
+// foreach ($bouncelist as $l2 => $k) {
+// if (($l1 != $l2) && preg_match("/$l1/i", $l2)) {
+// print "'$l1'($j) = '$l2'($k)\n";
+// }
+// }
+// }
\ No newline at end of file
diff --git a/bounce_statuscodes.php b/bounce_statuscodes.php
index e5251f5..d83f563 100644
--- a/bounce_statuscodes.php
+++ b/bounce_statuscodes.php
@@ -1,154 +1,680 @@
\ No newline at end of file
+/**
+ * Bounce status codes.
+ *
+ * Auto-generated by Make_statuscodes.php
+ * on 2014-12-29 19:14:24
+ * From the following URLs:
+ * http://www.iana.org/assignments/smtp-enhanced-status-codes/smtp-enhanced-st
+ * atus-codes-1.csv
+ *
+ * http://www.iana.org/assignments/smtp-enhanced-status-codes/smtp-enhanced-st
+ * atus-codes-3.csv
+ *
+ *
+ * PHP version 5
+ *
+ * @category Email
+ * @package BounceHandler
+ * @author Multiple
+ * @license http://opensource.org/licenses/BSD-2-Clause BSD
+ * @link https://github.com/cfortune/PHP-Bounce-Handler/
+ */
+
+// [RFC3463] (Standards track)
+$status_code_classes['2']['title']="Success";
+$status_code_classes['2']['descr']
+ = "Success specifies that the DSN is reporting a positive delivery action. ".
+ "Detail sub-codes may provide notification of transformations required fo".
+ "r delivery.";
+
+// [RFC3463] (Standards track)
+$status_code_classes['4']['title']="Persistent Transient Failure";
+$status_code_classes['4']['descr']
+ = "A persistent transient failure is one in which the message as sent is va".
+ "lid, but persistence of some temporary condition has caused abandonment ".
+ "or delay of attempts to send the message. If this code accompanies a del".
+ "ivery failure report, sending in the future may be successful.";
+
+// [RFC3463] (Standards track)
+$status_code_classes['5']['title']="Permanent Failure";
+$status_code_classes['5']['descr']
+ = "A permanent failure is one which is not likely to be resolved by resendi".
+ "ng the message in the current form. Some change to the message or the de".
+ "stination must be made for successful delivery.";
+
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['0.0']['title']="Other undefined Status";
+$status_code_subclasses['0.0']['descr']
+ = "Other undefined status is the only undefined error code. It should be us".
+ "ed for all errors for which only the class of the error is known.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['1.0']['title']="Other address status";
+$status_code_subclasses['1.0']['descr']
+ = "Something about the address specified in the message caused this DSN.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['1.1']['title']="Bad destination mailbox address";
+$status_code_subclasses['1.1']['descr']
+ = "The mailbox specified in the address does not exist. For Internet mail n".
+ "ames, this means the address portion to the left of the \"@\" sign is in".
+ "valid. This code is only useful for permanent failures.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['1.2']['title']="Bad destination system address";
+$status_code_subclasses['1.2']['descr']
+ = "The destination system specified in the address does not exist or is inc".
+ "apable of accepting mail. For Internet mail names, this means the addres".
+ "s portion to the right of the \"@\" is invalid for mail. This code is on".
+ "ly useful for permanent failures.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['1.3']['title']
+ = "Bad destination mailbox address syntax";
+
+$status_code_subclasses['1.3']['descr']
+ = "The destination address was syntactically invalid. This can apply to any".
+ " field in the address. This code is only useful for permanent failures.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['1.4']['title']
+ = "Destination mailbox address ambiguous";
+
+$status_code_subclasses['1.4']['descr']
+ = "The mailbox address as specified matches one or more recipients on the d".
+ "estination system. This may result if a heuristic address mapping algori".
+ "thm is used to map the specified address to a local mailbox name.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['1.5']['title']="Destination address valid";
+$status_code_subclasses['1.5']['descr']
+ = "This mailbox address as specified was valid. This status code should be ".
+ "used for positive delivery reports.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['1.6']['title']
+ = "Destination mailbox has moved, No forwarding address";
+
+$status_code_subclasses['1.6']['descr']
+ = "The mailbox address provided was at one time valid, but mail is no longe".
+ "r being accepted for that address. This code is only useful for permanen".
+ "t failures.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['1.7']['title']
+ = "Bad sender's mailbox address syntax";
+
+$status_code_subclasses['1.7']['descr']
+ = "The sender's address was syntactically invalid. This can apply to any fi".
+ "eld in the address.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['1.8']['title']="Bad sender's system address";
+$status_code_subclasses['1.8']['descr']
+ = "The sender's system specified in the address does not exist or is incapa".
+ "ble of accepting return mail. For domain names, this means the address p".
+ "ortion to the right of the \"@\" is invalid for mail.";
+
+// [RFC3886] (Standards Track)
+$status_code_subclasses['1.9']['title']
+ = "Message relayed to non-compliant mailer";
+
+$status_code_subclasses['1.9']['descr']
+ = "The mailbox address specified was valid, but the message has been relaye".
+ "d to a system that does not speak this protocol; no further information ".
+ "can be provided.";
+
+// [RFC-ietf-appsawg-nullmx-08] (Standards Track)
+$status_code_subclasses['1.10']['title']="Recipient address has null MX";
+$status_code_subclasses['1.10']['descr']
+ = "This status code is returned when the associated address is marked as in".
+ "valid using a null MX.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['2.0']['title']
+ = "Other or undefined mailbox status";
+
+$status_code_subclasses['2.0']['descr']
+ = "The mailbox exists, but something about the destination mailbox has caus".
+ "ed the sending of this DSN.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['2.1']['title']
+ = "Mailbox disabled, not accepting messages";
+
+$status_code_subclasses['2.1']['descr']
+ = "The mailbox exists, but is not accepting messages. This may be a permane".
+ "nt error if the mailbox will never be re-enabled or a transient error if".
+ " the mailbox is only temporarily disabled.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['2.2']['title']="Mailbox full";
+$status_code_subclasses['2.2']['descr']
+ = "The mailbox is full because the user has exceeded a per-mailbox administ".
+ "rative quota or physical capacity. The general semantics implies that th".
+ "e recipient can delete messages to make more space available. This code ".
+ "should be used as a persistent transient failure.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['2.3']['title']
+ = "Message length exceeds administrative limit";
+
+$status_code_subclasses['2.3']['descr']
+ = "A per-mailbox administrative message length limit has been exceeded. Thi".
+ "s status code should be used when the per-mailbox message length limit i".
+ "s less than the general system limit. This code should be used as a perm".
+ "anent failure.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['2.4']['title']="Mailing list expansion problem";
+$status_code_subclasses['2.4']['descr']
+ = "The mailbox is a mailing list address and the mailing list was unable to".
+ " be expanded. This code may represent a permanent failure or a persisten".
+ "t transient failure.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['3.0']['title']
+ = "Other or undefined mail system status";
+
+$status_code_subclasses['3.0']['descr']
+ = "The destination system exists and normally accepts mail, but something a".
+ "bout the system has caused the generation of this DSN.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['3.1']['title']="Mail system full";
+$status_code_subclasses['3.1']['descr']
+ = "Mail system storage has been exceeded. The general semantics imply that ".
+ "the individual recipient may not be able to delete material to make room".
+ " for additional messages. This is useful only as a persistent transient ".
+ "error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['3.2']['title']
+ = "System not accepting network messages";
+
+$status_code_subclasses['3.2']['descr']
+ = "The host on which the mailbox is resident is not accepting messages. Exa".
+ "mples of such conditions include an immanent shutdown, excessive load, o".
+ "r system maintenance. This is useful for both permanent and persistent t".
+ "ransient errors.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['3.3']['title']
+ = "System not capable of selected features";
+
+$status_code_subclasses['3.3']['descr']
+ = "Selected features specified for the message are not supported by the des".
+ "tination system. This can occur in gateways when features from one domai".
+ "n cannot be mapped onto the supported feature in another.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['3.4']['title']="Message too big for system";
+$status_code_subclasses['3.4']['descr']
+ = "The message is larger than per-message size limit. This limit may either".
+ " be for physical or administrative reasons. This is useful only as a per".
+ "manent error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['3.5']['title']="System incorrectly configured";
+$status_code_subclasses['3.5']['descr']
+ = "The system is not configured in a manner that will permit it to accept t".
+ "his message.";
+
+// [RFC6710] (Standards Track)
+$status_code_subclasses['3.6']['title']="Requested priority was changed";
+$status_code_subclasses['3.6']['descr']
+ = "The message was accepted for relay/delivery, but the requested priority ".
+ "(possibly the implied default) was not honoured. The human readable text".
+ " after the status code contains the new priority, followed by SP (space)".
+ " and explanatory human readable text.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['4.0']['title']
+ = "Other or undefined network or routing status";
+
+$status_code_subclasses['4.0']['descr']
+ = "Something went wrong with the networking, but it is not clear what the p".
+ "roblem is, or the problem cannot be well expressed with any of the other".
+ " provided detail codes.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['4.1']['title']="No answer from host";
+$status_code_subclasses['4.1']['descr']
+ = "The outbound connection attempt was not answered, because either the rem".
+ "ote system was busy, or was unable to take a call. This is useful only a".
+ "s a persistent transient error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['4.2']['title']="Bad connection";
+$status_code_subclasses['4.2']['descr']
+ = "The outbound connection was established, but was unable to complete the ".
+ "message transaction, either because of time-out, or inadequate connectio".
+ "n quality. This is useful only as a persistent transient error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['4.3']['title']="Directory server failure";
+$status_code_subclasses['4.3']['descr']
+ = "The network system was unable to forward the message, because a director".
+ "y server was unavailable. This is useful only as a persistent transient ".
+ "error. The inability to connect to an Internet DNS server is one example".
+ " of the directory server failure error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['4.4']['title']="Unable to route";
+$status_code_subclasses['4.4']['descr']
+ = "The mail system was unable to determine the next hop for the message bec".
+ "ause the necessary routing information was unavailable from the director".
+ "y server. This is useful for both permanent and persistent transient err".
+ "ors. A DNS lookup returning only an SOA (Start of Administration) record".
+ " for a domain name is one example of the unable to route error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['4.5']['title']="Mail system congestion";
+$status_code_subclasses['4.5']['descr']
+ = "The mail system was unable to deliver the message because the mail syste".
+ "m was congested. This is useful only as a persistent transient error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['4.6']['title']="Routing loop detected";
+$status_code_subclasses['4.6']['descr']
+ = "A routing loop caused the message to be forwarded too many times, either".
+ " because of incorrect routing tables or a user- forwarding loop. This is".
+ " useful only as a persistent transient error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['4.7']['title']="Delivery time expired";
+$status_code_subclasses['4.7']['descr']
+ = "The message was considered too old by the rejecting system, either becau".
+ "se it remained on that host too long or because the time-to-live value s".
+ "pecified by the sender of the message was exceeded. If possible, the cod".
+ "e for the actual problem found when delivery was attempted should be ret".
+ "urned rather than this code.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['5.0']['title']
+ = "Other or undefined protocol status";
+
+$status_code_subclasses['5.0']['descr']
+ = "Something was wrong with the protocol necessary to deliver the message t".
+ "o the next hop and the problem cannot be well expressed with any of the ".
+ "other provided detail codes.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['5.1']['title']="Invalid command";
+$status_code_subclasses['5.1']['descr']
+ = "A mail transaction protocol command was issued which was either out of s".
+ "equence or unsupported. This is useful only as a permanent error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['5.2']['title']="Syntax error";
+$status_code_subclasses['5.2']['descr']
+ = "A mail transaction protocol command was issued which could not be interp".
+ "reted, either because the syntax was wrong or the command is unrecognize".
+ "d. This is useful only as a permanent error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['5.3']['title']="Too many recipients";
+$status_code_subclasses['5.3']['descr']
+ = "More recipients were specified for the message than could have been deli".
+ "vered by the protocol. This error should normally result in the segmenta".
+ "tion of the message into two, the remainder of the recipients to be deli".
+ "vered on a subsequent delivery attempt. It is included in this list in t".
+ "he event that such segmentation is not possible.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['5.4']['title']="Invalid command arguments";
+$status_code_subclasses['5.4']['descr']
+ = "A valid mail transaction protocol command was issued with invalid argume".
+ "nts, either because the arguments were out of range or represented unrec".
+ "ognized features. This is useful only as a permanent error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['5.5']['title']="Wrong protocol version";
+$status_code_subclasses['5.5']['descr']
+ = "A protocol version mis-match existed which could not be automatically re".
+ "solved by the communicating parties.";
+
+// [RFC4954] (Standards Track)
+$status_code_subclasses['5.6']['title']
+ = "Authentication Exchange line is too long";
+
+$status_code_subclasses['5.6']['descr']
+ = "This enhanced status code SHOULD be returned when the server fails the A".
+ "UTH command due to the client sending a [BASE64] response which is longe".
+ "r than the maximum buffer size available for the currently selected SASL".
+ " mechanism. This is useful for both permanent and persistent transient e".
+ "rrors.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['6.0']['title']="Other or undefined media error";
+$status_code_subclasses['6.0']['descr']
+ = "Something about the content of a message caused it to be considered unde".
+ "liverable and the problem cannot be well expressed with any of the other".
+ " provided detail codes.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['6.1']['title']="Media not supported";
+$status_code_subclasses['6.1']['descr']
+ = "The media of the message is not supported by either the delivery protoco".
+ "l or the next system in the forwarding path. This is useful only as a pe".
+ "rmanent error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['6.2']['title']
+ = "Conversion required and prohibited";
+
+$status_code_subclasses['6.2']['descr']
+ = "The content of the message must be converted before it can be delivered ".
+ "and such conversion is not permitted. Such prohibitions may be the expre".
+ "ssion of the sender in the message itself or the policy of the sending h".
+ "ost.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['6.3']['title']
+ = "Conversion required but not supported";
+
+$status_code_subclasses['6.3']['descr']
+ = "The message content must be converted in order to be forwarded but such ".
+ "conversion is not possible or is not practical by a host in the forwardi".
+ "ng path. This condition may result when an ESMTP gateway supports 8bit t".
+ "ransport but is not able to downgrade the message to 7 bit as required f".
+ "or the next hop.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['6.4']['title']="Conversion with loss performed";
+$status_code_subclasses['6.4']['descr']
+ = "This is a warning sent to the sender when message delivery was successfu".
+ "lly but when the delivery required a conversion in which some data was l".
+ "ost. This may also be a permanent error if the sender has indicated that".
+ " conversion with loss is prohibited for the message.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['6.5']['title']="Conversion Failed";
+$status_code_subclasses['6.5']['descr']
+ = "A conversion was required but was unsuccessful. This may be useful as a ".
+ "permanent or persistent temporary notification.";
+
+// [RFC4468] (Standards Track)
+$status_code_subclasses['6.6']['title']="Message content not available";
+$status_code_subclasses['6.6']['descr']
+ = "The message content could not be fetched from a remote system. This may ".
+ "be useful as a permanent or persistent temporary notification.";
+
+// [RFC6531] (Standards track)
+$status_code_subclasses['6.7']['title']
+ = "Non-ASCII addresses not permitted for that sender/recipient";
+
+$status_code_subclasses['6.7']['descr']
+ = "This indicates the reception of a MAIL or RCPT command that non-ASCII ad".
+ "dresses are not permitted";
+
+// [RFC6531] (Standards track)
+$status_code_subclasses['6.8']['title']
+ = "UTF-8 string reply is required, but not permitted by the SMTP client";
+
+$status_code_subclasses['6.8']['descr']
+ = "This indicates that a reply containing a UTF-8 string is required to sho".
+ "w the mailbox name, but that form of response is not permitted by the SM".
+ "TP client.";
+
+// [RFC6531] (Standards track)
+$status_code_subclasses['6.9']['title']
+ = "UTF-8 header message cannot be transferred to one or more recipients, so".
+ " the message must be rejected";
+
+$status_code_subclasses['6.9']['descr']
+ = "This indicates that transaction failed after the final \".\" of the DATA".
+ " command.";
+
+// [RFC6531] (Standards track)
+$status_code_subclasses['6.10']['title']="";
+$status_code_subclasses['6.10']['descr']
+ = "This is a duplicate of X.6.8 and is thus deprecated.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['7.0']['title']
+ = "Other or undefined security status";
+
+$status_code_subclasses['7.0']['descr']
+ = "Something related to security caused the message to be returned, and the".
+ " problem cannot be well expressed with any of the other provided detail ".
+ "codes. This status code may also be used when the condition cannot be fu".
+ "rther described because of security policies in force.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['7.1']['title']
+ = "Delivery not authorized, message refused";
+
+$status_code_subclasses['7.1']['descr']
+ = "The sender is not authorized to send to the destination. This can be the".
+ " result of per-host or per-recipient filtering. This memo does not discu".
+ "ss the merits of any such filtering, but provides a mechanism to report ".
+ "such. This is useful only as a permanent error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['7.2']['title']
+ = "Mailing list expansion prohibited";
+
+$status_code_subclasses['7.2']['descr']
+ = "The sender is not authorized to send a message to the intended mailing l".
+ "ist. This is useful only as a permanent error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['7.3']['title']
+ = "Security conversion required but not possible";
+
+$status_code_subclasses['7.3']['descr']
+ = "A conversion from one secure messaging protocol to another was required ".
+ "for delivery and such conversion was not possible. This is useful only a".
+ "s a permanent error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['7.4']['title']="Security features not supported";
+$status_code_subclasses['7.4']['descr']
+ = "A message contained security features such as secure authentication that".
+ " could not be supported on the delivery protocol. This is useful only as".
+ " a permanent error.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['7.5']['title']="Cryptographic failure";
+$status_code_subclasses['7.5']['descr']
+ = "A transport system otherwise authorized to validate or decrypt a message".
+ " in transport was unable to do so because necessary information such as ".
+ "key was not available or such information was invalid.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['7.6']['title']
+ = "Cryptographic algorithm not supported";
+
+$status_code_subclasses['7.6']['descr']
+ = "A transport system otherwise authorized to validate or decrypt a message".
+ " was unable to do so because the necessary algorithm was not supported.";
+
+// [RFC3463] (Standards Track)
+$status_code_subclasses['7.7']['title']="Message integrity failure";
+$status_code_subclasses['7.7']['descr']
+ = "A transport system otherwise authorized to validate a message was unable".
+ " to do so because the message was corrupted or altered. This may be usef".
+ "ul as a permanent, transient persistent, or successful delivery code.";
+
+// [RFC4954] (Standards Track)
+$status_code_subclasses['7.8']['title']
+ = "Authentication credentials invalid";
+
+$status_code_subclasses['7.8']['descr']
+ = "This response to the AUTH command indicates that the authentication fail".
+ "ed due to invalid or insufficient authentication credentials. In this ca".
+ "se, the client SHOULD ask the user to supply new credentials (such as by".
+ " presenting a password dialog box).";
+
+// [RFC4954] (Standards Track)
+$status_code_subclasses['7.9']['title']
+ = "Authentication mechanism is too weak";
+
+$status_code_subclasses['7.9']['descr']
+ = "This response to the AUTH command indicates that the selected authentica".
+ "tion mechanism is weaker than server policy permits for that user. The c".
+ "lient SHOULD retry with a new authentication mechanism.";
+
+// [RFC5248] (Best current practice)
+$status_code_subclasses['7.10']['title']="Encryption Needed";
+$status_code_subclasses['7.10']['descr']
+ = "This indicates that external strong privacy layer is needed in order to ".
+ "use the requested authentication mechanism. This is primarily intended f".
+ "or use with clear text authentication mechanisms. A client which receive".
+ "s this may activate a security layer such as TLS prior to authenticating".
+ ", or attempt to use a stronger mechanism.";
+
+// [RFC4954] (Standards Track)
+$status_code_subclasses['7.11']['title']
+ = "Encryption required for requested authentication mechanism";
+
+$status_code_subclasses['7.11']['descr']
+ = "This response to the AUTH command indicates that the selected authentica".
+ "tion mechanism may only be used when the underlying SMTP connection is e".
+ "ncrypted. Note that this response code is documented here for historical".
+ " purposes only. Modern implementations SHOULD NOT advertise mechanisms t".
+ "hat are not permitted due to lack of encryption, unless an encryption la".
+ "yer of sufficient strength is currently being employed.";
+
+// [RFC4954] (Standards Track)
+$status_code_subclasses['7.12']['title']
+ = "A password transition is needed";
+
+$status_code_subclasses['7.12']['descr']
+ = "This response to the AUTH command indicates that the user needs to trans".
+ "ition to the selected authentication mechanism. This is typically done b".
+ "y authenticating once using the [PLAIN] authentication mechanism. The se".
+ "lected mechanism SHOULD then work for authentications in subsequent sess".
+ "ions.";
+
+// [RFC5248] (Best current practice)
+$status_code_subclasses['7.13']['title']="User Account Disabled";
+$status_code_subclasses['7.13']['descr']
+ = "Sometimes a system administrator will have to disable a user's account (".
+ "e.g., due to lack of payment, abuse, evidence of a break-in attempt, etc".
+ "). This error code occurs after a successful authentication to a disable".
+ "d account. This informs the client that the failure is permanent until t".
+ "he user contacts their system administrator to get the account re-enable".
+ "d. It differs from a generic authentication failure where the client's b".
+ "est option is to present the passphrase entry dialog in case the user si".
+ "mply mistyped their passphrase.";
+
+// [RFC5248] (Best current practice)
+$status_code_subclasses['7.14']['title']="Trust relationship required";
+$status_code_subclasses['7.14']['descr']
+ = "The submission server requires a configured trust relationship with a th".
+ "ird-party server in order to access the message content. This value repl".
+ "aces the prior use of X.7.8 for this error condition. thereby updating [".
+ "RFC4468].";
+
+// [RFC6710] (Standards Track)
+$status_code_subclasses['7.15']['title']="Priority Level is too low";
+$status_code_subclasses['7.15']['descr']
+ = "The specified priority level is below the lowest priority acceptable for".
+ " the receiving SMTP server. This condition might be temporary, for examp".
+ "le the server is operating in a mode where only higher priority messages".
+ " are accepted for transfer and delivery, while lower priority messages a".
+ "re rejected.";
+
+// [RFC6710] (Standards Track)
+$status_code_subclasses['7.16']['title']
+ = "Message is too big for the specified priority";
+
+$status_code_subclasses['7.16']['descr']
+ = "The message is too big for the specified priority. This condition might ".
+ "be temporary, for example the server is operating in a mode where only h".
+ "igher priority messages below certain size are accepted for transfer and".
+ " delivery.";
+
+// [RFC7293] (Standards Track)
+$status_code_subclasses['7.17']['title']="Mailbox owner has changed";
+$status_code_subclasses['7.17']['descr']
+ = "This status code is returned when a message is received with a Require-R".
+ "ecipient-Valid-Since field or RRVS extension and the receiving system is".
+ " able to determine that the intended recipient mailbox has not been unde".
+ "r continuous ownership since the specified date-time.";
+
+// [RFC7293] (Standards Track)
+$status_code_subclasses['7.18']['title']="Domain owner has changed";
+$status_code_subclasses['7.18']['descr']
+ = "This status code is returned when a message is received with a Require-R".
+ "ecipient-Valid-Since field or RRVS extension and the receiving system wi".
+ "shes to disclose that the owner of the domain name of the recipient has ".
+ "changed since the specified date-time.";
+
+// [RFC7293] (Standards Track)
+$status_code_subclasses['7.19']['title']="RRVS test cannot be completed";
+$status_code_subclasses['7.19']['descr']
+ = "This status code is returned when a message is received with a Require-R".
+ "ecipient-Valid-Since field or RRVS extension and the receiving system ca".
+ "nnot complete the requested evaluation because the required timestamp wa".
+ "s not recorded. The message originator needs to decide whether to reissu".
+ "e the message without RRVS protection.";
+
+// [RFC7372] (Standards Track); [RFC6376] (Standards Track)
+$status_code_subclasses['7.20']['title']
+ = "No passing DKIM signature found";
+
+$status_code_subclasses['7.20']['descr']
+ = "This status code is returned when a message did not contain any passing ".
+ "DKIM signatures. (This violates the advice of Section 6.1 of [RFC6376].)";
+
+// [RFC7372] (Standards Track); [RFC6376] (Standards Track)
+$status_code_subclasses['7.21']['title']
+ = "No acceptable DKIM signature found";
+
+$status_code_subclasses['7.21']['descr']
+ = "This status code is returned when a message contains one or more passing".
+ " DKIM signatures, but none are acceptable. (This violates the advice of ".
+ "Section 6.1 of [RFC6376].)";
+
+// [RFC7372] (Standards Track); [RFC6376] (Standards Track)
+$status_code_subclasses['7.22']['title']
+ = "No valid author-matched DKIM signature found";
+
+$status_code_subclasses['7.22']['descr']
+ = "This status code is returned when a message contains one or more passing".
+ " DKIM signatures, but none are acceptable because none have an identifie".
+ "r(s) that matches the author address(es) found in the From header field.".
+ " This is a special case of X.7.21. (This violates the advice of Section ".
+ "6.1 of [RFC6376].)";
+
+// [RFC7372] (Standards Track); [RFC7208] (Standards Track)
+$status_code_subclasses['7.23']['title']="SPF validation failed";
+$status_code_subclasses['7.23']['descr']
+ = "This status code is returned when a message completed an SPF check that ".
+ "produced a \"fail\" result, contrary to local policy requirements. Used ".
+ "in place of 5.7.1 as described in Section 8.4 of [RFC7208].";
+
+// [RFC7372] (Standards Track); [RFC7208] (Standards Track)
+$status_code_subclasses['7.24']['title']="SPF validation error";
+$status_code_subclasses['7.24']['descr']
+ = "This status code is returned when evaluation of SPF relative to an arriv".
+ "ing message resulted in an error. Used in place of 4.4.3 or 5.5.2 as des".
+ "cribed in Sections 8.6 and 8.7 of [RFC7208].";
+
+// [RFC7372] (Standards Track); [Section 3 of RFC7001] (Standards Track)
+$status_code_subclasses['7.25']['title']="Reverse DNS validation failed";
+$status_code_subclasses['7.25']['descr']
+ = "This status code is returned when an SMTP client's IP address failed a r".
+ "everse DNS validation check, contrary to local policy requirements.";
+
+// [RFC7372] (Standards Track)
+$status_code_subclasses['7.26']['title']
+ = "Multiple authentication checks failed";
+
+$status_code_subclasses['7.26']['descr']
+ = "This status code is returned when a message failed more than one message".
+ " authentication check, contrary to local policy requirements. The partic".
+ "ular mechanisms that failed are not specified.";
+
+// [RFC-ietf-appsawg-nullmx-08] (Standards Track)
+$status_code_subclasses['7.27']['title']="Sender address has null MX";
+$status_code_subclasses['7.27']['descr']
+ = "This status code is returned when the associated sender address has a nu".
+ "ll MX, and the SMTP receiver is configured to reject mail from such send".
+ "er (e.g. because it could not return a DSN).";
+
diff --git a/cmdlinetest.php b/cmdlinetest.php
index 1a6459d..8ea9b89 100644
--- a/cmdlinetest.php
+++ b/cmdlinetest.php
@@ -1,70 +1,88 @@
+ * @license http://opensource.org/licenses/BSD-2-Clause BSD
+ * @link https://github.com/cfortune/PHP-Bounce-Handler/
+ */
+
+require_once'bounce_driver.class.php';
$total = array();
-function checkmail($email) {
+/**
+ * Check an email.
+ *
+ * @param string $email Contents of an email to check
+ *
+ * @return void
+ */
+function checkmail($email)
+{
global $total;
$bh = new Bouncehandler();
$bounceinfo = $bh->get_the_facts($email);
-# var_dump($bounceinfo);
-# var_dump($bh);
- print "TYPE ". @$bh->type. "\n";
+ // var_dump($bounceinfo);
+ // var_dump($bh);
+ print " TYPE " . @$bh->type . "\n";
if ($bh->type == 'bounce') {
- print "ACTION ". $bounceinfo[0]['action']. "\n";
- print "STATUS ". $bounceinfo[0]['status']. "\n";
- print "RECIPIENT ". $bounceinfo[0]['recipient']. "\n";
+ print " ACTION " . $bounceinfo[0]['action'] . "\n";
+ print " STATUS " . $bounceinfo[0]['status'] . "\n";
+ print " RECIPIENT " . $bounceinfo[0]['recipient'] . "\n";
}
if ($bh->type == 'fbl') {
- print "ENV FROM ". @$bh->fbl_hash['Original-mail-from']. "\n";
- print "AGENT ". @$bh->fbl_hash['User-agent']. "\n";
- print "IP ". @$bh->fbl_hash['Source-ip']. "\n";
+ print " ENV FROM " . @$bh->fbl_hash['Original-mail-from'] . "\n";
+ print " AGENT " . @$bh->fbl_hash['User-agent'] . "\n";
+ print " IP " . @$bh->fbl_hash['Source-ip'] . "\n";
}
if ($bh->type == 'autoresponse') {
- print "AUTO ". $bounceinfo[0]['autoresponse']. "\n";
+ print " AUTO " . $bounceinfo[0]['autoresponse'] . "\n";
+ }
+ if ($bh->type) {
+ @$total[$bh->type]++;
+ } else {
+ @$total['unknown']++;
}
- if ($bh->type)
- @$total[$bh->type]++;
- else
- @$total['unknown']++;
print "\n";
}
-
if (defined('STDIN')) {
if (count($argv) > 1) {
for ($i = 1; $i < count($argv); $i++) {
if (is_dir($argv[$i])) {
$dh = opendir($argv[$i]);
while ($fn = readdir($dh)) {
- if (substr($fn,0,1) !== '.') {
- $email = file_get_contents($argv[$i].'/'.$fn);
- print $argv[1]."/$fn\n";
+ if (substr($fn, 0, 1) !== '.') {
+ $email = file_get_contents($argv[$i] . '/' . $fn);
+ print $argv[$i] . "/$fn\n";
checkmail($email);
}
}
- }
- else {
+ closedir($dh);
+ } else {
$email = file_get_contents($argv[$i]);
- print $argv[1]."\n";
+ print $argv[$i] . "\n";
checkmail($email);
}
}
- foreach ($total as $k => $v) {
- print "$k = $v\n";
- }
-
- }
- else {
- $handle = fopen("php://stdin","r");
+
+
+ } else {
+ $handle = fopen("php://stdin", "r");
$email = stream_get_contents($handle);
fclose($handle);
checkmail($email);
}
+ /**
+ * Now show the results
+ */
foreach ($total as $t => $v) {
printf("%-15s %6d\n", $t, $v);
}
}
-
-?>
diff --git a/eml/1.eml b/eml/1.eml
index eb10491..a7e2621 100644
--- a/eml/1.eml
+++ b/eml/1.eml
@@ -18,7 +18,7 @@ Subject: failure notice
(postino9.prima.com.ar)
Su mensaje no pudo ser entregado - Sua mensagem nao pode ser enviada - Your message could not be delivered.
-:
+:
Sorry, no mailbox here by that name. (#5.1.1)
--- Mensaje original adjunto.
@@ -33,8 +33,8 @@ Received: from unknown (HELO ar2.outmailing.net) (200.68.65.111)
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gec0w-0003Qy-39
- for somat@ciudad.com.ar; Mon, 30 Oct 2006 15:37:38 -0300
-To: somat@ciudad.com.ar
+ for somat@example.com; Mon, 30 Oct 2006 15:37:38 -0300
+To: somat@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
diff --git a/eml/10.eml b/eml/10.eml
index a289bdd..3fa2964 100644
--- a/eml/10.eml
+++ b/eml/10.eml
@@ -1,20 +1,20 @@
Return-path: <>
Envelope-to: ar1@ar1.outmailing.com
Delivery-date: Mon, 30 Oct 2006 15:50:05 -0300
-Received: from bay0-omc3-s35.bay0.hotmail.com ([65.54.246.235])
+Received: from bay0-omc3-s35.bay0.example.com ([65.54.246.235])
by ar2.outmailing.net with esmtp (Exim 4.60)
id 1GecCx-0003ye-8o
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:50:04 -0300
-Received: from bay0-mc7-f18.bay0.hotmail.com ([65.54.244.218]) by bay0-omc3-s35.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830);
+Received: from bay0-mc7-f18.bay0.example.com ([65.54.244.218]) by bay0-omc3-s35.bay0.example.com with Microsoft SMTPSVC(6.0.3790.1830);
Mon, 30 Oct 2006 10:52:52 -0800
-From: postmaster@hotmail.com
+From: postmaster@example.com
To: ar1@ar1.outmailing.com
Date: Mon, 30 Oct 2006 10:52:47 -0800
MIME-Version: 1.0
Content-Type: multipart/report; report-type=delivery-status;
boundary="9B095B5ADSN=_01C6F92BD900B51000064DEEbay0?mc7?f18.bay"
X-DSNContext: 335a7efd - 4480 - 00000001 - 80040546
-Message-ID: <3WYIgoFT30004b804@bay0-mc7-f18.bay0.hotmail.com>
+Message-ID: <3WYIgoFT30004b804@bay0-mc7-f18.bay0.example.com>
Subject: Delivery Status Notification (Failure)
X-OriginalArrivalTime: 30 Oct 2006 18:52:52.0619 (UTC) FILETIME=[9A804DB0:01C6FC54]
@@ -25,13 +25,13 @@ This is an automatically generated Delivery Status Notification.
Delivery to the following recipients failed.
- animecox_x@hotmail.com
+ animecox_x@example.com
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
@@ -40,11 +40,11 @@ http://www.nod32.com
--9B095B5ADSN=_01C6F92BD900B51000064DEEbay0?mc7?f18.bay
Content-Type: message/delivery-status
-Reporting-MTA: dns;bay0-mc7-f18.bay0.hotmail.com
+Reporting-MTA: dns;bay0-mc7-f18.bay0.example.com
Received-From-MTA: dns;ar2.outmailing.net
Arrival-Date: Mon, 30 Oct 2006 10:52:43 -0800
-Final-Recipient: rfc822;animecox_x@hotmail.com
+Final-Recipient: rfc822;animecox_x@example.com
Action: failed
Status: 5.5.0
Diagnostic-Code: smtp;550 Requested action not taken: mailbox unavailable (1171782072:1364:-2147467259)
@@ -52,20 +52,20 @@ Diagnostic-Code: smtp;550 Requested action not taken: mailbox unavailable (11717
--9B095B5ADSN=_01C6F92BD900B51000064DEEbay0?mc7?f18.bay
Content-Type: message/rfc822
-Received: from ar2.outmailing.net ([200.68.65.111]) by bay0-mc7-f18.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444);
+Received: from ar2.outmailing.net ([200.68.65.111]) by bay0-mc7-f18.bay0.example.com with Microsoft SMTPSVC(6.0.3790.2444);
Mon, 30 Oct 2006 10:52:43 -0800
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecCV-0003uA-8P
- for animecox_x@hotmail.com; Mon, 30 Oct 2006 15:49:35 -0300
-To: animecox_x@hotmail.com
+ for animecox_x@example.com; Mon, 30 Oct 2006 15:49:35 -0300
+To: animecox_x@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:49:35 -0300
Date: Mon, 30 Oct 2006 15:49:35 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID:
X-Priority: 3
X-Mailer: AC Mailer
@@ -76,7 +76,7 @@ Content-Type: text/html; charset="utf-8"
Return-Path: ar1@ar1.outmailing.com
X-OriginalArrivalTime: 30 Oct 2006 18:52:44.0331 (UTC) FILETIME=[958FA7B0:01C6FC54]
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- anitaculiyas@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx3.hotmail.com [65.54.244.200]: 550 Requested action not taken:
+ anitaculiyas@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx3.example.com [65.54.244.200]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecCb-0003uv-0n
- for anitaculiyas@hotmail.com; Mon, 30 Oct 2006 15:49:41 -0300
-To: anitaculiyas@hotmail.com
+ for anitaculiyas@example.com; Mon, 30 Oct 2006 15:49:41 -0300
+To: anitaculiyas@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:49:41 -0300
Date: Mon, 30 Oct 2006 15:49:41 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID:
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/12.eml b/eml/12.eml
index bd93151..1ccde3c 100644
--- a/eml/12.eml
+++ b/eml/12.eml
@@ -46,7 +46,7 @@ Your message cannot be delivered to the following recipients:
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
@@ -90,7 +90,7 @@ Date: Mon, 30 Oct 2006 15:48:33 -0300
From: Green Land Irish Pub
Subject: {posible spam} Eventos de La semana
To: andressaravia@fibertel.com.ar
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-id:
MIME-version: 1.0
X-Mailer: AC Mailer
@@ -104,7 +104,7 @@ X-Fib-Al: noav
X-Fib-Al-SA: analyzed
X-Fib-Al-From: ar1@ar1.outmailing.com
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <2207490767fb7d0cded8ef919eae80ea@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -43,7 +43,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/14.eml b/eml/14.eml
index 41d052f..ddc2959 100644
--- a/eml/14.eml
+++ b/eml/14.eml
@@ -36,7 +36,7 @@ Received: from mailer
Mon, 30 Oct 2006 15:49:33 -0300
Date: Mon, 30 Oct 2006 15:49:33 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <10404d5c135eef6c81fea8fd1f17a5ed@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/15.eml b/eml/15.eml
index c419e41..5d4932f 100644
--- a/eml/15.eml
+++ b/eml/15.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:49:35 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecCU-0003u1-Ai
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:49:34 -0300
-X-Failed-Recipients: anibalferreyra@hotmail.com
+X-Failed-Recipients: anibalferreyra@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- anibalferreyra@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx3.hotmail.com [65.54.244.200]: 550 Requested action not taken:
+ anibalferreyra@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx3.example.com [65.54.244.200]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecCL-0003sY-8t
- for anibalferreyra@hotmail.com; Mon, 30 Oct 2006 15:49:25 -0300
-To: anibalferreyra@hotmail.com
+ for anibalferreyra@example.com; Mon, 30 Oct 2006 15:49:25 -0300
+To: anibalferreyra@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:49:25 -0300
Date: Mon, 30 Oct 2006 15:49:25 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <71ae2746cab2e05c65ef42f266d0195f@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/16.eml b/eml/16.eml
index 7ca2cb2..1225b1d 100644
--- a/eml/16.eml
+++ b/eml/16.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:49:33 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecCQ-0003tj-Kj
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:49:31 -0300
-X-Failed-Recipients: angel_benitezcollante@hotmail.com
+X-Failed-Recipients: angel_benitezcollante@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- angel_benitezcollante@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx3.hotmail.com [65.54.244.200]: 550 Requested action not taken:
+ angel_benitezcollante@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx3.example.com [65.54.244.200]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecBj-0003mH-KX
- for angel_benitezcollante@hotmail.com; Mon, 30 Oct 2006 15:48:47 -0300
-To: angel_benitezcollante@hotmail.com
+ for angel_benitezcollante@example.com; Mon, 30 Oct 2006 15:48:47 -0300
+To: angel_benitezcollante@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:48:47 -0300
Date: Mon, 30 Oct 2006 15:48:47 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <736a009cacf00831679d5cf6e8b9e6e8@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/17.eml b/eml/17.eml
index 9adf9f0..cb08cf3 100644
--- a/eml/17.eml
+++ b/eml/17.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:49:30 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecCO-0003tM-QJ
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:49:28 -0300
-X-Failed-Recipients: angelasalgado38@hotmail.com
+X-Failed-Recipients: angelasalgado38@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- angelasalgado38@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx3.hotmail.com [65.54.244.200]: 550 Requested action not taken:
+ angelasalgado38@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx3.example.com [65.54.244.200]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecBk-0003me-QC
- for angelasalgado38@hotmail.com; Mon, 30 Oct 2006 15:48:48 -0300
-To: angelasalgado38@hotmail.com
+ for angelasalgado38@example.com; Mon, 30 Oct 2006 15:48:48 -0300
+To: angelasalgado38@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:48:48 -0300
Date: Mon, 30 Oct 2006 15:48:48 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID:
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/18.eml b/eml/18.eml
index 26acc98..7b7c001 100644
--- a/eml/18.eml
+++ b/eml/18.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:49:23 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecCI-0003s1-Vq
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:49:23 -0300
-X-Failed-Recipients: angus20@hotmail.com
+X-Failed-Recipients: angus20@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- angus20@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx3.hotmail.com [65.54.244.200]: 550 Requested action not taken:
+ angus20@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx3.example.com [65.54.244.200]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecCD-0003rB-TC
- for angus20@hotmail.com; Mon, 30 Oct 2006 15:49:17 -0300
-To: angus20@hotmail.com
+ for angus20@example.com; Mon, 30 Oct 2006 15:49:17 -0300
+To: angus20@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:49:17 -0300
Date: Mon, 30 Oct 2006 15:49:17 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <4b4ba8211bea9efde4fdf8d2f9156c7d@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/19.eml b/eml/19.eml
index 38f41f7..29c7e3d 100644
--- a/eml/19.eml
+++ b/eml/19.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:49:20 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecCF-0003rV-Av
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:49:19 -0300
-X-Failed-Recipients: angelmarianog21@hotmail.com
+X-Failed-Recipients: angelmarianog21@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- angelmarianog21@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx3.hotmail.com [65.54.244.200]: 550 Requested action not taken:
+ angelmarianog21@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx3.example.com [65.54.244.200]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecC4-0003py-K7
- for angelmarianog21@hotmail.com; Mon, 30 Oct 2006 15:49:08 -0300
-To: angelmarianog21@hotmail.com
+ for angelmarianog21@example.com; Mon, 30 Oct 2006 15:49:08 -0300
+To: angelmarianog21@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:49:08 -0300
Date: Mon, 30 Oct 2006 15:49:08 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <4595b4be894c2b68c38983b38cf8f981@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/2.eml b/eml/2.eml
index abac5dc..31afb78 100644
--- a/eml/2.eml
+++ b/eml/2.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:51:00 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecDr-00045p-PO
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:51:00 -0300
-X-Failed-Recipients: aranoe22@hotmail.com
+X-Failed-Recipients: aranoe22@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- aranoe22@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx4.hotmail.com [65.54.245.104]: 550 Requested action not taken:
+ aranoe22@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx4.example.com [65.54.245.104]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecDl-00044w-Vy
- for aranoe22@hotmail.com; Mon, 30 Oct 2006 15:50:54 -0300
-To: aranoe22@hotmail.com
+ for aranoe22@example.com; Mon, 30 Oct 2006 15:50:54 -0300
+To: aranoe22@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:50:53 -0300
Date: Mon, 30 Oct 2006 15:50:53 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <5c82bbb2da910ac3d1ba2f69bce7aee2@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/20.eml b/eml/20.eml
index 29319f5..ee11422 100644
--- a/eml/20.eml
+++ b/eml/20.eml
@@ -1,20 +1,20 @@
Return-path: <>
Envelope-to: ar1@ar1.outmailing.com
Delivery-date: Mon, 30 Oct 2006 15:49:04 -0300
-Received: from bay0-omc3-s17.bay0.hotmail.com ([65.54.246.217])
+Received: from bay0-omc3-s17.bay0.example.com ([65.54.246.217])
by ar2.outmailing.net with esmtp (Exim 4.60)
id 1GecBy-0003oz-4B
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:49:03 -0300
-Received: from bay0-mc6-f2.bay0.hotmail.com ([65.54.244.170]) by bay0-omc3-s17.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830);
+Received: from bay0-mc6-f2.bay0.example.com ([65.54.244.170]) by bay0-omc3-s17.bay0.example.com with Microsoft SMTPSVC(6.0.3790.1830);
Mon, 30 Oct 2006 10:51:49 -0800
-From: postmaster@hotmail.com
+From: postmaster@example.com
To: ar1@ar1.outmailing.com
Date: Mon, 30 Oct 2006 10:51:49 -0800
MIME-Version: 1.0
Content-Type: multipart/report; report-type=delivery-status;
boundary="9B095B5ADSN=_01C6F921403F11F000066E9Dbay0?mc6?f2.bay0"
X-DSNContext: 335a7efd - 4480 - 00000001 - 80040546
-Message-ID: <5iMaUfOIm0004d90a@bay0-mc6-f2.bay0.hotmail.com>
+Message-ID: <5iMaUfOIm0004d90a@bay0-mc6-f2.bay0.example.com>
Subject: Delivery Status Notification (Failure)
X-OriginalArrivalTime: 30 Oct 2006 18:51:49.0978 (UTC) FILETIME=[752A0BA0:01C6FC54]
@@ -25,13 +25,13 @@ This is an automatically generated Delivery Status Notification.
Delivery to the following recipients failed.
- angelica_maco@hotmail.com
+ angelica_maco@example.com
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
@@ -40,11 +40,11 @@ http://www.nod32.com
--9B095B5ADSN=_01C6F921403F11F000066E9Dbay0?mc6?f2.bay0
Content-Type: message/delivery-status
-Reporting-MTA: dns;bay0-mc6-f2.bay0.hotmail.com
+Reporting-MTA: dns;bay0-mc6-f2.bay0.example.com
Received-From-MTA: dns;ar2.outmailing.net
Arrival-Date: Mon, 30 Oct 2006 10:51:48 -0800
-Final-Recipient: rfc822;angelica_maco@hotmail.com
+Final-Recipient: rfc822;angelica_maco@example.com
Action: failed
Status: 5.5.0
Diagnostic-Code: smtp;550 Requested action not taken: mailbox unavailable (1171782072:1364:-2147467259)
@@ -52,20 +52,20 @@ Diagnostic-Code: smtp;550 Requested action not taken: mailbox unavailable (11717
--9B095B5ADSN=_01C6F921403F11F000066E9Dbay0?mc6?f2.bay0
Content-Type: message/rfc822
-Received: from ar2.outmailing.net ([200.68.65.111]) by bay0-mc6-f2.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444);
+Received: from ar2.outmailing.net ([200.68.65.111]) by bay0-mc6-f2.bay0.example.com with Microsoft SMTPSVC(6.0.3790.2444);
Mon, 30 Oct 2006 10:51:48 -0800
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecBs-0003oU-VT
- for angelica_maco@hotmail.com; Mon, 30 Oct 2006 15:48:57 -0300
-To: angelica_maco@hotmail.com
+ for angelica_maco@example.com; Mon, 30 Oct 2006 15:48:57 -0300
+To: angelica_maco@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:48:56 -0300
Date: Mon, 30 Oct 2006 15:48:56 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID:
X-Priority: 3
X-Mailer: AC Mailer
@@ -76,7 +76,7 @@ Content-Type: text/html; charset="utf-8"
Return-Path: ar1@ar1.outmailing.com
X-OriginalArrivalTime: 30 Oct 2006 18:51:49.0421 (UTC) FILETIME=[74D50DD0:01C6FC54]
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- angelferchu@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.168]: 550 Requested action not taken:
+ angelferchu@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.168]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecBr-0003oJ-NG
- for angelferchu@hotmail.com; Mon, 30 Oct 2006 15:48:55 -0300
-To: angelferchu@hotmail.com
+ for angelferchu@example.com; Mon, 30 Oct 2006 15:48:55 -0300
+To: angelferchu@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:48:55 -0300
Date: Mon, 30 Oct 2006 15:48:55 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID:
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/22.eml b/eml/22.eml
index bd200e9..afbf0a6 100644
--- a/eml/22.eml
+++ b/eml/22.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:48:52 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecBn-0003nV-DH
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:48:51 -0300
-X-Failed-Recipients: angel_bentezcollante@hotmail.com
+X-Failed-Recipients: angel_bentezcollante@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- angel_bentezcollante@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.168]: 550 Requested action not taken:
+ angel_bentezcollante@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.168]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecBj-0003mK-NH
- for angel_bentezcollante@hotmail.com; Mon, 30 Oct 2006 15:48:47 -0300
-To: angel_bentezcollante@hotmail.com
+ for angel_bentezcollante@example.com; Mon, 30 Oct 2006 15:48:47 -0300
+To: angel_bentezcollante@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:48:47 -0300
Date: Mon, 30 Oct 2006 15:48:47 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID:
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/23.eml b/eml/23.eml
index fa089ff..a09009c 100644
--- a/eml/23.eml
+++ b/eml/23.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:48:51 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecBm-0003nN-Fc
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:48:50 -0300
-X-Failed-Recipients: angel.sedm@hotmail.com
+X-Failed-Recipients: angel.sedm@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- angel.sedm@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.168]: 550 Requested action not taken:
+ angel.sedm@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.168]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecBf-0003lt-Jm
- for angel.sedm@hotmail.com; Mon, 30 Oct 2006 15:48:43 -0300
-To: angel.sedm@hotmail.com
+ for angel.sedm@example.com; Mon, 30 Oct 2006 15:48:43 -0300
+To: angel.sedm@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:48:43 -0300
Date: Mon, 30 Oct 2006 15:48:43 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <1338036154134bcb47f7528f74cb775b@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/24.eml b/eml/24.eml
index bdab1b7..b9fb725 100644
--- a/eml/24.eml
+++ b/eml/24.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:48:51 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecBm-0003nU-TT
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:48:51 -0300
-X-Failed-Recipients: angelclandestina@hotmail.com
+X-Failed-Recipients: angelclandestina@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- angelclandestina@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.168]: 550 Requested action not taken:
+ angelclandestina@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.168]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecBl-0003my-GF
- for angelclandestina@hotmail.com; Mon, 30 Oct 2006 15:48:49 -0300
-To: angelclandestina@hotmail.com
+ for angelclandestina@example.com; Mon, 30 Oct 2006 15:48:49 -0300
+To: angelclandestina@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:48:49 -0300
Date: Mon, 30 Oct 2006 15:48:49 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <6a1934ccd8a7fc1ad0c7950f677d6111@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/25.eml b/eml/25.eml
index b91ce75..395c802 100644
--- a/eml/25.eml
+++ b/eml/25.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:48:28 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecBP-0003j6-Qr
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:48:27 -0300
-X-Failed-Recipients: andrepardo@hotmail.com
+X-Failed-Recipients: andrepardo@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- andrepardo@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx4.hotmail.com [65.54.244.232]: 550 Requested action not taken:
+ andrepardo@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx4.example.com [65.54.244.232]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecBE-0003hJ-Mz
- for andrepardo@hotmail.com; Mon, 30 Oct 2006 15:48:16 -0300
-To: andrepardo@hotmail.com
+ for andrepardo@example.com; Mon, 30 Oct 2006 15:48:16 -0300
+To: andrepardo@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:48:16 -0300
Date: Mon, 30 Oct 2006 15:48:16 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <1a3eee05847c6e77b2da19fa63f51498@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/26.eml b/eml/26.eml
index 0ef67c6..52027f4 100644
--- a/eml/26.eml
+++ b/eml/26.eml
@@ -18,7 +18,7 @@ Subject: failure notice
(postino11.prima.com.ar)
Su mensaje no pudo ser entregado - Sua mensagem nao pode ser enviada - Your message could not be delivered.
-:
+:
Mailbox quota usage exceeded. Espacio en casilla de mail agotado.
--- Mensaje original adjunto.
@@ -33,15 +33,15 @@ Received: from unknown (HELO ar2.outmailing.net) (200.68.65.111)
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecBG-0003hg-IF
- for andres_ferrero@ciudad.com.ar; Mon, 30 Oct 2006 15:48:18 -0300
-To: andres_ferrero@ciudad.com.ar
+ for andres_ferrero@example.com; Mon, 30 Oct 2006 15:48:18 -0300
+To: andres_ferrero@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:48:18 -0300
Date: Mon, 30 Oct 2006 15:48:18 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <8b4ded0ce2ffb4f06b93347f80b9e5ff@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -50,7 +50,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
26- Andrés Rodríguez (jazmitan@wmega.es)28- Rosa Gómez (secretaria@dnmargentina.org)
28- Dana Pelozo (danalucky_90@hotmail.com)
+FONT-FAMILY: Arial">28- Dana Pelozo (danalucky_90@example.com)
29- Viviana Pelozo (vivi2910@hotmail.com)
+FONT-FAMILY: Arial">29- Viviana Pelozo (vivi2910@example.com)
30- Teresa Rodríguez (amaroyteresa@hotmail.com)
+FONT-FAMILY: Arial">30- Teresa Rodríguez (amaroyteresa@example.com)
Esto es una síntesis de la
@@ -293,7 +293,7 @@ href="mailto:claudio@coquet.f9.co.uk">
height="1" border="0">
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/3.eml b/eml/3.eml
index 2c603b6..6e9ca36 100644
--- a/eml/3.eml
+++ b/eml/3.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:50:51 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecDi-00044n-MT
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:50:50 -0300
-X-Failed-Recipients: araceliceleste@hotmail.com
+X-Failed-Recipients: araceliceleste@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- araceliceleste@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx4.hotmail.com [65.54.245.104]: 550 Requested action not taken:
+ araceliceleste@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx4.example.com [65.54.245.104]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecDa-00043t-Va
- for araceliceleste@hotmail.com; Mon, 30 Oct 2006 15:50:43 -0300
-To: araceliceleste@hotmail.com
+ for araceliceleste@example.com; Mon, 30 Oct 2006 15:50:43 -0300
+To: araceliceleste@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:50:42 -0300
Date: Mon, 30 Oct 2006 15:50:42 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID:
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/30.eml b/eml/30.eml
index 66ee965..81f9580 100644
--- a/eml/30.eml
+++ b/eml/30.eml
@@ -18,7 +18,7 @@ Subject: failure notice
(postino7.prima.com.ar)
Su mensaje no pudo ser entregado - Sua mensagem nao pode ser enviada - Your message could not be delivered.
-:
+:
Mailbox quota usage exceeded. Espacio en casilla de mail agotado.
--- Mensaje original adjunto.
@@ -33,8 +33,8 @@ Received: from unknown (HELO ar2.outmailing.net) (200.68.65.111)
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GebrC-0002ka-OA
- for rodatri@ciudad.com.ar; Mon, 30 Oct 2006 15:27:35 -0300
-To: rodatri@ciudad.com.ar
+ for rodatri@example.com; Mon, 30 Oct 2006 15:27:35 -0300
+To: rodatri@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
diff --git a/eml/31.eml b/eml/31.eml
index efba24b..5983aeb 100644
--- a/eml/31.eml
+++ b/eml/31.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:38:36 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gec1s-0003VJ-4A
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:38:36 -0300
-X-Failed-Recipients: solperleov@hotmail.com
+X-Failed-Recipients: solperleov@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- solperleov@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx4.hotmail.com [65.54.244.104]: 550 Requested action not taken:
+ solperleov@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx4.example.com [65.54.244.104]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,8 +28,8 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gec0r-0003QQ-7j
- for solperleov@hotmail.com; Mon, 30 Oct 2006 15:37:33 -0300
-To: solperleov@hotmail.com
+ for solperleov@example.com; Mon, 30 Oct 2006 15:37:33 -0300
+To: solperleov@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
@@ -710,7 +710,7 @@ border="0">
--b1_689baba236404c93be1ed18951dc4a49--
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/33.eml b/eml/33.eml
index b76901a..e16f5dc 100644
--- a/eml/33.eml
+++ b/eml/33.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:38:36 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gec1r-0003VC-T2
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:38:35 -0300
-X-Failed-Recipients: soniabeaton99@hotmail.com
+X-Failed-Recipients: soniabeaton99@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- soniabeaton99@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx4.hotmail.com [65.54.244.104]: 550 Requested action not taken:
+ soniabeaton99@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx4.example.com [65.54.244.104]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,8 +28,8 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gec0y-0003RF-DU
- for soniabeaton99@hotmail.com; Mon, 30 Oct 2006 15:37:41 -0300
-To: soniabeaton99@hotmail.com
+ for soniabeaton99@example.com; Mon, 30 Oct 2006 15:37:41 -0300
+To: soniabeaton99@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
@@ -710,7 +710,7 @@ border="0">
--b1_10df8f1c571370a288511518aa25c4ef--
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/35.eml b/eml/35.eml
index 391e27a..791add6 100644
--- a/eml/35.eml
+++ b/eml/35.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:37:01 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gec0J-0003NY-Ex
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:37:00 -0300
-X-Failed-Recipients: smaranca@hotmail.com
+X-Failed-Recipients: smaranca@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- smaranca@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx4.hotmail.com [65.54.244.104]: 550 Requested action not taken:
+ smaranca@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx4.example.com [65.54.244.104]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,8 +28,8 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gec0F-0003NA-BQ
- for smaranca@hotmail.com; Mon, 30 Oct 2006 15:36:55 -0300
-To: smaranca@hotmail.com
+ for smaranca@example.com; Mon, 30 Oct 2006 15:36:55 -0300
+To: smaranca@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
@@ -710,7 +710,7 @@ border="0">
--b1_8e1e8023414ef66b4da63a79f2edd9e0--
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/37.eml b/eml/37.eml
index 663d8e7..663cdf0 100644
--- a/eml/37.eml
+++ b/eml/37.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:35:34 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gebyw-0003Ga-1S
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:35:34 -0300
-X-Failed-Recipients: silvanasimkin@hotmail.com
+X-Failed-Recipients: silvanasimkin@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- silvanasimkin@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.40]: 550 Requested action not taken:
+ silvanasimkin@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.40]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,8 +28,8 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gebyt-0003GV-0y
- for silvanasimkin@hotmail.com; Mon, 30 Oct 2006 15:35:31 -0300
-To: silvanasimkin@hotmail.com
+ for silvanasimkin@example.com; Mon, 30 Oct 2006 15:35:31 -0300
+To: silvanasimkin@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
@@ -710,7 +710,7 @@ border="0">
--b1_29d19fd8ce3c39b93d834c840336b983--
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/39.eml b/eml/39.eml
index 5224158..c8ccbe5 100644
--- a/eml/39.eml
+++ b/eml/39.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:35:17 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gebye-0003FM-7z
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:35:16 -0300
-X-Failed-Recipients: silchal@hotmail.com
+X-Failed-Recipients: silchal@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- silchal@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.40]: 550 Requested action not taken:
+ silchal@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.40]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,8 +28,8 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GebyR-0003Eg-Qp
- for silchal@hotmail.com; Mon, 30 Oct 2006 15:35:06 -0300
-To: silchal@hotmail.com
+ for silchal@example.com; Mon, 30 Oct 2006 15:35:06 -0300
+To: silchal@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
@@ -710,7 +710,7 @@ border="0">
--b1_c5484fc459e38837c2abcd31624ee8c3--
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/4.eml b/eml/4.eml
index 279731f..23ea4c6 100644
--- a/eml/4.eml
+++ b/eml/4.eml
@@ -41,7 +41,7 @@ Received: from mailer
Mon, 30 Oct 2006 15:50:42 -0300
Date: Mon, 30 Oct 2006 15:50:42 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <1672dbd6d834b4841b46e13f8268ea18@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -50,7 +50,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
:
+:
Mailbox quota usage exceeded. Espacio en casilla de mail agotado.
--- Mensaje original adjunto.
@@ -33,8 +33,8 @@ Received: from unknown (HELO ar2.outmailing.net) (200.68.65.111)
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gebs5-0002pN-B9
- for rominamontivero@ciudad.com.ar; Mon, 30 Oct 2006 15:28:29 -0300
-To: rominamontivero@ciudad.com.ar
+ for rominamontivero@example.com; Mon, 30 Oct 2006 15:28:29 -0300
+To: rominamontivero@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
diff --git a/eml/48.eml b/eml/48.eml
index e891dab..cccff47 100644
--- a/eml/48.eml
+++ b/eml/48.eml
@@ -18,7 +18,7 @@ Subject: failure notice
(postino9.prima.com.ar)
Su mensaje no pudo ser entregado - Sua mensagem nao pode ser enviada - Your message could not be delivered.
-:
+:
Esta casilla ha expirado por falta de uso.
--- Mensaje original adjunto.
@@ -33,8 +33,8 @@ Received: from unknown (HELO ar2.outmailing.net) (200.68.65.111)
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gebpb-0002e2-Rw
- for qmi@ciudad.com.ar; Mon, 30 Oct 2006 15:25:56 -0300
-To: qmi@ciudad.com.ar
+ for qmi@example.com; Mon, 30 Oct 2006 15:25:56 -0300
+To: qmi@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
diff --git a/eml/49.eml b/eml/49.eml
index c81ec0a..967e066 100644
--- a/eml/49.eml
+++ b/eml/49.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:30:41 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GebuC-00030a-Ko
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:30:41 -0300
-X-Failed-Recipients: andrea77f@hotmail.com
+X-Failed-Recipients: andrea77f@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- andrea77f@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx1.hotmail.com [65.54.244.136]: 550 Requested action not taken:
+ andrea77f@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx1.example.com [65.54.244.136]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GebgX-0001UZ-6F
- for andrea77f@hotmail.com; Mon, 30 Oct 2006 15:16:33 -0300
-To: andrea77f@hotmail.com
+ for andrea77f@example.com; Mon, 30 Oct 2006 15:16:33 -0300
+To: andrea77f@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:16:33 -0300
Date: Mon, 30 Oct 2006 15:16:33 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <0172c50e9dfce460dd182e44aff322a1@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/5.eml b/eml/5.eml
index 757c3c6..5943360 100644
--- a/eml/5.eml
+++ b/eml/5.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:50:25 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GecDI-00041t-ME
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:50:24 -0300
-X-Failed-Recipients: anto_2302@hotmail.com
+X-Failed-Recipients: anto_2302@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- anto_2302@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.245.40]: 550 Requested action not taken:
+ anto_2302@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.245.40]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GecCo-0003xi-Jr
- for anto_2302@hotmail.com; Mon, 30 Oct 2006 15:49:54 -0300
-To: anto_2302@hotmail.com
+ for anto_2302@example.com; Mon, 30 Oct 2006 15:49:54 -0300
+To: anto_2302@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:49:54 -0300
Date: Mon, 30 Oct 2006 15:49:54 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID:
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/50.eml b/eml/50.eml
index 8c78ad5..ba2432f 100644
--- a/eml/50.eml
+++ b/eml/50.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:30:38 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gebu7-000302-Q2
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:30:37 -0300
-X-Failed-Recipients: sabrinablanco05@hotmail.com
+X-Failed-Recipients: sabrinablanco05@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- sabrinablanco05@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx1.hotmail.com [65.54.244.136]: 550 Requested action not taken:
+ sabrinablanco05@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx1.example.com [65.54.244.136]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,8 +28,8 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gebta-0002yU-KH
- for sabrinablanco05@hotmail.com; Mon, 30 Oct 2006 15:30:07 -0300
-To: sabrinablanco05@hotmail.com
+ for sabrinablanco05@example.com; Mon, 30 Oct 2006 15:30:07 -0300
+To: sabrinablanco05@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
@@ -710,7 +710,7 @@ border="0">
--b1_48426c206f52a2f6893ec7886db219c6--
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/51.eml b/eml/51.eml
index 758ab26..b00bbfe 100644
--- a/eml/51.eml
+++ b/eml/51.eml
@@ -1,20 +1,20 @@
Return-path: <>
Envelope-to: ar1@ar1.outmailing.com
Delivery-date: Mon, 30 Oct 2006 15:30:20 -0300
-Received: from bay0-omc3-s27.bay0.hotmail.com ([65.54.246.227])
+Received: from bay0-omc3-s27.bay0.example.com ([65.54.246.227])
by ar2.outmailing.net with esmtp (Exim 4.60)
id 1Gebtq-0002yp-2w
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:30:19 -0300
-Received: from bay0-mc5-f8.bay0.hotmail.com ([65.54.244.144]) by bay0-omc3-s27.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830);
+Received: from bay0-mc5-f8.bay0.example.com ([65.54.244.144]) by bay0-omc3-s27.bay0.example.com with Microsoft SMTPSVC(6.0.3790.1830);
Mon, 30 Oct 2006 10:33:00 -0800
-From: postmaster@hotmail.com
+From: postmaster@example.com
To: ar1@ar1.outmailing.com
Date: Mon, 30 Oct 2006 10:32:59 -0800
MIME-Version: 1.0
Content-Type: multipart/report; report-type=delivery-status;
boundary="9B095B5ADSN=_01C6F919D082E258000716DCbay0?mc5?f8.bay0"
X-DSNContext: 7ce717b1 - 1196 - 00000002 - 00000000
-Message-ID:
+Message-ID:
Subject: Delivery Status Notification (Failure)
X-OriginalArrivalTime: 30 Oct 2006 18:33:00.0629 (UTC) FILETIME=[D4051050:01C6FC51]
@@ -25,13 +25,13 @@ This is an automatically generated Delivery Status Notification.
Delivery to the following recipients failed.
- psd_ami@hotmail.com
+ psd_ami@example.com
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
@@ -40,11 +40,11 @@ http://www.nod32.com
--9B095B5ADSN=_01C6F919D082E258000716DCbay0?mc5?f8.bay0
Content-Type: message/delivery-status
-Reporting-MTA: dns;bay0-mc5-f8.bay0.hotmail.com
+Reporting-MTA: dns;bay0-mc5-f8.bay0.example.com
Received-From-MTA: dns;ar2.outmailing.net
Arrival-Date: Mon, 30 Oct 2006 10:32:51 -0800
-Final-Recipient: rfc822;psd_ami@hotmail.com
+Final-Recipient: rfc822;psd_ami@example.com
Action: failed
Status: 5.2.2
Diagnostic-Code: smtp;552 5.2.2 This message is larger than the current system limit or the recipient's mailbox is full. Create a shorter message body or remove attachments and try sending it again.
@@ -52,13 +52,13 @@ Diagnostic-Code: smtp;552 5.2.2 This message is larger than the current system l
--9B095B5ADSN=_01C6F919D082E258000716DCbay0?mc5?f8.bay0
Content-Type: message/rfc822
-Received: from ar2.outmailing.net ([200.68.65.111]) by bay0-mc5-f8.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444);
+Received: from ar2.outmailing.net ([200.68.65.111]) by bay0-mc5-f8.bay0.example.com with Microsoft SMTPSVC(6.0.3790.2444);
Mon, 30 Oct 2006 10:32:51 -0800
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GebpI-0002d7-2x
- for psd_ami@hotmail.com; Mon, 30 Oct 2006 15:25:36 -0300
-To: psd_ami@hotmail.com
+ for psd_ami@example.com; Mon, 30 Oct 2006 15:25:36 -0300
+To: psd_ami@example.com
Subject: LAST VACANCIES!!!
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
diff --git a/eml/53.eml b/eml/53.eml
index b9e5f43..962715a 100644
--- a/eml/53.eml
+++ b/eml/53.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:13:53 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gebdw-0001GR-U6
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:13:53 -0300
-X-Failed-Recipients: anacheta_7@hotmail.com
+X-Failed-Recipients: anacheta_7@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- anacheta_7@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.40]: 550 Requested action not taken:
+ anacheta_7@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.40]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gebdt-0001Fp-Cc
- for anacheta_7@hotmail.com; Mon, 30 Oct 2006 15:13:49 -0300
-To: anacheta_7@hotmail.com
+ for anacheta_7@example.com; Mon, 30 Oct 2006 15:13:49 -0300
+To: anacheta_7@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:13:49 -0300
Date: Mon, 30 Oct 2006 15:13:49 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <2ba4619941741e066d0d54b3c662e934@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/54.eml b/eml/54.eml
index 71a3034..f32abca 100644
--- a/eml/54.eml
+++ b/eml/54.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:13:51 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gebdu-0001G8-Rm
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:13:50 -0300
-X-Failed-Recipients: ana13_13@hotmail.com
+X-Failed-Recipients: ana13_13@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- ana13_13@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.40]: 550 Requested action not taken:
+ ana13_13@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.40]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gebdg-0001EP-2D
- for ana13_13@hotmail.com; Mon, 30 Oct 2006 15:13:36 -0300
-To: ana13_13@hotmail.com
+ for ana13_13@example.com; Mon, 30 Oct 2006 15:13:36 -0300
+To: ana13_13@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:13:36 -0300
Date: Mon, 30 Oct 2006 15:13:36 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <1e5dd215bf2baaa11465eae6a0552cff@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/55.eml b/eml/55.eml
index ba8a058..fdad837 100644
--- a/eml/55.eml
+++ b/eml/55.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:13:47 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gebdo-0001FN-OG
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:13:45 -0300
-X-Failed-Recipients: anabalbuena@hotmail.com
+X-Failed-Recipients: anabalbuena@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- anabalbuena@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.40]: 550 Requested action not taken:
+ anabalbuena@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.40]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1Gebdg-0001ES-5X
- for anabalbuena@hotmail.com; Mon, 30 Oct 2006 15:13:36 -0300
-To: anabalbuena@hotmail.com
+ for anabalbuena@example.com; Mon, 30 Oct 2006 15:13:36 -0300
+To: anabalbuena@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:13:36 -0300
Date: Mon, 30 Oct 2006 15:13:36 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <540673d2bf7570769192ce6456d1e721@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/56.eml b/eml/56.eml
index 8b185d5..e4d6312 100644
--- a/eml/56.eml
+++ b/eml/56.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:13:32 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1Gebdc-0001Dw-9A
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:13:32 -0300
-X-Failed-Recipients: an_mdq@hotmail.com
+X-Failed-Recipients: an_mdq@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- an_mdq@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.168]: 550 Requested action not taken:
+ an_mdq@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.168]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GebdX-0001DN-6K
- for an_mdq@hotmail.com; Mon, 30 Oct 2006 15:13:27 -0300
-To: an_mdq@hotmail.com
+ for an_mdq@example.com; Mon, 30 Oct 2006 15:13:27 -0300
+To: an_mdq@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:13:27 -0300
Date: Mon, 30 Oct 2006 15:13:27 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <845fb6eb1406c6d140ad17f44d6c9045@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/57.eml b/eml/57.eml
index e843cae..0c68c07 100644
--- a/eml/57.eml
+++ b/eml/57.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:13:27 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GebdV-0001DD-BS
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:13:25 -0300
-X-Failed-Recipients: amoroculto_01@hotmail.com
+X-Failed-Recipients: amoroculto_01@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- amoroculto_01@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx3.hotmail.com [65.54.244.72]: 550 Requested action not taken:
+ amoroculto_01@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx3.example.com [65.54.244.72]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GebdO-0001Ca-Ad
- for amoroculto_01@hotmail.com; Mon, 30 Oct 2006 15:13:18 -0300
-To: amoroculto_01@hotmail.com
+ for amoroculto_01@example.com; Mon, 30 Oct 2006 15:13:18 -0300
+To: amoroculto_01@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:13:18 -0300
Date: Mon, 30 Oct 2006 15:13:18 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <59b155b89d21dd405836b76981398576@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/58.eml b/eml/58.eml
index cc59e02..7b5a2ee 100644
--- a/eml/58.eml
+++ b/eml/58.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:13:17 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GebdM-0001CO-Tw
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:13:17 -0300
-X-Failed-Recipients: aminto1@hotmail.com
+X-Failed-Recipients: aminto1@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- aminto1@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx2.hotmail.com [65.54.244.40]: 550 Requested action not taken:
+ aminto1@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx2.example.com [65.54.244.40]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GebdJ-0001By-SQ
- for aminto1@hotmail.com; Mon, 30 Oct 2006 15:13:14 -0300
-To: aminto1@hotmail.com
+ for aminto1@example.com; Mon, 30 Oct 2006 15:13:14 -0300
+To: aminto1@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:13:13 -0300
Date: Mon, 30 Oct 2006 15:13:13 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: <415251e31f82400974f048bb1e494251@ar1.outmailing.com>
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/59.eml b/eml/59.eml
index a8b5fc9..34ff51a 100644
--- a/eml/59.eml
+++ b/eml/59.eml
@@ -4,7 +4,7 @@ Delivery-date: Mon, 30 Oct 2006 15:13:17 -0300
Received: from mail by ar2.outmailing.net with local (Exim 4.60)
id 1GebdM-0001CH-9f
for ar1@ar1.outmailing.com; Mon, 30 Oct 2006 15:13:16 -0300
-X-Failed-Recipients: aminna_caa@hotmail.com
+X-Failed-Recipients: aminna_caa@example.com
Auto-Submitted: auto-replied
From: Mail Delivery System
To: ar1@ar1.outmailing.com
@@ -17,9 +17,9 @@ This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
- aminna_caa@hotmail.com
- SMTP error from remote mail server after RCPT TO::
- host mx3.hotmail.com [65.54.244.72]: 550 Requested action not taken:
+ aminna_caa@example.com
+ SMTP error from remote mail server after RCPT TO::
+ host mx3.example.com [65.54.244.72]: 550 Requested action not taken:
mailbox unavailable
------ This is a copy of the message, including all the headers. ------
@@ -28,15 +28,15 @@ Return-path:
Received: from apache by ar2.outmailing.net with local (Exim 4.60)
(envelope-from )
id 1GebdI-0001Bp-2a
- for aminna_caa@hotmail.com; Mon, 30 Oct 2006 15:13:12 -0300
-To: aminna_caa@hotmail.com
+ for aminna_caa@example.com; Mon, 30 Oct 2006 15:13:12 -0300
+To: aminna_caa@example.com
Subject: Eventos de La semana
Received: from mailer
by ar1.outmailing.com with HTTP (Mail);
Mon, 30 Oct 2006 15:13:12 -0300
Date: Mon, 30 Oct 2006 15:13:12 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID:
X-Priority: 3
X-Mailer: AC Mailer
@@ -45,7 +45,7 @@ MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="utf-8"
- mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
+ mail($para, $tema, $mensaje, "Content-Type: text/htmlnFrom: Hotmail
src="http://ar1.outmailing.com/admin/images/dattadream/pie.gif" alt="" />
-__________ Información de NOD32, revisión 1.1856 (20061106) __________
+__________ Informaci�n de NOD32, revisi�n 1.1856 (20061106) __________
Este mensaje ha sido analizado con NOD32 antivirus system
http://www.nod32.com
diff --git a/eml/6.eml b/eml/6.eml
index d4d3c90..9809c3d 100644
--- a/eml/6.eml
+++ b/eml/6.eml
@@ -19,7 +19,7 @@ recipients. This is a permanent error. The following address(es) failed:
annyevalente@ig.com.br
SMTP error from remote mail server after RCPT TO::
- host mx.ig.com.br [200.226.132.20]: 554 Usuário Inválido ou Inexistente. Sorry, no mailbox here by that name. (#5.2.1)
+ host mx.ig.com.br [200.226.132.20]: 554 Usu�rio Inv�lido ou Inexistente. Sorry, no mailbox here by that name. (#5.2.1)
------ This is a copy of the message, including all the headers. ------
@@ -35,7 +35,7 @@ Received: from mailer
Mon, 30 Oct 2006 15:49:49 -0300
Date: Mon, 30 Oct 2006 15:49:49 -0300
From: Green Land Irish Pub
-Reply-to: fedecheme@hotmail.com
+Reply-to: fedecheme@example.com
Message-ID: