rack-mail_exception 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +22 -0
- data/LICENSE +20 -0
- data/README.rdoc +38 -0
- data/Rakefile +56 -0
- data/VERSION +1 -0
- data/lib/rack/mail_exception.rb +103 -0
- data/test/helper.rb +13 -0
- data/test/test_rack_mail_exception.rb +93 -0
- data/vendor/mail/.bundle/config +2 -0
- data/vendor/mail/CHANGELOG.rdoc +370 -0
- data/vendor/mail/Dependencies.txt +3 -0
- data/vendor/mail/Gemfile +17 -0
- data/vendor/mail/README.rdoc +572 -0
- data/vendor/mail/ROADMAP +92 -0
- data/vendor/mail/Rakefile +41 -0
- data/vendor/mail/TODO.rdoc +9 -0
- data/vendor/mail/lib/mail.rb +76 -0
- data/vendor/mail/lib/mail/attachments_list.rb +99 -0
- data/vendor/mail/lib/mail/body.rb +287 -0
- data/vendor/mail/lib/mail/configuration.rb +67 -0
- data/vendor/mail/lib/mail/core_extensions/blank.rb +26 -0
- data/vendor/mail/lib/mail/core_extensions/nil.rb +11 -0
- data/vendor/mail/lib/mail/core_extensions/string.rb +27 -0
- data/vendor/mail/lib/mail/elements.rb +14 -0
- data/vendor/mail/lib/mail/elements/address.rb +306 -0
- data/vendor/mail/lib/mail/elements/address_list.rb +74 -0
- data/vendor/mail/lib/mail/elements/content_disposition_element.rb +30 -0
- data/vendor/mail/lib/mail/elements/content_location_element.rb +25 -0
- data/vendor/mail/lib/mail/elements/content_transfer_encoding_element.rb +24 -0
- data/vendor/mail/lib/mail/elements/content_type_element.rb +35 -0
- data/vendor/mail/lib/mail/elements/date_time_element.rb +26 -0
- data/vendor/mail/lib/mail/elements/envelope_from_element.rb +34 -0
- data/vendor/mail/lib/mail/elements/message_ids_element.rb +29 -0
- data/vendor/mail/lib/mail/elements/mime_version_element.rb +26 -0
- data/vendor/mail/lib/mail/elements/phrase_list.rb +21 -0
- data/vendor/mail/lib/mail/elements/received_element.rb +30 -0
- data/vendor/mail/lib/mail/encodings.rb +258 -0
- data/vendor/mail/lib/mail/encodings/7bit.rb +31 -0
- data/vendor/mail/lib/mail/encodings/8bit.rb +31 -0
- data/vendor/mail/lib/mail/encodings/base64.rb +33 -0
- data/vendor/mail/lib/mail/encodings/binary.rb +31 -0
- data/vendor/mail/lib/mail/encodings/quoted_printable.rb +38 -0
- data/vendor/mail/lib/mail/encodings/transfer_encoding.rb +58 -0
- data/vendor/mail/lib/mail/envelope.rb +35 -0
- data/vendor/mail/lib/mail/field.rb +223 -0
- data/vendor/mail/lib/mail/field_list.rb +33 -0
- data/vendor/mail/lib/mail/fields.rb +35 -0
- data/vendor/mail/lib/mail/fields/bcc_field.rb +56 -0
- data/vendor/mail/lib/mail/fields/cc_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/comments_field.rb +41 -0
- data/vendor/mail/lib/mail/fields/common/address_container.rb +16 -0
- data/vendor/mail/lib/mail/fields/common/common_address.rb +125 -0
- data/vendor/mail/lib/mail/fields/common/common_date.rb +42 -0
- data/vendor/mail/lib/mail/fields/common/common_field.rb +50 -0
- data/vendor/mail/lib/mail/fields/common/common_message_id.rb +43 -0
- data/vendor/mail/lib/mail/fields/common/parameter_hash.rb +52 -0
- data/vendor/mail/lib/mail/fields/content_description_field.rb +19 -0
- data/vendor/mail/lib/mail/fields/content_disposition_field.rb +69 -0
- data/vendor/mail/lib/mail/fields/content_id_field.rb +63 -0
- data/vendor/mail/lib/mail/fields/content_location_field.rb +42 -0
- data/vendor/mail/lib/mail/fields/content_transfer_encoding_field.rb +50 -0
- data/vendor/mail/lib/mail/fields/content_type_field.rb +185 -0
- data/vendor/mail/lib/mail/fields/date_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/from_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/in_reply_to_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/keywords_field.rb +44 -0
- data/vendor/mail/lib/mail/fields/message_id_field.rb +83 -0
- data/vendor/mail/lib/mail/fields/mime_version_field.rb +53 -0
- data/vendor/mail/lib/mail/fields/optional_field.rb +13 -0
- data/vendor/mail/lib/mail/fields/received_field.rb +67 -0
- data/vendor/mail/lib/mail/fields/references_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/reply_to_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/resent_bcc_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/resent_cc_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/resent_date_field.rb +35 -0
- data/vendor/mail/lib/mail/fields/resent_from_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/resent_message_id_field.rb +34 -0
- data/vendor/mail/lib/mail/fields/resent_sender_field.rb +62 -0
- data/vendor/mail/lib/mail/fields/resent_to_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/return_path_field.rb +64 -0
- data/vendor/mail/lib/mail/fields/sender_field.rb +67 -0
- data/vendor/mail/lib/mail/fields/structured_field.rb +51 -0
- data/vendor/mail/lib/mail/fields/subject_field.rb +16 -0
- data/vendor/mail/lib/mail/fields/to_field.rb +55 -0
- data/vendor/mail/lib/mail/fields/unstructured_field.rb +166 -0
- data/vendor/mail/lib/mail/header.rb +262 -0
- data/vendor/mail/lib/mail/mail.rb +234 -0
- data/vendor/mail/lib/mail/message.rb +1867 -0
- data/vendor/mail/lib/mail/network.rb +9 -0
- data/vendor/mail/lib/mail/network/delivery_methods/file_delivery.rb +40 -0
- data/vendor/mail/lib/mail/network/delivery_methods/sendmail.rb +62 -0
- data/vendor/mail/lib/mail/network/delivery_methods/smtp.rb +110 -0
- data/vendor/mail/lib/mail/network/delivery_methods/test_mailer.rb +40 -0
- data/vendor/mail/lib/mail/network/retriever_methods/imap.rb +18 -0
- data/vendor/mail/lib/mail/network/retriever_methods/pop3.rb +149 -0
- data/vendor/mail/lib/mail/parsers/address_lists.rb +64 -0
- data/vendor/mail/lib/mail/parsers/address_lists.treetop +19 -0
- data/vendor/mail/lib/mail/parsers/content_disposition.rb +387 -0
- data/vendor/mail/lib/mail/parsers/content_disposition.treetop +46 -0
- data/vendor/mail/lib/mail/parsers/content_location.rb +139 -0
- data/vendor/mail/lib/mail/parsers/content_location.treetop +20 -0
- data/vendor/mail/lib/mail/parsers/content_transfer_encoding.rb +162 -0
- data/vendor/mail/lib/mail/parsers/content_transfer_encoding.treetop +20 -0
- data/vendor/mail/lib/mail/parsers/content_type.rb +539 -0
- data/vendor/mail/lib/mail/parsers/content_type.treetop +58 -0
- data/vendor/mail/lib/mail/parsers/date_time.rb +114 -0
- data/vendor/mail/lib/mail/parsers/date_time.treetop +11 -0
- data/vendor/mail/lib/mail/parsers/envelope_from.rb +194 -0
- data/vendor/mail/lib/mail/parsers/envelope_from.treetop +32 -0
- data/vendor/mail/lib/mail/parsers/message_ids.rb +45 -0
- data/vendor/mail/lib/mail/parsers/message_ids.treetop +15 -0
- data/vendor/mail/lib/mail/parsers/mime_version.rb +144 -0
- data/vendor/mail/lib/mail/parsers/mime_version.treetop +19 -0
- data/vendor/mail/lib/mail/parsers/phrase_lists.rb +45 -0
- data/vendor/mail/lib/mail/parsers/phrase_lists.treetop +15 -0
- data/vendor/mail/lib/mail/parsers/received.rb +71 -0
- data/vendor/mail/lib/mail/parsers/received.treetop +11 -0
- data/vendor/mail/lib/mail/parsers/rfc2045.rb +464 -0
- data/vendor/mail/lib/mail/parsers/rfc2045.treetop +36 -0
- data/vendor/mail/lib/mail/parsers/rfc2822.rb +5318 -0
- data/vendor/mail/lib/mail/parsers/rfc2822.treetop +410 -0
- data/vendor/mail/lib/mail/parsers/rfc2822_obsolete.rb +3757 -0
- data/vendor/mail/lib/mail/parsers/rfc2822_obsolete.treetop +241 -0
- data/vendor/mail/lib/mail/part.rb +102 -0
- data/vendor/mail/lib/mail/parts_list.rb +34 -0
- data/vendor/mail/lib/mail/patterns.rb +30 -0
- data/vendor/mail/lib/mail/utilities.rb +181 -0
- data/vendor/mail/lib/mail/version.rb +10 -0
- data/vendor/mail/lib/mail/version_specific/ruby_1_8.rb +97 -0
- data/vendor/mail/lib/mail/version_specific/ruby_1_9.rb +87 -0
- data/vendor/mail/lib/tasks/corpus.rake +125 -0
- data/vendor/mail/lib/tasks/treetop.rake +10 -0
- data/vendor/mail/mail.gemspec +20 -0
- data/vendor/mail/reference/US ASCII Table.txt +130 -0
- data/vendor/mail/reference/rfc1035 Domain Implementation and Specification.txt +3083 -0
- data/vendor/mail/reference/rfc1049 Content-Type Header Field for Internet Messages.txt +451 -0
- data/vendor/mail/reference/rfc1344 Implications of MIME for Internet Mail Gateways.txt +586 -0
- data/vendor/mail/reference/rfc1345 Character Mnemonics & Character Sets.txt +5761 -0
- data/vendor/mail/reference/rfc1524 A User Agent Configuration Mechanism For Multimedia Mail Format Information.txt +675 -0
- data/vendor/mail/reference/rfc1652 SMTP Service Extension for 8bit-MIMEtransport.txt +339 -0
- data/vendor/mail/reference/rfc1892 Multipart Report .txt +227 -0
- data/vendor/mail/reference/rfc1893 Mail System Status Codes.txt +843 -0
- data/vendor/mail/reference/rfc2045 Multipurpose Internet Mail Extensions (1).txt +1739 -0
- data/vendor/mail/reference/rfc2046 Multipurpose Internet Mail Extensions (2).txt +2467 -0
- data/vendor/mail/reference/rfc2047 Multipurpose Internet Mail Extensions (3).txt +843 -0
- data/vendor/mail/reference/rfc2048 Multipurpose Internet Mail Extensions (4).txt +1180 -0
- data/vendor/mail/reference/rfc2049 Multipurpose Internet Mail Extensions (5).txt +1347 -0
- data/vendor/mail/reference/rfc2111 Content-ID and Message-ID URLs.txt +283 -0
- data/vendor/mail/reference/rfc2183 Content-Disposition Header Field.txt +675 -0
- data/vendor/mail/reference/rfc2231 MIME Parameter Value and Encoded Word Extensions.txt +563 -0
- data/vendor/mail/reference/rfc2387 MIME Multipart-Related Content-type.txt +563 -0
- data/vendor/mail/reference/rfc2821 Simple Mail Transfer Protocol.txt +3711 -0
- data/vendor/mail/reference/rfc2822 Internet Message Format.txt +2859 -0
- data/vendor/mail/reference/rfc3462 Reporting of Mail System Administrative Messages.txt +396 -0
- data/vendor/mail/reference/rfc3696 Checking and Transformation of Names.txt +898 -0
- data/vendor/mail/reference/rfc4155 The application-mbox Media Type.txt +502 -0
- data/vendor/mail/reference/rfc4234 Augmented BNF for Syntax Specifications: ABNF.txt +899 -0
- data/vendor/mail/reference/rfc822 Standard for the Format of ARPA Internet Text Messages.txt +2900 -0
- data/vendor/mail/spec/environment.rb +15 -0
- data/vendor/mail/spec/features/making_a_new_message.feature +14 -0
- data/vendor/mail/spec/features/steps/env.rb +6 -0
- data/vendor/mail/spec/features/steps/making_a_new_message_steps.rb +11 -0
- data/vendor/mail/spec/fixtures/attachments/basic_email.eml +31 -0
- data/vendor/mail/spec/fixtures/attachments/test.gif +0 -0
- data/vendor/mail/spec/fixtures/attachments/test.jpg +0 -0
- data/vendor/mail/spec/fixtures/attachments/test.pdf +0 -0
- data/vendor/mail/spec/fixtures/attachments/test.png +0 -0
- data/vendor/mail/spec/fixtures/attachments/test.tiff +0 -0
- data/vendor/mail/spec/fixtures/attachments/test.zip +0 -0
- data/vendor/mail/spec/fixtures/attachments//343/201/246/343/201/231/343/201/250.txt +2 -0
- data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_content_disposition.eml +29 -0
- data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_content_location.eml +32 -0
- data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_message_rfc822.eml +92 -0
- data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_only_email.eml +17 -0
- data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_pdf.eml +70 -0
- data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_with_encoded_name.eml +47 -0
- data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_with_quoted_filename.eml +60 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/cant_parse_from.eml +33 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_7-bit.eml +231 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_empty.eml +33 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_plain.eml +148 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_qp_with_space.eml +53 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_spam.eml +44 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_text-html.eml +50 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_with_8bits.eml +770 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_with_semi_colon.eml +269 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_x_uuencode.eml +79 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/empty_group_lists.eml +162 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/header_fields_with_empty_values.eml +33 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/missing_body.eml +16 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/missing_content_disposition.eml +43 -0
- data/vendor/mail/spec/fixtures/emails/error_emails/multiple_content_types.eml +25 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email11.eml +34 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email12.eml +32 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email2.eml +114 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email4.eml +59 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email7.eml +66 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_encoded_stack_level_too_deep.eml +53 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_illegal_boundary.eml +58 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_mimepart_without_content_type.eml +94 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_multipart_mixed_quoted_boundary.eml +50 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_nested_attachment.eml +100 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_quoted_illegal_boundary.eml +58 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/sig_only_email.eml +29 -0
- data/vendor/mail/spec/fixtures/emails/mime_emails/two_from_in_message.eml +42 -0
- data/vendor/mail/spec/fixtures/emails/multi_charset/japanese.eml +9 -0
- data/vendor/mail/spec/fixtures/emails/multi_charset/japanese_attachment.eml +27 -0
- data/vendor/mail/spec/fixtures/emails/multi_charset/japanese_attachment_long_name.eml +44 -0
- data/vendor/mail/spec/fixtures/emails/multipart_report_emails/multi_address_bounce1.eml +179 -0
- data/vendor/mail/spec/fixtures/emails/multipart_report_emails/multi_address_bounce2.eml +179 -0
- data/vendor/mail/spec/fixtures/emails/multipart_report_emails/report_422.eml +98 -0
- data/vendor/mail/spec/fixtures/emails/multipart_report_emails/report_530.eml +97 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/basic_email.eml +31 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email.eml +14 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email10.eml +20 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email5.eml +19 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email6.eml +20 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email8.eml +47 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_bad_time.eml +62 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_double_at_in_header.eml +14 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_incorrect_header.eml +28 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_multiple_from.eml +30 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_quoted_with_0d0a.eml +14 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_reply.eml +32 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_simple.eml +11 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_string_in_date_field.eml +17 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_trailing_dot.eml +21 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_with_bad_date.eml +48 -0
- data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_with_partially_quoted_subject.eml +14 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example01.eml +8 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example02.eml +9 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example03.eml +7 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example04.eml +7 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example05.eml +8 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example06.eml +10 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example07.eml +9 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example08.eml +12 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example09.eml +15 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example10.eml +15 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example11.eml +6 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example12.eml +8 -0
- data/vendor/mail/spec/fixtures/emails/rfc2822/example13.eml +10 -0
- data/vendor/mail/spec/fixtures/emails/sample_output_multipart +0 -0
- data/vendor/mail/spec/mail/attachments_list_spec.rb +214 -0
- data/vendor/mail/spec/mail/body_spec.rb +385 -0
- data/vendor/mail/spec/mail/configuration_spec.rb +19 -0
- data/vendor/mail/spec/mail/core_extensions/string_spec.rb +62 -0
- data/vendor/mail/spec/mail/core_extensions_spec.rb +99 -0
- data/vendor/mail/spec/mail/elements/address_list_spec.rb +109 -0
- data/vendor/mail/spec/mail/elements/address_spec.rb +609 -0
- data/vendor/mail/spec/mail/elements/date_time_element_spec.rb +20 -0
- data/vendor/mail/spec/mail/elements/envelope_from_element_spec.rb +31 -0
- data/vendor/mail/spec/mail/elements/message_ids_element_spec.rb +43 -0
- data/vendor/mail/spec/mail/elements/phrase_list_spec.rb +22 -0
- data/vendor/mail/spec/mail/elements/received_element_spec.rb +34 -0
- data/vendor/mail/spec/mail/encoding_spec.rb +189 -0
- data/vendor/mail/spec/mail/encodings/base64_spec.rb +25 -0
- data/vendor/mail/spec/mail/encodings/quoted_printable_spec.rb +25 -0
- data/vendor/mail/spec/mail/encodings_spec.rb +664 -0
- data/vendor/mail/spec/mail/example_emails_spec.rb +303 -0
- data/vendor/mail/spec/mail/field_list_spec.rb +33 -0
- data/vendor/mail/spec/mail/field_spec.rb +198 -0
- data/vendor/mail/spec/mail/fields/bcc_field_spec.rb +89 -0
- data/vendor/mail/spec/mail/fields/cc_field_spec.rb +79 -0
- data/vendor/mail/spec/mail/fields/comments_field_spec.rb +25 -0
- data/vendor/mail/spec/mail/fields/common/address_container_spec.rb +18 -0
- data/vendor/mail/spec/mail/fields/common/common_address_spec.rb +132 -0
- data/vendor/mail/spec/mail/fields/common/common_date_spec.rb +25 -0
- data/vendor/mail/spec/mail/fields/common/common_field_spec.rb +69 -0
- data/vendor/mail/spec/mail/fields/common/common_message_id_spec.rb +30 -0
- data/vendor/mail/spec/mail/fields/common/parameter_hash_spec.rb +56 -0
- data/vendor/mail/spec/mail/fields/content_description_field_spec.rb +39 -0
- data/vendor/mail/spec/mail/fields/content_disposition_field_spec.rb +55 -0
- data/vendor/mail/spec/mail/fields/content_id_field_spec.rb +117 -0
- data/vendor/mail/spec/mail/fields/content_location_field_spec.rb +46 -0
- data/vendor/mail/spec/mail/fields/content_transfer_encoding_field_spec.rb +113 -0
- data/vendor/mail/spec/mail/fields/content_type_field_spec.rb +678 -0
- data/vendor/mail/spec/mail/fields/date_field_spec.rb +73 -0
- data/vendor/mail/spec/mail/fields/envelope_spec.rb +48 -0
- data/vendor/mail/spec/mail/fields/from_field_spec.rb +89 -0
- data/vendor/mail/spec/mail/fields/in_reply_to_field_spec.rb +62 -0
- data/vendor/mail/spec/mail/fields/keywords_field_spec.rb +66 -0
- data/vendor/mail/spec/mail/fields/message_id_field_spec.rb +147 -0
- data/vendor/mail/spec/mail/fields/mime_version_field_spec.rb +166 -0
- data/vendor/mail/spec/mail/fields/received_field_spec.rb +44 -0
- data/vendor/mail/spec/mail/fields/references_field_spec.rb +35 -0
- data/vendor/mail/spec/mail/fields/reply_to_field_spec.rb +67 -0
- data/vendor/mail/spec/mail/fields/resent_bcc_field_spec.rb +66 -0
- data/vendor/mail/spec/mail/fields/resent_cc_field_spec.rb +66 -0
- data/vendor/mail/spec/mail/fields/resent_date_field_spec.rb +39 -0
- data/vendor/mail/spec/mail/fields/resent_from_field_spec.rb +66 -0
- data/vendor/mail/spec/mail/fields/resent_message_id_field_spec.rb +24 -0
- data/vendor/mail/spec/mail/fields/resent_sender_field_spec.rb +58 -0
- data/vendor/mail/spec/mail/fields/resent_to_field_spec.rb +66 -0
- data/vendor/mail/spec/mail/fields/return_path_field_spec.rb +52 -0
- data/vendor/mail/spec/mail/fields/sender_field_spec.rb +58 -0
- data/vendor/mail/spec/mail/fields/structured_field_spec.rb +72 -0
- data/vendor/mail/spec/mail/fields/to_field_spec.rb +92 -0
- data/vendor/mail/spec/mail/fields/unstructured_field_spec.rb +134 -0
- data/vendor/mail/spec/mail/header_spec.rb +578 -0
- data/vendor/mail/spec/mail/mail_spec.rb +34 -0
- data/vendor/mail/spec/mail/message_spec.rb +1409 -0
- data/vendor/mail/spec/mail/mime_messages_spec.rb +435 -0
- data/vendor/mail/spec/mail/multipart_report_spec.rb +112 -0
- data/vendor/mail/spec/mail/network/delivery_methods/file_delivery_spec.rb +79 -0
- data/vendor/mail/spec/mail/network/delivery_methods/sendmail_spec.rb +125 -0
- data/vendor/mail/spec/mail/network/delivery_methods/smtp_spec.rb +133 -0
- data/vendor/mail/spec/mail/network/delivery_methods/test_mailer_spec.rb +57 -0
- data/vendor/mail/spec/mail/network/retriever_methods/pop3_spec.rb +180 -0
- data/vendor/mail/spec/mail/network_spec.rb +359 -0
- data/vendor/mail/spec/mail/parsers/address_lists_parser_spec.rb +15 -0
- data/vendor/mail/spec/mail/parsers/content_transfer_encoding_parser_spec.rb +72 -0
- data/vendor/mail/spec/mail/part_spec.rb +129 -0
- data/vendor/mail/spec/mail/parts_list_spec.rb +12 -0
- data/vendor/mail/spec/mail/round_tripping_spec.rb +44 -0
- data/vendor/mail/spec/mail/utilities_spec.rb +327 -0
- data/vendor/mail/spec/mail/version_specific/escape_paren_1_8_spec.rb +32 -0
- data/vendor/mail/spec/matchers/break_down_to.rb +35 -0
- data/vendor/mail/spec/spec_helper.rb +163 -0
- metadata +442 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
MIME-Version: 1.0
|
2
|
+
Received: by 10.231.35.72 with HTTP; Fri, 16 Oct 2009 05:39:34 -0700 (PDT)
|
3
|
+
Date: Fri, 16 Oct 2009 23:39:34 +1100
|
4
|
+
Delivered-To: raasdnil@gmail.com
|
5
|
+
Message-ID: <57a815bf0910160539m64240421gb35ea52e101aedbc@mail.gmail.com>
|
6
|
+
Subject: testing
|
7
|
+
From: Mikel Lindsaar <raasdnil@gmail.com>
|
8
|
+
To: Mikel Lindsaar <raasdnil@gmail.com>
|
9
|
+
Content-Type: multipart/mixed; boundary=00032557395e3572cf04760cb060
|
10
|
+
|
11
|
+
--00032557395e3572cf04760cb060
|
12
|
+
Content-Type: text/plain; charset=UTF-8
|
13
|
+
|
14
|
+
testing
|
15
|
+
|
16
|
+
--
|
17
|
+
http://lindsaar.net/
|
18
|
+
Rails, RSpec and Life blog....
|
19
|
+
|
20
|
+
--00032557395e3572cf04760cb060
|
21
|
+
Content-Type: text/plain; charset=UTF-8; name="=?UTF-8?B?44Gm44GZ44GoLnR4dA==?="
|
22
|
+
Content-Disposition: attachment; filename="=?UTF-8?B?44Gm44GZ44GoLnR4dA==?="
|
23
|
+
Content-Transfer-Encoding: base64
|
24
|
+
X-Attachment-Id: f_g0uxfl510
|
25
|
+
|
26
|
+
dGhpcyBpcyBhIHRlc3QK44GT44KM44KP44Gm44GZ44Go
|
27
|
+
--00032557395e3572cf04760cb060--
|
@@ -0,0 +1,44 @@
|
|
1
|
+
Delivered-To: raasdnil@gmail.com
|
2
|
+
Received: by 10.231.12.67 with SMTP id w3cs164325ibw;
|
3
|
+
Fri, 30 Oct 2009 01:11:12 -0700 (PDT)
|
4
|
+
Received: by 10.150.44.2 with SMTP id r2mr2367210ybr.77.1256890271939;
|
5
|
+
Fri, 30 Oct 2009 01:11:11 -0700 (PDT)
|
6
|
+
Return-Path: <mikel@test.lindsaar.net>
|
7
|
+
Received: from mx1.test.lindsaar.net.au (mx1.test.lindsaar.net.au [210.14.110.240])
|
8
|
+
by mx.google.com with ESMTP id 25si7923673gxk.34.2009.10.30.01.11.11;
|
9
|
+
Fri, 30 Oct 2009 01:11:11 -0700 (PDT)
|
10
|
+
Received-SPF: neutral (google.com: 210.14.110.240 is neither permitted nor denied by domain of mikel@test.lindsaar.net) client-ip=210.14.110.240;
|
11
|
+
Authentication-Results: mx.google.com; spf=neutral (google.com: 210.14.110.240 is neither permitted nor denied by domain of mikel@test.lindsaar.net) smtp.mail=mikel@test.lindsaar.net
|
12
|
+
Received: from [192.168.4.253] (60-241-138-146.static.tpgi.com.au [60.241.138.146])
|
13
|
+
(using TLSv1 with cipher AES128-SHA (128/128 bits))
|
14
|
+
(No client certificate requested)
|
15
|
+
(Authenticated sender: mikel)
|
16
|
+
by mx1.test.lindsaar.net.au (Postfix) with ESMTPSA id 5C0186DD4CD
|
17
|
+
for <raasdnil@gmail.com>; Fri, 30 Oct 2009 19:11:08 +1100 (EST)
|
18
|
+
Subject: =?utf-8?B?44G+44G/44KA44KB44KC44G+44G/44KA44KB44KC44G+44G/44KA?=
|
19
|
+
=?utf-8?B?44KB44KC44G+44G/44KA44KB44KC44G+44G/44KA44KB44KC44G+?=
|
20
|
+
=?utf-8?B?44G/44KA44KB44KC44G+44G/44KA44KB44KC44G+44G/44KA44KB?=
|
21
|
+
=?utf-8?B?44KC44G+44G/44KA44KB44KC44G+44G/44KA44KB44KC?=
|
22
|
+
From: Mikel Lindsaar <mikel@test.lindsaar.net>
|
23
|
+
Content-Type: multipart/mixed; boundary=Apple-Mail-6--589811753
|
24
|
+
Message-Id: <60A112A8-F26C-4E23-95B8-4EB9F139D6A0@test.lindsaar.net>
|
25
|
+
Date: Fri, 30 Oct 2009 19:11:02 +1100
|
26
|
+
To: Mikel Lindsaar <raasdnil@gmail.com>
|
27
|
+
Mime-Version: 1.0 (Apple Message framework v1076)
|
28
|
+
X-Mailer: Apple Mail (2.1076)
|
29
|
+
|
30
|
+
|
31
|
+
--Apple-Mail-6--589811753
|
32
|
+
Content-Disposition: attachment;
|
33
|
+
filename*0*=utf-8''%E3%81%8B%E3%81%8D%E3%81%8F%E3%81%91%E3%81%93%E3%81%8B%E3%81%8D%E3%81%8F%E3%81%91%E3%81%93%E3%81%8B%E3%81%8D%E3%81%8F%E3%81%91%E3%81%93%E3%81%8B%E3%81%8D%E3%81%8F%E3%81%91%E3%81%93%E3%81%8B;
|
34
|
+
filename*1*=%E3%81%8D%E3%81%8F%E3%81%91%E3%81%93.txt
|
35
|
+
Content-Type: text/plain;
|
36
|
+
x-unix-mode=0644;
|
37
|
+
name="=?utf-8?B?44GL44GN44GP44GR44GT44GL44GN44GP44GR44GT44GL44GN44GP?=
|
38
|
+
=?utf-8?B?44GR44GT44GL44GN44GP44GR44GT44GL44GN44GP44GR44GTLnR4?=
|
39
|
+
=?utf-8?B?dA==?="
|
40
|
+
Content-Transfer-Encoding: 7bit
|
41
|
+
|
42
|
+
this is the data
|
43
|
+
|
44
|
+
--Apple-Mail-6--589811753--
|
@@ -0,0 +1,179 @@
|
|
1
|
+
Received: from lvmail01.LL.com (LHLO lvmail01.LL.com)
|
2
|
+
(10.60.6.3) by lvmail01.LL.com with LMTP; Tue, 23 Feb 2010 22:16:41
|
3
|
+
-0800 (PST)
|
4
|
+
Received: by lvmail01.LL.com (Postfix)
|
5
|
+
id 3E47A1BC025; Tue, 23 Feb 2010 22:16:41 -0800 (PST)
|
6
|
+
Date: Tue, 23 Feb 2010 22:16:41 -0800 (PST)
|
7
|
+
From: MAILER-DAEMON@lvmail01.LL.com (Mail Delivery System)
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
To: rahul.chaudhari@LL.com
|
10
|
+
Auto-Submitted: auto-replied
|
11
|
+
MIME-Version: 1.0
|
12
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
13
|
+
boundary="9B7841BC027.1266992201/lvmail01.LL.com"
|
14
|
+
Content-Transfer-Encoding: 7bit
|
15
|
+
Message-Id: <20100224061641.3E47A1BC025@lvmail01.LL.com>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--9B7841BC027.1266992201/lvmail01.LL.com
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host lvmail01.LL.com.
|
24
|
+
|
25
|
+
I'm sorry to have to inform you that your message could not
|
26
|
+
be delivered to one or more recipients. It's attached below.
|
27
|
+
|
28
|
+
For further assistance, please send mail to postmaster.
|
29
|
+
|
30
|
+
If you do so, please include this problem report. You can
|
31
|
+
delete your own text from the attached returned message.
|
32
|
+
|
33
|
+
The mail system
|
34
|
+
|
35
|
+
<bbbbvhvbbvkjbhfbvbvjhb@gmail.com>: host
|
36
|
+
gmail-smtp-in.l.google.com[209.85.223.33] said: 550-5.1.1 The email account
|
37
|
+
that you tried to reach does not exist. Please try 550-5.1.1
|
38
|
+
double-checking the recipient's email address for typos or 550-5.1.1
|
39
|
+
unnecessary spaces. Learn more at 550 5.1.1
|
40
|
+
http://mail.google.com/support/bin/answer.py?answer=6596 41si5422799iwn.27
|
41
|
+
(in reply to RCPT TO command)
|
42
|
+
|
43
|
+
<bscdbcjhasbcjhbdscbhbsdhcbj@gmail.com>: host
|
44
|
+
gmail-smtp-in.l.google.com[209.85.223.33] said: 550-5.1.1 The email account
|
45
|
+
that you tried to reach does not exist. Please try 550-5.1.1
|
46
|
+
double-checking the recipient's email address for typos or 550-5.1.1
|
47
|
+
unnecessary spaces. Learn more at 550 5.1.1
|
48
|
+
http://mail.google.com/support/bin/answer.py?answer=6596 41si5422799iwn.27
|
49
|
+
(in reply to RCPT TO command)
|
50
|
+
|
51
|
+
<egyfefsdvsfvvhjsd@gmail.com>: host gmail-smtp-in.l.google.com[209.85.223.33]
|
52
|
+
said: 550-5.1.1 The email account that you tried to reach does not exist.
|
53
|
+
Please try 550-5.1.1 double-checking the recipient's email address for
|
54
|
+
typos or 550-5.1.1 unnecessary spaces. Learn more at
|
55
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
56
|
+
41si5422799iwn.27 (in reply to RCPT TO command)
|
57
|
+
|
58
|
+
<kfhejkfbsjkjsbhds@gmail.com>: host gmail-smtp-in.l.google.com[209.85.223.33]
|
59
|
+
said: 550-5.1.1 The email account that you tried to reach does not exist.
|
60
|
+
Please try 550-5.1.1 double-checking the recipient's email address for
|
61
|
+
typos or 550-5.1.1 unnecessary spaces. Learn more at
|
62
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
63
|
+
41si5422799iwn.27 (in reply to RCPT TO command)
|
64
|
+
|
65
|
+
<qfvhgsvhgsduiohncdhcvhsdfvsfygusd@gmail.com>: host
|
66
|
+
gmail-smtp-in.l.google.com[209.85.223.33] said: 550-5.1.1 The email account
|
67
|
+
that you tried to reach does not exist. Please try 550-5.1.1
|
68
|
+
double-checking the recipient's email address for typos or 550-5.1.1
|
69
|
+
unnecessary spaces. Learn more at 550 5.1.1
|
70
|
+
http://mail.google.com/support/bin/answer.py?answer=6596 41si5422799iwn.27
|
71
|
+
(in reply to RCPT TO command)
|
72
|
+
|
73
|
+
--9B7841BC027.1266992201/lvmail01.LL.com
|
74
|
+
Content-Description: Delivery report
|
75
|
+
Content-Type: message/delivery-status
|
76
|
+
|
77
|
+
Reporting-MTA: dns; lvmail01.LL.com
|
78
|
+
X-Postfix-Queue-ID: 9B7841BC027
|
79
|
+
X-Postfix-Sender: rfc822; rahul.chaudhari@LL.com
|
80
|
+
Arrival-Date: Tue, 23 Feb 2010 22:16:15 -0800 (PST)
|
81
|
+
|
82
|
+
Final-Recipient: rfc822; bbbbvhvbbvkjbhfbvbvjhb@gmail.com
|
83
|
+
Original-Recipient: rfc822;bbbbvhvbbvkjbhfbvbvjhb@gmail.com
|
84
|
+
Action: failed
|
85
|
+
Status: 5.1.1
|
86
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
87
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
88
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
89
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
90
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
91
|
+
41si5422799iwn.27
|
92
|
+
|
93
|
+
Final-Recipient: rfc822; bscdbcjhasbcjhbdscbhbsdhcbj@gmail.com
|
94
|
+
Original-Recipient: rfc822;bscdbcjhasbcjhbdscbhbsdhcbj@gmail.com
|
95
|
+
Action: failed
|
96
|
+
Status: 5.1.1
|
97
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
98
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
99
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
100
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
101
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
102
|
+
41si5422799iwn.27
|
103
|
+
|
104
|
+
Final-Recipient: rfc822; egyfefsdvsfvvhjsd@gmail.com
|
105
|
+
Original-Recipient: rfc822;egyfefsdvsfvvhjsd@gmail.com
|
106
|
+
Action: failed
|
107
|
+
Status: 5.1.1
|
108
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
109
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
110
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
111
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
112
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
113
|
+
41si5422799iwn.27
|
114
|
+
|
115
|
+
Final-Recipient: rfc822; kfhejkfbsjkjsbhds@gmail.com
|
116
|
+
Original-Recipient: rfc822;kfhejkfbsjkjsbhds@gmail.com
|
117
|
+
Action: failed
|
118
|
+
Status: 5.1.1
|
119
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
120
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
121
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
122
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
123
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
124
|
+
41si5422799iwn.27
|
125
|
+
|
126
|
+
Final-Recipient: rfc822; qfvhgsvhgsduiohncdhcvhsdfvsfygusd@gmail.com
|
127
|
+
Original-Recipient: rfc822;qfvhgsvhgsduiohncdhcvhsdfvsfygusd@gmail.com
|
128
|
+
Action: failed
|
129
|
+
Status: 5.1.1
|
130
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
131
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
132
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
133
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
134
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
135
|
+
41si5422799iwn.27
|
136
|
+
|
137
|
+
--9B7841BC027.1266992201/lvmail01.LL.com
|
138
|
+
Content-Description: Undelivered Message
|
139
|
+
Content-Type: message/rfc822
|
140
|
+
Content-Transfer-Encoding: 7bit
|
141
|
+
|
142
|
+
Return-Path: <rahul.chaudhari@LL.com>
|
143
|
+
Received: from localhost (localhost [127.0.0.1])
|
144
|
+
by lvmail01.LL.com (Postfix) with ESMTP id 9B7841BC027;
|
145
|
+
Tue, 23 Feb 2010 22:16:15 -0800 (PST)
|
146
|
+
X-Virus-Scanned: amavisd-new at LL.com
|
147
|
+
Received: from lvmail01.LL.com ([127.0.0.1])
|
148
|
+
by localhost (lvmail01.LL.com [127.0.0.1]) (amavisd-new, port 10024)
|
149
|
+
with ESMTP id HXMOLJWXGcFK; Tue, 23 Feb 2010 22:16:15 -0800 (PST)
|
150
|
+
Received: from lvmail01.LL.com (lvmail01.LL.com [10.60.6.3])
|
151
|
+
by lvmail01.LL.com (Postfix) with ESMTP id 12D311BC025;
|
152
|
+
Tue, 23 Feb 2010 22:16:15 -0800 (PST)
|
153
|
+
Date: Tue, 23 Feb 2010 22:16:14 -0800 (PST)
|
154
|
+
From: Rahul Chaudhari <rahul.chaudhari@LL.com>
|
155
|
+
To: egyfefsdvsfvvhjsd@gmail.com, kfhejkfbsjkjsbhds@gmail.com,
|
156
|
+
bbbbvhvbbvkjbhfbvbvjhb@gmail.com,
|
157
|
+
qfvhgsvhgsduiohncdhcvhsdfvsfygusd@gmail.com,
|
158
|
+
bscdbcjhasbcjhbdscbhbsdhcbj@gmail.com
|
159
|
+
Message-ID: <118707422.15521266992174819.JavaMail.root@lvmail01>
|
160
|
+
Subject: Test of bounce email
|
161
|
+
MIME-Version: 1.0
|
162
|
+
Content-Type: text/plain; charset=utf-8
|
163
|
+
Content-Transfer-Encoding: 7bit
|
164
|
+
X-Originating-IP: [10.50.4.44]
|
165
|
+
X-Mailer: Zimbra 6.0.1_GA_1816.UBUNTU8_64 (ZimbraWebClient - FF3.0 (Linux)/6.0.1_GA_1816.UBUNTU8_64)
|
166
|
+
|
167
|
+
This is just testing.
|
168
|
+
|
169
|
+
|
170
|
+
Thanks & Regards,
|
171
|
+
Rahul P. Chaudhari
|
172
|
+
Software Developer
|
173
|
+
LIVIA India Private Limited
|
174
|
+
|
175
|
+
Board Line - +91.22.6725 5100
|
176
|
+
Hand Phone - +91.809 783 3437
|
177
|
+
Web URL: www.LL.com
|
178
|
+
|
179
|
+
--9B7841BC027.1266992201/lvmail01.LL.com--
|
@@ -0,0 +1,179 @@
|
|
1
|
+
Received: from lvmail01.LL.com (LHLO lvmail01.LL.com)
|
2
|
+
(10.60.6.3) by lvmail01.LL.com with LMTP; Tue, 23 Feb 2010 22:16:41
|
3
|
+
-0800 (PST)
|
4
|
+
Received: by lvmail01.LL.com (Postfix)
|
5
|
+
id 3E47A1BC025; Tue, 23 Feb 2010 22:16:41 -0800 (PST)
|
6
|
+
Date: Tue, 23 Feb 2010 22:16:41 -0800 (PST)
|
7
|
+
From: MAILER-DAEMON@lvmail01.LL.com (Mail Delivery System)
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
To: rahul.chaudhari@LL.com
|
10
|
+
Auto-Submitted: auto-replied
|
11
|
+
MIME-Version: 1.0
|
12
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
13
|
+
boundary="9B7841BC027.1266992201/lvmail01.LL.com"
|
14
|
+
Content-Transfer-Encoding: 7bit
|
15
|
+
Message-Id: <20100224061641.3E47A1BC025@lvmail01.LL.com>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--9B7841BC027.1266992201/lvmail01.LL.com
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host lvmail01.LL.com.
|
24
|
+
|
25
|
+
I'm sorry to have to inform you that your message could not
|
26
|
+
be delivered to one or more recipients. It's attached below.
|
27
|
+
|
28
|
+
For further assistance, please send mail to postmaster.
|
29
|
+
|
30
|
+
If you do so, please include this problem report. You can
|
31
|
+
delete your own text from the attached returned message.
|
32
|
+
|
33
|
+
The mail system
|
34
|
+
|
35
|
+
<bbbbvhvbbvkjbhfbvbvjhb@gmail.com>: host
|
36
|
+
gmail-smtp-in.l.google.com[209.85.223.33] said: 550-5.1.1 The email account
|
37
|
+
that you tried to reach does not exist. Please try 550-5.1.1
|
38
|
+
double-checking the recipient's email address for typos or 550-5.1.1
|
39
|
+
unnecessary spaces. Learn more at 550 5.1.1
|
40
|
+
http://mail.google.com/support/bin/answer.py?answer=6596 41si5422799iwn.27
|
41
|
+
(in reply to RCPT TO command)
|
42
|
+
|
43
|
+
<bscdbcjhasbcjhbdscbhbsdhcbj@gmail.com>: host
|
44
|
+
gmail-smtp-in.l.google.com[209.85.223.33] said: 550-5.1.1 The email account
|
45
|
+
that you tried to reach does not exist. Please try 550-5.1.1
|
46
|
+
double-checking the recipient's email address for typos or 550-5.1.1
|
47
|
+
unnecessary spaces. Learn more at 550 5.1.1
|
48
|
+
http://mail.google.com/support/bin/answer.py?answer=6596 41si5422799iwn.27
|
49
|
+
(in reply to RCPT TO command)
|
50
|
+
|
51
|
+
<egyfefsdvsfvvhjsd@gmail.com>: host gmail-smtp-in.l.google.com[209.85.223.33]
|
52
|
+
said: 550-5.1.1 The email account that you tried to reach does not exist.
|
53
|
+
Please try 550-5.1.1 double-checking the recipient's email address for
|
54
|
+
typos or 550-5.1.1 unnecessary spaces. Learn more at
|
55
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
56
|
+
41si5422799iwn.27 (in reply to RCPT TO command)
|
57
|
+
|
58
|
+
<kfhejkfbsjkjsbhds@gmail.com>: host gmail-smtp-in.l.google.com[209.85.223.33]
|
59
|
+
said: 550-5.1.1 The email account that you tried to reach does not exist.
|
60
|
+
Please try 550-5.1.1 double-checking the recipient's email address for
|
61
|
+
typos or 550-5.1.1 unnecessary spaces. Learn more at
|
62
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
63
|
+
41si5422799iwn.27 (in reply to RCPT TO command)
|
64
|
+
|
65
|
+
<qfvhgsvhgsduiohncdhcvhsdfvsfygusd@gmail.com>: host
|
66
|
+
gmail-smtp-in.l.google.com[209.85.223.33] said: 550-5.1.1 The email account
|
67
|
+
that you tried to reach does not exist. Please try 550-5.1.1
|
68
|
+
double-checking the recipient's email address for typos or 550-5.1.1
|
69
|
+
unnecessary spaces. Learn more at 550 5.1.1
|
70
|
+
http://mail.google.com/support/bin/answer.py?answer=6596 41si5422799iwn.27
|
71
|
+
(in reply to RCPT TO command)
|
72
|
+
|
73
|
+
--9B7841BC027.1266992201/lvmail01.LL.com
|
74
|
+
Content-Description: Delivery report
|
75
|
+
Content-Type: message/delivery-status
|
76
|
+
|
77
|
+
Reporting-MTA: dns; lvmail01.LL.com
|
78
|
+
X-Postfix-Queue-ID: 9B7841BC027
|
79
|
+
X-Postfix-Sender: rfc822; rahul.chaudhari@LL.com
|
80
|
+
Arrival-Date: Tue, 23 Feb 2010 22:16:15 -0800 (PST)
|
81
|
+
|
82
|
+
Final-Recipient: rfc822; bbbbvhvbbvkjbhfbvbvjhb@gmail.com
|
83
|
+
Original-Recipient: rfc822;bbbbvhvbbvkjbhfbvbvjhb@gmail.com
|
84
|
+
Action: failed
|
85
|
+
Status: 5.1.1
|
86
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
87
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
88
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
89
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
90
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
91
|
+
41si5422799iwn.27
|
92
|
+
|
93
|
+
Final-Recipient: rfc822; bscdbcjhasbcjhbdscbhbsdhcbj@gmail.com
|
94
|
+
Original-Recipient: rfc822;bscdbcjhasbcjhbdscbhbsdhcbj@gmail.com
|
95
|
+
Action: failed
|
96
|
+
Status: 5.1.1
|
97
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
98
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
99
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
100
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
101
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
102
|
+
41si5422799iwn.27
|
103
|
+
|
104
|
+
Final-Recipient: rfc822; egyfefsdvsfvvhjsd@gmail.com
|
105
|
+
Original-Recipient: rfc822;egyfefsdvsfvvhjsd@gmail.com
|
106
|
+
Action: failed
|
107
|
+
Status: 5.1.1
|
108
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
109
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
110
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
111
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
112
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
113
|
+
41si5422799iwn.27
|
114
|
+
|
115
|
+
Final-Recipient: rfc822; kfhejkfbsjkjsbhds@gmail.com
|
116
|
+
Original-Recipient: rfc822;kfhejkfbsjkjsbhds@gmail.com
|
117
|
+
Action: failed
|
118
|
+
Status: 5.1.1
|
119
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
120
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
121
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
122
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
123
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
124
|
+
41si5422799iwn.27
|
125
|
+
|
126
|
+
Final-Recipient: rfc822; qfvhgsvhgsduiohncdhcvhsdfvsfygusd@gmail.com
|
127
|
+
Original-Recipient: rfc822;qfvhgsvhgsduiohncdhcvhsdfvsfygusd@gmail.com
|
128
|
+
Action: failed
|
129
|
+
Status: 5.1.1
|
130
|
+
Remote-MTA: dns; gmail-smtp-in.l.google.com
|
131
|
+
Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does
|
132
|
+
not exist. Please try 550-5.1.1 double-checking the recipient's email
|
133
|
+
address for typos or 550-5.1.1 unnecessary spaces. Learn more at
|
134
|
+
550 5.1.1 http://mail.google.com/support/bin/answer.py?answer=6596
|
135
|
+
41si5422799iwn.27
|
136
|
+
|
137
|
+
--9B7841BC027.1266992201/lvmail01.LL.com
|
138
|
+
Content-Description: Undelivered Message
|
139
|
+
Content-Type: message/rfc822
|
140
|
+
Content-Transfer-Encoding: 7bit
|
141
|
+
|
142
|
+
Return-Path: <rahul.chaudhari@LL.com>
|
143
|
+
Received: from localhost (localhost [127.0.0.1])
|
144
|
+
by lvmail01.LL.com (Postfix) with ESMTP id 9B7841BC027;
|
145
|
+
Tue, 23 Feb 2010 22:16:15 -0800 (PST)
|
146
|
+
X-Virus-Scanned: amavisd-new at LL.com
|
147
|
+
Received: from lvmail01.LL.com ([127.0.0.1])
|
148
|
+
by localhost (lvmail01.LL.com [127.0.0.1]) (amavisd-new, port 10024)
|
149
|
+
with ESMTP id HXMOLJWXGcFK; Tue, 23 Feb 2010 22:16:15 -0800 (PST)
|
150
|
+
Received: from lvmail01.LL.com (lvmail01.LL.com [10.60.6.3])
|
151
|
+
by lvmail01.LL.com (Postfix) with ESMTP id 12D311BC025;
|
152
|
+
Tue, 23 Feb 2010 22:16:15 -0800 (PST)
|
153
|
+
Date: Tue, 23 Feb 2010 22:16:14 -0800 (PST)
|
154
|
+
From: Rahul Chaudhari <rahul.chaudhari@LL.com>
|
155
|
+
To: egyfefsdvsfvvhjsd@gmail.com, kfhejkfbsjkjsbhds@gmail.com,
|
156
|
+
bbbbvhvbbvkjbhfbvbvjhb@gmail.com,
|
157
|
+
qfvhgsvhgsduiohncdhcvhsdfvsfygusd@gmail.com,
|
158
|
+
bscdbcjhasbcjhbdscbhbsdhcbj@gmail.com
|
159
|
+
Message-ID: <118707422.15521266992174819.JavaMail.root@lvmail01>
|
160
|
+
Subject: Test of bounce email
|
161
|
+
MIME-Version: 1.0
|
162
|
+
Content-Type: text/plain; charset=utf-8
|
163
|
+
Content-Transfer-Encoding: 7bit
|
164
|
+
X-Originating-IP: [10.50.4.44]
|
165
|
+
X-Mailer: Zimbra 6.0.1_GA_1816.UBUNTU8_64 (ZimbraWebClient - FF3.0 (Linux)/6.0.1_GA_1816.UBUNTU8_64)
|
166
|
+
|
167
|
+
This is just testing.
|
168
|
+
|
169
|
+
|
170
|
+
Thanks & Regards,
|
171
|
+
Rahul P. Chaudhari
|
172
|
+
Software Developer
|
173
|
+
LIVIA India Private Limited
|
174
|
+
|
175
|
+
Board Line - +91.22.6725 5100
|
176
|
+
Hand Phone - +91.809 783 3437
|
177
|
+
Web URL: www.LL.com
|
178
|
+
|
179
|
+
--9B7841BC027.1266992201/lvmail01.LL.com--
|
@@ -0,0 +1,98 @@
|
|
1
|
+
Return-Path: <mail_dump@ns1.sssssss.net.au>
|
2
|
+
Received: from acomputer ([unix socket])
|
3
|
+
by imap01.sssssss.net (Cyrus) with LMTPA;
|
4
|
+
Wed, 16 Jan 2008 13:51:42 -0800
|
5
|
+
X-Sieve: CMU Sieve 2.2
|
6
|
+
Received: from smtp.sssssss.org (unknown [198.0.0.92])
|
7
|
+
by imap01.sssssss.net (Postfix) with ESMTP id BFE6477FAE
|
8
|
+
for <aaaa@sssssss.net>; Wed, 16 Jan 2008 13:51:40 -0800 (PST)
|
9
|
+
Received: from ns1.sssssss.net.au (ns1.sssssss.net.au [202.0.0.246])
|
10
|
+
by smtp.sssssss.org (Postfix) with ESMTP id 96E5C6C6830
|
11
|
+
for <aaaa@sssssss.net>; Wed, 16 Jan 2008 11:08:14 -0800 (PST)
|
12
|
+
Received: from ns1.sssssss.net.au (unknown [127.0.0.1])
|
13
|
+
by ns1.sssssss.net.au (Postfix) with ESMTP id E1BCEF227
|
14
|
+
for <aaaa@sssssss.net>; Thu, 17 Jan 2008 03:40:53 +1100 (EST)
|
15
|
+
Received: from ns1.sssssss.net.au (ns1.sssssss.net.au [202.0.0.246])
|
16
|
+
by localhost (FormatMessage) with SMTP id ceaa681bbcb6c7f6
|
17
|
+
for <jennifer@sss.sssssss.net.au>; Thu, 17 Jan 2008 03:40:53 +1100 (EST)
|
18
|
+
Received: from mail11.tppppp.com.au (unknown [203.0.0.161])
|
19
|
+
by ns1.sssssss.net.au (Postfix) with ESMTP id 7F2D2F225
|
20
|
+
for <jennifer@sss.sssssss.net.au>; Thu, 17 Jan 2008 03:40:52 +1100 (EST)
|
21
|
+
Received: from localhost (localhost)
|
22
|
+
by mail11.tppppp.com.au (envelope-from MAILER-DAEMON) (8.14.2/8.14.2) id m0GFZ1c3009410;
|
23
|
+
Thu, 17 Jan 2008 03:40:52 +1100
|
24
|
+
Date: Thu, 17 Jan 2008 03:40:52 +1100
|
25
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@tppppp.com.au>
|
26
|
+
Message-Id: <200801161640.m0GFZ1c3009410@mail11.ttttt.com.au>
|
27
|
+
To: <jennifer@sss.sssssss.net.au>
|
28
|
+
MIME-Version: 1.0
|
29
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
30
|
+
boundary="m0GFZ1c3009410.1200501652/mail11.ttttt.com.au"
|
31
|
+
Subject: Warning: could not send message for past 8 hours
|
32
|
+
Auto-Submitted: auto-generated (warning-timeout)
|
33
|
+
Resent-Date: Thu, 17 Jan 2008 03:40:53 +1100 (EST)
|
34
|
+
Resent-From: <mail_dump@ns1.sssssss.net.au>
|
35
|
+
Resent-To: <mikel@sssssss.net>
|
36
|
+
Resent-Message-ID: <ceaa681bbcb6c7f6.1200501653@sssssss.net.au>
|
37
|
+
X-Spam-Status: No
|
38
|
+
|
39
|
+
|
40
|
+
--m0GFZ1c3009410.1200501652/mail11.ttttt.com.au
|
41
|
+
Content-Type: text/plain
|
42
|
+
|
43
|
+
**********************************************
|
44
|
+
** THIS IS A WARNING MESSAGE ONLY **
|
45
|
+
** YOU DO NOT NEED TO RESEND YOUR MESSAGE **
|
46
|
+
**********************************************
|
47
|
+
|
48
|
+
The original message was received at Wed, 16 Jan 2008 19:38:07 +1100
|
49
|
+
from 60-0-0-61.static.tppppp.com.au [60.0.0.61]
|
50
|
+
|
51
|
+
This message was generated by mail11.tppppp.com.au
|
52
|
+
|
53
|
+
----- Transcript of session follows -----
|
54
|
+
.... while talking to mail.oooooooo.com.au.:
|
55
|
+
>>> DATA
|
56
|
+
<<< 452 4.2.2 <fraser@oooooooo.com.au>... Mailbox full
|
57
|
+
<fraser@oooooooo.com.au>... Deferred: 452 4.2.2 <fraser@oooooooo.com.au>... Mailbox full
|
58
|
+
<<< 503 5.0.0 Need RCPT (recipient)
|
59
|
+
Warning: message still undelivered after 8 hours
|
60
|
+
Will keep trying until message is 5 days old
|
61
|
+
|
62
|
+
--
|
63
|
+
This message has been scanned for viruses and
|
64
|
+
dangerous content by MailScanner, and is
|
65
|
+
believed to be clean.
|
66
|
+
|
67
|
+
|
68
|
+
--m0GFZ1c3009410.1200501652/mail11.ttttt.com.au
|
69
|
+
Content-Type: message/delivery-status
|
70
|
+
|
71
|
+
Reporting-MTA: dns; mail11.ttttt.com.au
|
72
|
+
Arrival-Date: Wed, 16 Jan 2008 19:38:07 +1100
|
73
|
+
|
74
|
+
Final-Recipient: RFC822; fraser@oooooooo.com.au
|
75
|
+
Action: delayed
|
76
|
+
Status: 4.2.2
|
77
|
+
Remote-MTA: DNS; mail.oooooooo.com.au
|
78
|
+
Diagnostic-Code: SMTP; 452 4.2.2 <fraser@oooooooo.com.au>... Mailbox full
|
79
|
+
Last-Attempt-Date: Thu, 17 Jan 2008 03:40:52 +1100
|
80
|
+
|
81
|
+
--m0GFZ1c3009410.1200501652/mail11.ttttt.com.au
|
82
|
+
Content-Type: text/rfc822-headers
|
83
|
+
|
84
|
+
Return-Path: <jennifer@sss.sssssss.net.au>
|
85
|
+
Received: from k1s2yo86 (60-0-0-61.static.tppppp.com.au [60.0.0.61])
|
86
|
+
by mail11.tppppp.com.au (envelope-from jennifer@sss.sssssss.net.au) (8.14.2/8.14.2) with ESMTP id m0G8c0fR020461
|
87
|
+
for <fraser@oooooooo.com.au>; Wed, 16 Jan 2008 19:38:07 +1100
|
88
|
+
Date: Wed, 16 Jan 2008 19:38:07 +1100
|
89
|
+
From: Sydney <jennifer@sss.sssssss.net.au>
|
90
|
+
Message-ID: <15655788.13.1200472642578.JavaMail.Administrator@mail.ttttt.com.au>
|
91
|
+
Subject: Wanted
|
92
|
+
MIME-Version: 1.0
|
93
|
+
Content-Type: multipart/mixed;
|
94
|
+
boundary="----=_Part_12_28168925.1200472642578"
|
95
|
+
X-Virus-Scanned: ClamAV 0.91.2/5484/Wed Jan 16 06:31:27 2008 on mail11.tppppp.com.au
|
96
|
+
X-Virus-Status: Clean
|
97
|
+
|
98
|
+
--m0GFZ1c3009410.1200501652/mail11.ttttt.com.au--
|