rack-mail_exception 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- 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,97 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@imap01.sssss.net>
|
2
|
+
Received: from acomputer ([unix socket])
|
3
|
+
by imap01.sssss.net (Cyrus) with LMTPA;
|
4
|
+
Sun, 23 Dec 2007 15:04:04 -0800
|
5
|
+
X-Sieve: CMU Sieve 2.2
|
6
|
+
Received: from smtp.sssss.org (unknown [198.0.0.92])
|
7
|
+
by imap01.sssss.net (Postfix) with ESMTP id E434877FB0
|
8
|
+
for <mikel@sssss.net>; Sun, 23 Dec 2007 15:04:03 -0800 (PST)
|
9
|
+
Received: from mail12.tttttt.com.au (mail12.tttttt.com.au [203.0.0.162])
|
10
|
+
by smtp.sssss.org (Postfix) with ESMTP id 53313B42B7
|
11
|
+
for <mikel@sssss.net>; Sun, 23 Dec 2007 15:03:54 -0800 (PST)
|
12
|
+
Received: from localhost (localhost)
|
13
|
+
by mail12.tttttt.com.au (envelope-from MAILER-DAEMON) (8.14.2/8.14.2) id lBNN3rDp003436;
|
14
|
+
Mon, 24 Dec 2007 10:03:53 +1100
|
15
|
+
Date: Mon, 24 Dec 2007 10:03:53 +1100
|
16
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@tttttt.com.au>
|
17
|
+
Message-Id: <200712232303.lBNN3rDp003436@mail12.rrrr.com.au>
|
18
|
+
To: <mikel@sssss.net>
|
19
|
+
MIME-Version: 1.0
|
20
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
21
|
+
boundary="lBNN3rDp003436.1198451033/mail12.rrrr.com.au"
|
22
|
+
Subject: Returned mail: see transcript for details
|
23
|
+
Auto-Submitted: auto-generated (failure)
|
24
|
+
X-Spam-Status: No
|
25
|
+
|
26
|
+
This is a MIME-encapsulated message
|
27
|
+
|
28
|
+
--lBNN3rDp003436.1198451033/mail12.rrrr.com.au
|
29
|
+
|
30
|
+
The original message was received at Mon, 24 Dec 2007 10:03:47 +1100
|
31
|
+
from 60-0-0-146.static.tttttt.com.au [60.0.0.146]
|
32
|
+
|
33
|
+
This message was generated by mail12.tttttt.com.au
|
34
|
+
|
35
|
+
----- The following addresses had permanent fatal errors -----
|
36
|
+
<edwin@zzzzzzz.com>
|
37
|
+
(reason: 553 5.3.0 <edwin@zzzzzzz.com>... Unknown E-Mail Address)
|
38
|
+
|
39
|
+
----- Transcript of session follows -----
|
40
|
+
... while talking to mail.zzzzzz.com.:
|
41
|
+
>>> DATA
|
42
|
+
<<< 553 5.3.0 <edwin@zzzzzzz.com>... Unknown E-Mail Address
|
43
|
+
550 5.1.1 <edwin@zzzzzzz.com>... User unknown
|
44
|
+
<<< 503 5.0.0 Need RCPT (recipient)
|
45
|
+
|
46
|
+
--
|
47
|
+
This message has been scanned for viruses and
|
48
|
+
dangerous content by MailScanner, and is
|
49
|
+
believed to be clean.
|
50
|
+
|
51
|
+
|
52
|
+
--lBNN3rDp003436.1198451033/mail12.rrrr.com.au
|
53
|
+
Content-Type: message/delivery-status
|
54
|
+
|
55
|
+
Reporting-MTA: dns; mail12.rrrr.com.au
|
56
|
+
Received-From-MTA: DNS; 60-0-0-146.static.tttttt.com.au
|
57
|
+
Arrival-Date: Mon, 24 Dec 2007 10:03:47 +1100
|
58
|
+
|
59
|
+
Final-Recipient: RFC822; edwin@zzzzzzz.com
|
60
|
+
Action: failed
|
61
|
+
Status: 5.3.0
|
62
|
+
Remote-MTA: DNS; mail.zzzzzz.com
|
63
|
+
Diagnostic-Code: SMTP; 553 5.3.0 <edwin@zzzzzzz.com>... Unknown E-Mail Address
|
64
|
+
Last-Attempt-Date: Mon, 24 Dec 2007 10:03:53 +1100
|
65
|
+
|
66
|
+
--lBNN3rDp003436.1198451033/mail12.rrrr.com.au
|
67
|
+
Content-Type: text/rfc822-headers
|
68
|
+
|
69
|
+
Return-Path: <mikel@sssss.net>
|
70
|
+
Received: from [192.168.0.3] (60-0-0-146.static.tttttt.com.au [60.0.0.146])
|
71
|
+
by mail12.tttttt.com.au (envelope-from mikel@sssss.net) (8.14.2/8.14.2) with ESMTP id lBNN3jDq002941
|
72
|
+
for <edwin@zzzzzzz.com>; Mon, 24 Dec 2007 10:03:47 +1100
|
73
|
+
Resent-Date: Mon, 24 Dec 2007 10:03:47 +1100
|
74
|
+
Date: Mon, 24 Dec 2007 10:03:47 +1100
|
75
|
+
Resent-Message-Id: <200712232303.lBNN3jDq002941@mail12.rrrr.com.au>
|
76
|
+
Message-Id: <200712232303.lBNN3jDq002941@mail12.rrrr.com.au>
|
77
|
+
Mime-Version: 1.0
|
78
|
+
Content-Type: multipart/report;
|
79
|
+
report-type=delivery-status;
|
80
|
+
boundary=80874BE0-2DFF-4BCB-8AA1-A00E17ACA2EA
|
81
|
+
Received: from murder ([unix socket]) by imap01.sssss.net (Cyrus v2.2.12-Invoca-RPM-2.2.12-6.fc4) with LMTPA; Sun, 23 Dec 2007 12:59:14 -0800
|
82
|
+
Received: from smtp.sssss.org (unknown [198.0.0.92]) by imap01.sssss.net (Postfix) with ESMTP id 0AC9F77EDD for <mikel@sssss.net>; Sun, 23 Dec 2007 12:59:14 -0800 (PST)
|
83
|
+
Received: from ns1.sssss.net.au (ns1.sssss.net.au [202.0.0.246]) by smtp.sssss.org (Postfix) with ESMTP id 6FC83B42B4 for <mikel@sssss.net>; Sun, 23 Dec 2007 12:59:09 -0800 (PST)
|
84
|
+
Received: from unicom (unknown [85.0.0.121]) by ns1.sssss.net.au (Postfix) with ESMTP id 85ED5F1F7 for <webmaster@dianetics.org.au>; Mon, 24 Dec 2007 07:59:02 +1100 (EST)
|
85
|
+
Received: from [85.0.0.121] by mail.zzzzzz.com; , 23 Dec 2007 12:57:34 -0800
|
86
|
+
X-Mailer: Apple Mail (2.753)
|
87
|
+
From: postoffice
|
88
|
+
Subject: Returned mail: User unknown
|
89
|
+
Resent-From: mikel@sssss.net
|
90
|
+
Auto-Submitted: auto-generated (failure)
|
91
|
+
To: "Merrill" <edwin@zzzzzzz.com>
|
92
|
+
X-Virus-Scanned: ClamAV 0.91.2/5229/Mon Dec 24 07:36:55 2007 on mail12.tttttt.com.au
|
93
|
+
X-Virus-Status: Clean
|
94
|
+
|
95
|
+
--lBNN3rDp003436.1198451033/mail12.rrrr.com.au--
|
96
|
+
|
97
|
+
|
@@ -0,0 +1,31 @@
|
|
1
|
+
Delivered-To: raasdnil@gmail.com
|
2
|
+
Received: by 10.140.178.13 with SMTP id a13cs354079rvf;
|
3
|
+
Fri, 21 Nov 2008 20:05:05 -0800 (PST)
|
4
|
+
Received: by 10.151.44.15 with SMTP id w15mr2254748ybj.98.1227326704711;
|
5
|
+
Fri, 21 Nov 2008 20:05:04 -0800 (PST)
|
6
|
+
Return-Path: <test@lindsaar.net>
|
7
|
+
Received: from mail11.tpgi.com.au (mail11.tpgi.com.au [203.12.160.161])
|
8
|
+
by mx.google.com with ESMTP id 10si5117885gxk.81.2008.11.21.20.05.03;
|
9
|
+
Fri, 21 Nov 2008 20:05:04 -0800 (PST)
|
10
|
+
Received-SPF: neutral (google.com: 203.12.160.161 is neither permitted nor denied by domain of test@lindsaar.net) client-ip=203.12.160.161;
|
11
|
+
Authentication-Results: mx.google.com; spf=neutral (google.com: 203.12.160.161 is neither permitted nor denied by domain of test@lindsaar.net) smtp.mail=test@lindsaar.net
|
12
|
+
X-TPG-Junk-Status: Message not scanned
|
13
|
+
X-TPG-Antivirus: Passed
|
14
|
+
Received: from [192.0.0.253] (60-241-138-146.static.tpgi.com.au [60.0.0.146])
|
15
|
+
by mail11.tpgi.com.au (envelope-from test@lindsaar.net) (8.14.3/8.14.3) with ESMTP id mAM44xew022221
|
16
|
+
for <raasdnil@gmail.com>; Sat, 22 Nov 2008 15:05:01 +1100
|
17
|
+
Message-Id: <6B7EC235-5B17-4CA8-B2B8-39290DEB43A3@test.lindsaar.net>
|
18
|
+
From: Mikel Lindsaar <test@lindsaar.net>
|
19
|
+
To: Mikel Lindsaar <raasdnil@gmail.com>
|
20
|
+
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
21
|
+
Content-Transfer-Encoding: 7bit
|
22
|
+
Mime-Version: 1.0 (Apple Message framework v929.2)
|
23
|
+
Subject: Testing 123
|
24
|
+
Date: Sat, 22 Nov 2008 15:04:59 +1100
|
25
|
+
X-Mailer: Apple Mail (2.929.2)
|
26
|
+
|
27
|
+
Plain email.
|
28
|
+
|
29
|
+
Hope it works well!
|
30
|
+
|
31
|
+
Mikel
|
@@ -0,0 +1,14 @@
|
|
1
|
+
From jamis_buck@byu.edu Mon May 2 16:07:05 2005
|
2
|
+
Mime-Version: 1.0 (Apple Message framework v622)
|
3
|
+
Content-Transfer-Encoding: base64
|
4
|
+
Message-Id: <d3b8cf8e49f04480850c28713a1f473e@37signals.com>
|
5
|
+
Content-Type: text/plain;
|
6
|
+
charset=EUC-KR;
|
7
|
+
format=flowed
|
8
|
+
To: willard15georgina@jamis.backpackit.com
|
9
|
+
From: Jamis Buck <jamis@37signals.com>
|
10
|
+
Subject: =?EUC-KR?Q?NOTE:_=C7=D1=B1=B9=B8=BB=B7=CE_=C7=CF=B4=C2_=B0=CD?=
|
11
|
+
Date: Mon, 2 May 2005 16:07:05 -0600
|
12
|
+
|
13
|
+
tOu6zrrQwMcguLbC+bChwfa3ziwgv+y4rrTCIMfPs6q01MC7ILnPvcC0z7TZLg0KDQrBpiDAzLin
|
14
|
+
wLogSmFtaXPA1LTPtNku
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Return-Path: <xxx@xxxx.xxx>
|
2
|
+
Received: from xxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id C1B953B4CB6 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:05 -0500
|
3
|
+
Received: from SMS-GTYxxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id ca for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:04 -0500
|
4
|
+
Received: from xxx.xxxx.xxx by SMS-GTYxxx.xxxx.xxx with ESMTP id j4AKR3r23323 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:03 -0500
|
5
|
+
Date: Tue, 10 May 2005 15:27:03 -0500
|
6
|
+
From: xxx@xxxx.xxx
|
7
|
+
Sender: xxx@xxxx.xxx
|
8
|
+
To: xxxxxxxxxxx@xxxx.xxxx.xxx
|
9
|
+
Message-Id: <xxx@xxxx.xxx>
|
10
|
+
X-Original-To: xxxxxxxxxxx@xxxx.xxxx.xxx
|
11
|
+
Delivered-To: xxx@xxxx.xxx
|
12
|
+
Importance: normal
|
13
|
+
Content-Type: text/plain; charset=X-UNKNOWN
|
14
|
+
|
15
|
+
Test test. Hi. Waving. m
|
16
|
+
|
17
|
+
----------------------------------------------------------------
|
18
|
+
Sent via Bell Mobility's Text Messaging service.
|
19
|
+
Envoyé par le service de messagerie texte de Bell Mobilité.
|
20
|
+
----------------------------------------------------------------
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Return-Path: <xxx@xxxx.xxx>
|
2
|
+
Received: from xxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id C1B953B4CB6 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:05 -0500
|
3
|
+
Received: from SMS-GTYxxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id ca for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:04 -0500
|
4
|
+
Received: from xxx.xxxx.xxx by SMS-GTYxxx.xxxx.xxx with ESMTP id j4AKR3r23323 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:03 -0500
|
5
|
+
Date: Tue, 10 May 2005 15:27:03 -0500
|
6
|
+
From: xxx@xxxx.xxx
|
7
|
+
Sender: xxx@xxxx.xxx
|
8
|
+
To: xxxxxxxxxxx@xxxx.xxxx.xxx
|
9
|
+
Message-Id: <xxx@xxxx.xxx>
|
10
|
+
X-Original-To: xxxxxxxxxxx@xxxx.xxxx.xxx
|
11
|
+
Delivered-To: xxx@xxxx.xxx
|
12
|
+
Importance: normal
|
13
|
+
|
14
|
+
Test test. Hi. Waving. m
|
15
|
+
|
16
|
+
----------------------------------------------------------------
|
17
|
+
Sent via Bell Mobility's Text Messaging service.
|
18
|
+
Envoyé par le service de messagerie texte de Bell Mobilité.
|
19
|
+
----------------------------------------------------------------
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Return-Path: <xxx@xxxx.xxx>
|
2
|
+
Received: from xxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id C1B953B4CB6 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:05 -0500
|
3
|
+
Received: from SMS-GTYxxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id ca for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:04 -0500
|
4
|
+
Received: from xxx.xxxx.xxx by SMS-GTYxxx.xxxx.xxx with ESMTP id j4AKR3r23323 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:03 -0500
|
5
|
+
Date: Tue, 10 May 2005 15:27:03 -0500
|
6
|
+
From: xxx@xxxx.xxx
|
7
|
+
Sender: xxx@xxxx.xxx
|
8
|
+
To: xxxxxxxxxxx@xxxx.xxxx.xxx
|
9
|
+
Message-Id: <xxx@xxxx.xxx>
|
10
|
+
X-Original-To: xxxxxxxxxxx@xxxx.xxxx.xxx
|
11
|
+
Delivered-To: xxx@xxxx.xxx
|
12
|
+
Importance: normal
|
13
|
+
Content-Type: text/plain; charset=us-ascii
|
14
|
+
|
15
|
+
Test test. Hi. Waving. m
|
16
|
+
|
17
|
+
----------------------------------------------------------------
|
18
|
+
Sent via Bell Mobility's Text Messaging service.
|
19
|
+
Envoyé par le service de messagerie texte de Bell Mobilité.
|
20
|
+
----------------------------------------------------------------
|
@@ -0,0 +1,47 @@
|
|
1
|
+
From xxxxxxxxx.xxxxxxx@gmail.com Sun May 8 19:07:09 2005
|
2
|
+
Return-Path: <xxxxxxxxx.xxxxxxx@gmail.com>
|
3
|
+
Message-ID: <e85734b90505081209eaaa17b@mail.gmail.com>
|
4
|
+
Date: Sun, 8 May 2005 14:09:11 -0500
|
5
|
+
From: xxxxxxxxx xxxxxxx <xxxxxxxxx.xxxxxxx@gmail.com>
|
6
|
+
Reply-To: xxxxxxxxx xxxxxxx <xxxxxxxxx.xxxxxxx@gmail.com>
|
7
|
+
To: xxxxx xxxx <xxxxx@xxxxxxxxx.com>
|
8
|
+
Subject: Fwd: Signed email causes file attachments
|
9
|
+
In-Reply-To: <F6E2D0B4-CC35-4A91-BA4C-C7C712B10C13@mac.com>
|
10
|
+
Mime-Version: 1.0
|
11
|
+
Content-Type: multipart/mixed;
|
12
|
+
boundary="----=_Part_5028_7368284.1115579351471"
|
13
|
+
References: <F6E2D0B4-CC35-4A91-BA4C-C7C712B10C13@mac.com>
|
14
|
+
|
15
|
+
------=_Part_5028_7368284.1115579351471
|
16
|
+
Content-Type: text/plain; charset=ISO-8859-1
|
17
|
+
Content-Transfer-Encoding: quoted-printable
|
18
|
+
Content-Disposition: inline
|
19
|
+
|
20
|
+
We should not include these files or vcards as attachments.
|
21
|
+
|
22
|
+
---------- Forwarded message ----------
|
23
|
+
From: xxxxx xxxxxx <xxxxxxxx@xxx.com>
|
24
|
+
Date: May 8, 2005 1:17 PM
|
25
|
+
Subject: Signed email causes file attachments
|
26
|
+
To: xxxxxxx@xxxxxxxxxx.com
|
27
|
+
|
28
|
+
|
29
|
+
Hi,
|
30
|
+
|
31
|
+
Test attachments oddly encoded with japanese charset.
|
32
|
+
|
33
|
+
|
34
|
+
------=_Part_5028_7368284.1115579351471
|
35
|
+
Content-Type: application/octet-stream; name*=iso-2022-jp'ja'01%20Quien%20Te%20Dij%8aat.%20Pitbull.mp3
|
36
|
+
Content-Transfer-Encoding: base64
|
37
|
+
Content-Disposition: attachment
|
38
|
+
|
39
|
+
MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIGFDCCAs0w
|
40
|
+
ggI2oAMCAQICAw5c+TANBgkqhkiG9w0BAQQFADBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhh
|
41
|
+
d3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVt
|
42
|
+
YWlsIElzc3VpbmcgQ0EwHhcNMDUwMzI5MDkzOTEwWhcNMDYwMzI5MDkzOTEwWjBCMR8wHQYDVQQD
|
43
|
+
ExZUaGF3dGUgRnJlZW1haWwgTWVtYmVyMR8wHQYJKoZIhvcNAQkBFhBzbWhhdW5jaEBtYWMuY29t
|
44
|
+
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn90dPsYS3LjfMY211OSYrDQLzwNYPlAL
|
45
|
+
7+/0XA+kdy8/rRnyEHFGwhNCDmg0B6pxC7z3xxJD/8GfCd+IYUUNUQV5m9MkxfP9pTVXZVIYLaBw
|
46
|
+
------=_Part_5028_7368284.1115579351471--
|
47
|
+
|
@@ -0,0 +1,62 @@
|
|
1
|
+
Return-Path: <yusuf75thu@auracom.net>
|
2
|
+
Received: from murder ([unix socket])
|
3
|
+
by imap1.AAAAAAAAA.net (Cyrus v2.2.12-Invoca-RPM-2.2.12-6.fc4) with LMTPA;
|
4
|
+
Mon, 30 Jun 2008 02:34:00 -0700
|
5
|
+
X-Sieve: CMU Sieve 2.2
|
6
|
+
Received: from smtp2.BBBBBBBBBBB.org (unknown [10.254.15.30])
|
7
|
+
by imap1.AAAAAAAAA.net (Postfix) with ESMTP id 9444077D75
|
8
|
+
for <abcdefg@AAAAAAAAA.net>; Mon, 30 Jun 2008 02:34:00 -0700 (PDT)
|
9
|
+
Received: from localhost (unknown [92.47.238.91])
|
10
|
+
by smtp2.BBBBBBBBBBB.org (Postfix) with ESMTP id 44D0110011
|
11
|
+
for <abcdefg@AAAAAAAAA.net>; Mon, 9 Jun 2008 12:24:02 -0700 (PDT)
|
12
|
+
Message-ID: <86a2019dbec6$caa86cc0$390b0485@auracom.net>
|
13
|
+
From: "=?windows-1251?B?wPLo6u7iYQ==?=" <yusuf75thu@auracom.net>
|
14
|
+
To: <abcdefg@AAAAAAAAA.net>
|
15
|
+
Subject: [0]: XXXXXXX XXXXX XXXXX !
|
16
|
+
Date: Mon, 30 Jun 3609 15:33:50 +0600
|
17
|
+
MIME-Version: 1.0
|
18
|
+
Content-Type: multipart/alternative;
|
19
|
+
boundary=----=_NextPart_000_0023_08_E8CD50F3.4EF2F754
|
20
|
+
X-Priority: 3
|
21
|
+
X-MSMail-Priority: Normal
|
22
|
+
X-Mailer: Microsoft Outlook Express 6.00.2900.2180
|
23
|
+
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
|
24
|
+
X-CSI-MailScanner-Information: Please contact the ISP for more information
|
25
|
+
X-CSI-MailScanner: Found to be clean
|
26
|
+
X-CSI-MailScanner-SpamCheck: spam, ORDB-RBL
|
27
|
+
X-CSI-MailScanner-From: yusuf75thu@auracom.net
|
28
|
+
X-Spam-Status: Yes
|
29
|
+
|
30
|
+
This is a multi-part message in MIME format.
|
31
|
+
|
32
|
+
------=_NextPart_000_0023_08_E8CD50F3.4EF2F754
|
33
|
+
Content-Type: text/plain;
|
34
|
+
charset="windows-1251"
|
35
|
+
Content-Transfer-Encoding: quoted-printable
|
36
|
+
|
37
|
+
|
38
|
+
Filter2: This message has been scanned for viruses and
|
39
|
+
dangerous content by MailScanner, and is
|
40
|
+
believed to be clean.
|
41
|
+
|
42
|
+
|
43
|
+
------=_NextPart_000_0023_08_E8CD50F3.4EF2F754
|
44
|
+
Content-Type: text/html;
|
45
|
+
charset="windows-1251"
|
46
|
+
Content-Transfer-Encoding: quoted-printable
|
47
|
+
|
48
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
49
|
+
<HTML><HEAD>
|
50
|
+
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-125=
|
51
|
+
1">
|
52
|
+
<META content=3D"MSHTML 6.00.2900.2180" name=3DGENERATOR>
|
53
|
+
<STYLE></STYLE>
|
54
|
+
</HEAD>
|
55
|
+
<BODY bgColor=3D#ffffff>
|
56
|
+
<br />This message has been scanned for viruses and
|
57
|
+
<br />dangerous content by
|
58
|
+
<a href=3D"http://www.mailscanner.info/"><b>MailScanner</b></a>, and is
|
59
|
+
<br />believed to be clean.
|
60
|
+
</HTML>
|
61
|
+
|
62
|
+
------=_NextPart_000_0023_08_E8CD50F3.4EF2F754--
|
@@ -0,0 +1,14 @@
|
|
1
|
+
From jamis_buck@byu.edu Mon May 2 16:07:05 2005
|
2
|
+
Mime-Version: 1.0 (Apple Message framework v622)
|
3
|
+
Content-Transfer-Encoding: base64
|
4
|
+
Message-Id: <d3b8cf8e49f0448085@0c28713a1@f473e@37signals.com>
|
5
|
+
Content-Type: text/plain;
|
6
|
+
charset=EUC-KR;
|
7
|
+
format=flowed
|
8
|
+
To: willard15georgina@jamis.backpackit.com
|
9
|
+
From: Jamis Buck <jamis@37signals.com>
|
10
|
+
Subject: =?EUC-KR?Q?NOTE:_=C7=D1=B1=B9=B8=BB=B7=CE_=C7=CF=B4=C2_=B0=CD?=
|
11
|
+
Date: Mon, 2 May 2005 16:07:05 -0600
|
12
|
+
|
13
|
+
tOu6zrrQwMcguLbC+bChwfa3ziwgv+y4rrTCIMfPs6q01MC7ILnPvcC0z7TZLg0KDQrBpiDAzLin
|
14
|
+
wLogSmFtaXPA1LTPtNku
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Received: from xxx.xxx.xxx ([xxx.xxx.xxx.xxx] verified)
|
2
|
+
by xxx.com (CommuniGate Pro SMTP 4.2.8)
|
3
|
+
with SMTP id 2532598 for xxx@xxx.com; Wed, 23 Feb 2005 17:51:49 -0500
|
4
|
+
Received-SPF: softfail
|
5
|
+
receiver=xxx.com; client-ip=xxx.xxx.xxx.xxx; envelope-from=xxx@xxx.xxx
|
6
|
+
quite Delivered-To: xxx@xxx.xxx
|
7
|
+
Received: by xxx.xxx.xxx (Wostfix, from userid xxx)
|
8
|
+
id 0F87F333; Wed, 23 Feb 2005 16:16:17 -0600
|
9
|
+
Date: Wed, 23 Feb 2005 18:20:17 -0400
|
10
|
+
From: "xxx xxx" <xxx@xxx.xxx>
|
11
|
+
Message-ID: <4D6AA7EB.6490534@xxx.xxx>
|
12
|
+
To: xxx@xxx.com
|
13
|
+
Subject: Stop adware/spyware once and for all.
|
14
|
+
X-Scanned-By: MIMEDefang 2.11 (www dot roaringpenguin dot com slash mimedefang)
|
15
|
+
|
16
|
+
You are infected with:
|
17
|
+
Ad Ware and Spy Ware
|
18
|
+
|
19
|
+
Get your free scan and removal download now,
|
20
|
+
before it gets any worse.
|
21
|
+
|
22
|
+
http://xxx.xxx.info?aid=3D13&?stat=3D4327kdzt
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
no more? (you will still be infected)
|
28
|
+
http://xxx.xxx.info/discon/?xxx@xxx.com
|
@@ -0,0 +1,30 @@
|
|
1
|
+
Delivered-To: tim@powerupdev.com
|
2
|
+
Return-Path: <www-data@mangaverde.net>
|
3
|
+
To: tim@powerupdev.com concierge@powerupdev.com
|
4
|
+
From: tim@powerupdev.com concierge@powerupdev.com
|
5
|
+
Subject: /home/svn/public/minebox revision 214
|
6
|
+
Reply-to: tim@powerupdev.com concierge@powerupdev.com
|
7
|
+
Message-Id: <20071022234523.5BD8E86D2@mangaverde.net>
|
8
|
+
Date: Mon, 22 Oct 2007 23:45:23 +0000 (UTC)
|
9
|
+
|
10
|
+
<p><b>recordkick</b> 2007-10-22 23:45:23 +0000 (Mon, 22 Oct 2007)</p><p>test
|
11
|
+
subversion<br>
|
12
|
+
</p><hr noshade><pre><font color=\"gray\">Modified:
|
13
|
+
trunk/README
|
14
|
+
===================================================================
|
15
|
+
--- trunk/README\t2007-10-22
|
16
|
+
23:41:34 UTC (rev 213)
|
17
|
+
+++ trunk/README\t2007-10-22 23:45:23 UTC (rev 214)
|
18
|
+
@@ -1,5 +1,5 @@
|
19
|
+
== Welcome
|
20
|
+
to Rails
|
21
|
+
-Test
|
22
|
+
+Tedst
|
23
|
+
Rails is a web-application and persistence framework that includes everything
|
24
|
+
needed
|
25
|
+
to create database-backed web-applications according to the
|
26
|
+
Model-View-Control pattern of separation. This pattern
|
27
|
+
splits the view (also
|
28
|
+
|
29
|
+
</font>
|
30
|
+
</pre>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
Mime-Version: 1.0 (Apple Message framework v730)
|
2
|
+
Message-Id: <9169D984-4E0B-45EF-82D4-8F5E53AD7012@example.com>
|
3
|
+
From: foo@example.com
|
4
|
+
Subject: testing
|
5
|
+
Date: Mon, 6 Jun 2005 22:21:22 +0200
|
6
|
+
To: blah@example.com
|
7
|
+
Content-Transfer-Encoding: quoted-printable
|
8
|
+
Content-Type: text/plain
|
9
|
+
|
10
|
+
A fax has arrived from remote ID ''.=0D=0A-----------------------=
|
11
|
+
-------------------------------------=0D=0ATime: 3/9/2006 3:50:52=
|
12
|
+
PM=0D=0AReceived from remote ID: =0D=0AInbound user ID XXXXXXXXXX, r=
|
13
|
+
outing code XXXXXXXXX=0D=0AResult: (0/352;0/0) Successful Send=0D=0AP=
|
14
|
+
age record: 1 - 1=0D=0AElapsed time: 00:58 on channel 11=0D=0A
|
@@ -0,0 +1,32 @@
|
|
1
|
+
Return-Path: <xxxxxxxx@xxx.org>
|
2
|
+
Received: from me ([unix socket])
|
3
|
+
by xxxxx1.xxxx.net (Cyrus v2.2.12) with LMTPA;
|
4
|
+
Sun, 18 Nov 2007 00:56:33 -0800
|
5
|
+
Received: from smtp.xxxx.org (unknown [127.0.0.1])
|
6
|
+
by xxxxx1.xxxx.net (Postfix) with ESMTP id F128477EB5;
|
7
|
+
Sun, 18 Nov 2007 00:56:32 -0800 (PST)
|
8
|
+
Received: from omta02sl.mx.bigpond.com (omta02sl.mx.bigpond.com [144.140.93.154])
|
9
|
+
by smtp.xxxx.org (Postfix) with ESMTP id 2D567ACC08;
|
10
|
+
Sun, 18 Nov 2007 00:56:28 -0800 (PST)
|
11
|
+
Received: from oaamta05sl.mx.bigpond.com ([124.183.219.10])
|
12
|
+
by omta02sl.mx.bigpond.com with ESMTP
|
13
|
+
id <20071118085627.YVPI22254.omta02sl.mx.bigpond.com@oaamta05sl.mx.bigpond.com>;
|
14
|
+
Sun, 18 Nov 2007 08:56:27 +0000
|
15
|
+
Received: from [10.0.0.1] (really [124.183.219.10])
|
16
|
+
by oaamta05sl.mx.bigpond.com with ESMTP
|
17
|
+
id <20071118085627.TQWF6995.oaamta05sl.mx.bigpond.com@[10.0.0.1]>;
|
18
|
+
Sun, 18 Nov 2007 08:56:27 +0000
|
19
|
+
Message-ID: <473FFE27.20003@xxx.org>
|
20
|
+
Date: Sun, 18 Nov 2007 19:56:07 +1100
|
21
|
+
From: Testing <xxxxxxxx@xxx.org>
|
22
|
+
User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
|
23
|
+
X-Accept-Language: en-us, en
|
24
|
+
MIME-Version: 1.0
|
25
|
+
To: Mikel Lindsaar <mikel@xxxx.net>
|
26
|
+
Subject: Re: Test reply email
|
27
|
+
References: <473FF3B8.9020707@xxx.org> <348F04F142D69C21-291E56D292BC@xxxx.net>
|
28
|
+
In-Reply-To: <348F04F142D69C21-291E56D292BC@xxxx.net>
|
29
|
+
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
30
|
+
Content-Transfer-Encoding: 7bit
|
31
|
+
|
32
|
+
Message body
|