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,58 @@
|
|
1
|
+
From email_test@me.nowhere
|
2
|
+
Return-Path: <email_test@me.nowhere>
|
3
|
+
Received: from omta05sl.mx.bigpond.com by me.nowhere.else with ESMTP id 632BD5758 for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:21 +1000
|
4
|
+
Received: from oaamta05sl.mx.bigpond.com by omta05sl.mx.bigpond.com with ESMTP id <20071021093820.HSPC16667.omta05sl.mx.bigpond.com@oaamta05sl.mx.bigpond.com> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
|
5
|
+
Received: from mikel091a by oaamta05sl.mx.bigpond.com with SMTP id <20071021093820.JFMT24025.oaamta05sl.mx.bigpond.com@mikel091a> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
|
6
|
+
Date: Sun, 21 Oct 2007 19:38:13 +1000
|
7
|
+
From: Mikel Lindsaar <email_test@me.nowhere>
|
8
|
+
Reply-To: Mikel Lindsaar <email_test@me.nowhere>
|
9
|
+
To: mikel@me.nowhere
|
10
|
+
Message-Id: <009601c813c6$19df3510$0437d30a@mikel091a>
|
11
|
+
Subject: Testing outlook
|
12
|
+
Mime-Version: 1.0
|
13
|
+
Content-Type: multipart/alternative; boundary=----=_NextPart_000_0093_01C81419.EB75E850
|
14
|
+
X-Get_mail_default: mikel@me.nowhere.else
|
15
|
+
X-Priority: 3
|
16
|
+
X-Original-To: mikel@me.nowhere
|
17
|
+
X-Mailer: Microsoft Outlook Express 6.00.2900.3138
|
18
|
+
Delivered-To: mikel@me.nowhere
|
19
|
+
X-Mimeole: Produced By Microsoft MimeOLE V6.00.2900.3138
|
20
|
+
X-Msmail-Priority: Normal
|
21
|
+
|
22
|
+
This is a multi-part message in MIME format.
|
23
|
+
|
24
|
+
|
25
|
+
------=_NextPart_000_0093_01C81419.EB75E850
|
26
|
+
Content-Type: text/plain; charset=iso-8859-1
|
27
|
+
Content-Transfer-Encoding: Quoted-printable
|
28
|
+
|
29
|
+
Hello
|
30
|
+
This is an outlook test
|
31
|
+
|
32
|
+
So there.
|
33
|
+
|
34
|
+
Me.
|
35
|
+
|
36
|
+
------=_NextPart_000_0093_01C81419.EB75E850
|
37
|
+
Content-Type: text/html; charset=iso-8859-1
|
38
|
+
Content-Transfer-Encoding: Quoted-printable
|
39
|
+
|
40
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
41
|
+
<HTML><HEAD>
|
42
|
+
<META http-equiv=3DContent-Type content=3D"text/html; =
|
43
|
+
charset=3Diso-8859-1">
|
44
|
+
<META content=3D"MSHTML 6.00.6000.16525" name=3DGENERATOR>
|
45
|
+
<STYLE></STYLE>
|
46
|
+
</HEAD>
|
47
|
+
<BODY bgColor=3D#ffffff>
|
48
|
+
<DIV><FONT face=3DArial size=3D2>Hello</FONT></DIV>
|
49
|
+
<DIV><FONT face=3DArial size=3D2><STRONG>This is an outlook=20
|
50
|
+
test</STRONG></FONT></DIV>
|
51
|
+
<DIV><FONT face=3DArial size=3D2><STRONG></STRONG></FONT> </DIV>
|
52
|
+
<DIV><FONT face=3DArial size=3D2><STRONG>So there.</STRONG></FONT></DIV>
|
53
|
+
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
|
54
|
+
<DIV><FONT face=3DArial size=3D2>Me.</FONT></DIV></BODY></HTML>
|
55
|
+
|
56
|
+
|
57
|
+
------=_NextPart_000_0093_01C81419.EB75E850--
|
58
|
+
|
data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_mimepart_without_content_type.eml
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
X-Gmail-Received: b2c98353cc39d93e4204831226f778c200d28109
|
2
|
+
Delivered-To: roor32@gmail.com
|
3
|
+
Received: by 10.64.10.4 with SMTP id 4cs594808qbj;
|
4
|
+
Fri, 20 Oct 2006 01:53:34 -0700 (PDT)
|
5
|
+
Received: by 10.65.224.11 with SMTP id b11mr149813qbr;
|
6
|
+
Fri, 20 Oct 2006 01:53:34 -0700 (PDT)
|
7
|
+
Return-Path: <>
|
8
|
+
Received: from anis.telecom.uqam.ca (anis.telecom.uqam.ca [132.208.250.6])
|
9
|
+
by mx.google.com with ESMTP id e13si1575402qbe.2006.10.20.01.53.34;
|
10
|
+
Fri, 20 Oct 2006 01:53:34 -0700 (PDT)
|
11
|
+
Received-SPF: pass (google.com: best guess record for domain of anis.telecom.uqam.ca designates 132.208.250.6 as permitted sender)
|
12
|
+
Received: from anis4.telecom.uqam.ca (anis4.telecom.uqam.ca [132.208.250.236])
|
13
|
+
by sortant.uqam.ca (8.13.6/8.12.1) with SMTP id k9K8SIwA023763
|
14
|
+
for <roor32@gmail.com>; Fri, 20 Oct 2006 04:28:33 -0400 (EDT)
|
15
|
+
Received: from antivirus.uqam.ca ([127.0.0.1])
|
16
|
+
by anis4.telecom.uqam.ca (SAVSMTP 3.1.1.32) with SMTP id M2006102004283404041
|
17
|
+
for <roor32@gmail.com>; Fri, 20 Oct 2006 04:28:34 -0400
|
18
|
+
Received: from localhost (localhost)
|
19
|
+
by antivirus.uqam.ca (8.13.6/8.12.1) id k9JMDbg4005560;
|
20
|
+
Fri, 20 Oct 2006 04:28:33 -0400 (EDT)
|
21
|
+
Date: Fri, 20 Oct 2006 04:28:33 -0400 (EDT)
|
22
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@antivirus.uqam.ca>
|
23
|
+
Message-Id: <200610200828.k9JMDbg4005560@antivirus.uqam.ca>
|
24
|
+
To: <roor32@gmail.com>
|
25
|
+
MIME-Version: 1.0
|
26
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
27
|
+
boundary="k9JMDbg4005560.1161332913/antivirus.uqam.ca"
|
28
|
+
Subject: Warning: could not send message for past 1 day
|
29
|
+
Auto-Submitted: auto-generated (warning-timeout)
|
30
|
+
|
31
|
+
This is a MIME-encapsulated message
|
32
|
+
|
33
|
+
--k9JMDbg4005560.1161332913/antivirus.uqam.ca
|
34
|
+
|
35
|
+
**********************************************
|
36
|
+
** THIS IS A WARNING MESSAGE ONLY **
|
37
|
+
** YOU DO NOT NEED TO RESEND YOUR MESSAGE **
|
38
|
+
**********************************************
|
39
|
+
|
40
|
+
The original message was received at Thu, 19 Oct 2006 01:23:47 -0400 (EDT)
|
41
|
+
from py-out-1112.google.com [64.233.166.178]
|
42
|
+
|
43
|
+
----- Transcript of session follows -----
|
44
|
+
<larose.julie@courrier.uqam.ca>... Deferred
|
45
|
+
Warning: message still undelivered after 1 day
|
46
|
+
Will keep trying until message is 5 days old
|
47
|
+
|
48
|
+
--k9JMDbg4005560.1161332913/antivirus.uqam.ca
|
49
|
+
Content-Type: message/delivery-status
|
50
|
+
|
51
|
+
Reporting-MTA: dns; antivirus.uqam.ca
|
52
|
+
Arrival-Date: Thu, 19 Oct 2006 01:23:47 -0400 (EDT)
|
53
|
+
|
54
|
+
Final-Recipient: RFC822; larose.julie@courrier.uqam.ca
|
55
|
+
Action: delayed
|
56
|
+
Status: 4.5.0
|
57
|
+
Diagnostic-Code: SMTP;
|
58
|
+
Last-Attempt-Date: Fri, 20 Oct 2006 04:28:33 -0400 (EDT)
|
59
|
+
Will-Retry-Until: Tue, 24 Oct 2006 01:23:47 -0400 (EDT)
|
60
|
+
|
61
|
+
--k9JMDbg4005560.1161332913/antivirus.uqam.ca
|
62
|
+
Content-Type: message/rfc822
|
63
|
+
|
64
|
+
Return-Path: <roor32@gmail.com>
|
65
|
+
Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178])
|
66
|
+
by intrant.uqam.ca (8.13.6/8.12.2/uqam-filtres) with SMTP id k9J5Ni8o007263
|
67
|
+
for <larose.julie@courrier.uqam.ca>; Thu, 19 Oct 2006 01:23:47 -0400 (EDT)
|
68
|
+
X-UQAM-Spam-Filter: Filtre-Uqam re: abuse@uqam.ca
|
69
|
+
Received: by py-out-1112.google.com with SMTP id t32so610221pyc
|
70
|
+
for <larose.julie@courrier.uqam.ca>; Wed, 18 Oct 2006 22:23:33 -0700 (PDT)
|
71
|
+
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws;
|
72
|
+
s=beta; d=gmail.com;
|
73
|
+
h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition;
|
74
|
+
b=Fwt0k1kaMU+1kM1iTG0q4Xf94p9alSohgM7QQN0CSjfBYUUhT+J4Y6+ZWotaaSffV3gX86RE/n97n0yQ/33EgYKIifuEpa0hi2mg3KTmcDqlCjiDfih58Z998GEFfbhu0he2jsoB+k6AgVRFPwP6LMRi6T66vr2f7IOAmX2IHiU=
|
75
|
+
Received: by 10.65.241.20 with SMTP id t20mr15391984qbr;
|
76
|
+
Wed, 18 Oct 2006 15:10:03 -0700 (PDT)
|
77
|
+
Received: by 10.64.10.4 with HTTP; Wed, 18 Oct 2006 15:10:03 -0700 (PDT)
|
78
|
+
Message-ID: <89d7557c0610181510r6fa5ebd8n66a7deec71ade118@mail.gmail.com>
|
79
|
+
Date: Wed, 18 Oct 2006 18:10:03 -0400
|
80
|
+
From: "=?ISO-8859-1?Q?RogE9?=" <roor32@gmail.com>
|
81
|
+
To: larose.julie@courrier.uqam.ca
|
82
|
+
Subject: Est-ce toi ?
|
83
|
+
MIME-Version: 1.0
|
84
|
+
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
|
85
|
+
Content-Transfer-Encoding: 7bit
|
86
|
+
Content-Disposition: inline
|
87
|
+
|
88
|
+
Salut,
|
89
|
+
je ne suis pas sur de m'adresser a la bonne personne.
|
90
|
+
Mais si jamais tu me reconnais :p, peux-tu repondre a ce mail ?
|
91
|
+
Merci.
|
92
|
+
Roger
|
93
|
+
|
94
|
+
--k9JMDbg4005560.1161332913/antivirus.uqam.ca--
|
data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_multipart_mixed_quoted_boundary.eml
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
From email_test@me.nowhere
|
2
|
+
Return-Path: <email_test@me.nowhere>
|
3
|
+
Received: from omta05sl.mx.bigpond.com by me.nowhere.else with ESMTP id 632BD5758 for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:21 +1000
|
4
|
+
Received: from oaamta05sl.mx.bigpond.com by omta05sl.mx.bigpond.com with ESMTP id <20071021093820.HSPC16667.omta05sl.mx.bigpond.com@oaamta05sl.mx.bigpond.com> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
|
5
|
+
Received: from mikel091a by oaamta05sl.mx.bigpond.com with SMTP id <20071021093820.JFMT24025.oaamta05sl.mx.bigpond.com@mikel091a> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
|
6
|
+
Date: Sun, 21 Oct 2007 19:38:13 +1000
|
7
|
+
From: Mikel Lindsaar <email_test@me.nowhere>
|
8
|
+
Reply-To: Mikel Lindsaar <email_test@me.nowhere>
|
9
|
+
To: mikel@me.nowhere
|
10
|
+
Message-Id: <009601c813c6$19df3510$0437d30a@mikel091a>
|
11
|
+
Subject: Testing outlook
|
12
|
+
Subject: Another PDF
|
13
|
+
Mime-Version: 1.0
|
14
|
+
Content-Type: multipart/mixed;
|
15
|
+
boundary="----=_Part_2192_32400445.1115745999735"
|
16
|
+
X-Virus-Scanned: amavisd-new at textdrive.com
|
17
|
+
|
18
|
+
------=_Part_2192_32400445.1115745999735
|
19
|
+
Content-Type: text/plain; charset=ISO-8859-1
|
20
|
+
Content-Transfer-Encoding: quoted-printable
|
21
|
+
Content-Disposition: inline
|
22
|
+
|
23
|
+
Just attaching another PDF, here, to see what the message looks like,
|
24
|
+
and to see if I can figure out what is going wrong here.
|
25
|
+
|
26
|
+
------=_Part_2192_32400445.1115745999735
|
27
|
+
Content-Type: application/pdf; name="broken.pdf"
|
28
|
+
Content-Transfer-Encoding: base64
|
29
|
+
Content-Disposition: attachment; filename="broken.pdf"
|
30
|
+
|
31
|
+
JVBERi0xLjQNCiXk9tzfDQoxIDAgb2JqDQo8PCAvTGVuZ3RoIDIgMCBSDQogICAvRmlsdGVyIC9G
|
32
|
+
bGF0ZURlY29kZQ0KPj4NCnN0cmVhbQ0KeJy9Wt2KJbkNvm/od6jrhZxYln9hWEh2p+8HBvICySaE
|
33
|
+
ycLuTV4/1ifJ9qnq09NpSBimu76yLUuy/qzqcPz7+em3Ixx/CDc6CsXxs3b5+fvfjr/8cPz6/BRu
|
34
|
+
rbfAx/n3739/fuJylJ5u5fjX81OuDr4deK4Bz3z/aDP+8fz0yw8g0Ofq7ktr1Mn+u28rvhy/jVeD
|
35
|
+
QSa+9YNKHP/pxjvDNfVAx/m3MFz54FhvTbaseaxiDoN2LeMVMw+yA7RbHSCDzxZuaYB2E1Yay7QU
|
36
|
+
x89vz0+tyFDKMlAHK5yqLmnjF+c4RjEiQIUeKwblXMe+AsZjN1J5yGQL5DHpDHksurM81rF6PKab
|
37
|
+
gK6zAarIDzIiUY23rJsN9iorAE816aIu6lsgAdQFsuhhkHOUFgVjp2GjMqSewITXNQ27jrMeamkg
|
38
|
+
1rPI3iLWG2CIaSBB+V1245YVRICGbbpYKHc2USFDl6M09acQVQYhlwIrkBNLISvXhGlF1wi5FHCw
|
39
|
+
wxZkoGNJlVeJCEsqKA+3YAV5AMb6KkeaqEJQmFKKQU8T1pRi2ihE1Y4CDrqoYFFXYjJJOatsyzuI
|
40
|
+
8SIlykuxKTMibWK8H1PgEvqYgs4GmQSrEjJAalgGirIhik+p4ZQN9E3ETFPAHE1b8pp1l/0Rc1gl
|
41
|
+
fQs0ABWvyoZZzU8VnPXwVVcO9BEsyjEJaO6eBoZRyKGlrKoYoOygA8BGIzgwN3RQ15ouigG5idZQ
|
42
|
+
fx2U4Db2CqiLO0WHAZoylGiCAqhniNQjFjQPSkmjwfNTgQ6M1Ih+eWo36wFmjIxDJZiGUBiWsAyR
|
43
|
+
xX3EekGOizkGI96Ol9zVZTAivikURhRsHh2E3JhWMpSTZCnnonrLhMCodgrNcgo4uyJUJc6qnVss
|
44
|
+
nrGd1Ptr0YwisCOYyIbUwVjV4xBUNLbguSO2YHujonAMJkMdSI7bIw91Akq2AUlMUWGFTMAOamjU
|
45
|
+
OvZQCxIkY2pCpMFo/IwLdVLHs6nddwTRrgoVbvLU9eB0G4EMndV0TNoxHbt3JBWwK6hhv3iHfDtF
|
46
|
+
yokB302IpEBTnWICde4uYc/1khDbSIkQopO6lcqamGBu1OSE3N5IPSsZX00CkSHRiiyx6HQIShsS
|
47
|
+
HSVNswdVsaOUSAWq9aYhDtGDaoG5a3lBGkYt/lFlBFt1UqrYnzVtUpUQnLiZeouKgf1KhRBViRRk
|
48
|
+
ExepJCzTwEmFDalIRbLEGtw0gfpESOpIAF/NnpPzcVCG86s0g2DuSyd41uhNGbEgaSrWEXORErbw
|
49
|
+
------=_Part_2192_32400445.1115745999735--
|
50
|
+
|
@@ -0,0 +1,100 @@
|
|
1
|
+
From jamis@37signals.com Thu Feb 22 11:20:31 2007
|
2
|
+
Mime-Version: 1.0 (Apple Message framework v752.3)
|
3
|
+
Message-Id: <2CCE0408-10C7-4045-9B16-A1C11C31469B@37signals.com>
|
4
|
+
Content-Type: multipart/signed;
|
5
|
+
micalg=sha1;
|
6
|
+
boundary=Apple-Mail-42-587703407;
|
7
|
+
protocol="application/pkcs7-signature"
|
8
|
+
To: Jamis Buck <jamis@jamisbuck.org>
|
9
|
+
Subject: Testing attachments
|
10
|
+
From: Jamis Buck <jamis@37signals.com>
|
11
|
+
Date: Thu, 22 Feb 2007 11:20:31 -0700
|
12
|
+
|
13
|
+
|
14
|
+
--Apple-Mail-42-587703407
|
15
|
+
Content-Type: multipart/mixed;
|
16
|
+
boundary=Apple-Mail-41-587703287
|
17
|
+
|
18
|
+
|
19
|
+
--Apple-Mail-41-587703287
|
20
|
+
Content-Transfer-Encoding: 7bit
|
21
|
+
Content-Type: text/plain;
|
22
|
+
charset=US-ASCII;
|
23
|
+
format=flowed
|
24
|
+
|
25
|
+
Here is a test of an attachment via email.
|
26
|
+
|
27
|
+
- Jamis
|
28
|
+
|
29
|
+
|
30
|
+
--Apple-Mail-41-587703287
|
31
|
+
Content-Transfer-Encoding: base64
|
32
|
+
Content-Type: image/png;
|
33
|
+
x-unix-mode=0644;
|
34
|
+
name=byo-ror-cover.png
|
35
|
+
Content-Disposition: inline;
|
36
|
+
filename=truncated.png
|
37
|
+
|
38
|
+
iVBORw0KGgoAAAANSUhEUgAAAKUAAADXCAYAAAB7wZEQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz
|
39
|
+
AAALEgAACxIB0t1+/AAAABd0RVh0Q3JlYXRpb24gVGltZQAxLzI1LzIwMDeD9CJVAAAAGHRFWHRT
|
40
|
+
b2Z0d2FyZQBBZG9iZSBGaXJld29ya3NPsx9OAAAyBWlUWHRYTUw6Y29tLmFkb2JlLnhtcDw/eHBh
|
41
|
+
Y2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1l
|
42
|
+
dGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDQuMS1j
|
43
|
+
MDIwIDEuMjU1NzE2LCBUdWUgT2N0IDEwIDIwMDYgMjM6MTY6MzQiPgogICA8cmRmOlJERiB4bWxu
|
44
|
+
czpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAg
|
45
|
+
ICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4YXA9Imh0
|
46
|
+
dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iPgogICAgICAgICA8eGFwOkNyZWF0b3JUb29sPkFk
|
47
|
+
b2JlIEZpcmV3b3JrcyBDUzM8L3hhcDpDcmVhdG9yVG9vbD4KICAgICAgICAgPHhhcDpDcmVhdGVE
|
48
|
+
YXRlPjIwMDctMDEtMjVUMDU6Mjg6MjFaPC94YXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhhcDpN
|
49
|
+
b2RpZnlEYXRlPjIwMDctMDEtMjVUMDU6Mjg6MjFaPC94YXA6TW9kaWZ5RGF0ZT4KICAgICAgPC9y
|
50
|
+
ZGY6RGVzY3JpcHRpb24+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAg
|
51
|
+
ICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyI+CiAgICAg
|
52
|
+
ICAgIDxkYzpmb3JtYXQ+aW1hZ2UvcG5nPC9kYzpmb3JtYXQ+CiAgICAgIDwvcmRmOkRlc2NyaXB0
|
53
|
+
hhojpmnJMfaYFmSkXWg5PGCmHXVj/c9At0hSK2xGdd8F3muk0VFjb4f5Ue0ksQ8qAcq0delaXhdb
|
54
|
+
DjKNnF+3B3t9kObZYmk7AZgWYqO9anpR3wpM9sQ5XslB9a+kWyTtNb0fOmudzGHfPFBQDKesyycm
|
55
|
+
DBL7Cw5bXjIEuci+SSOm/LYnXDZu6iuPEj8lYBb+OU8xx1f9m+e5rhJiYKqjo5vHfiZp+VUkW9xc
|
56
|
+
Ufd6JHNWc47PkQqb9ie3SLEZB/ZqyAssiqURY+G35iOMZUrHbasHnb80QAPv9FHtAbJIyro7bi5b
|
57
|
+
ai2TEAKen5+LJNWrglZjm3UbZvt7KryA2J5b5J1jZF8kL6GzvG1Zqx54Y1y7J7n20wMOt9frG2sW
|
58
|
+
uwGP07kNz3732vf6bfvAvLldfS+9fts2euXY37D+R29FGZdlnhzV4TTFmPJduBP2RbNNua4rTqcT
|
59
|
+
Qt7Xy1KUB0AHSdP5AZQYvHZg7WD1XvYeMO1A9HhZPqMX5KXbMBrn2efxns/ee21674efxz4Tp/fq
|
60
|
+
2HZ648dgYaC1i3Vq1IbNPq3PvDTPezY9FaRISjvnzWqdgcWN8EJgjnNq+Z7ktOm9l2Nfth28EZi4
|
61
|
+
bG/we5JwxM+Tql47/D/X6b38I8/RyxvxPJrX6zvQbo3h9jyJx+C0ALX327QETHl5eYlaYCT5rPTb
|
62
|
+
+5/rAq26t3lKIxV/p88hq6ptngdgCzoPjJqndiLfc/6y5A14WeDFGNPct4iUsJBV2bYzLEV7m83s
|
63
|
+
6Rp63VPhHKC/g/LzaU9qexJRr56043JWinqAtfZqsSm1sjoznthl54dtCqv+uL4nIY+oYWuc3+nH
|
64
|
+
kGfn8b0HQpvOYLQAZUDanbJs3jQhITZEgdarZK+cO6ySlL13rut5nFaN23s7u3Snz6eRPTkCoc2/
|
65
|
+
Vp1zHfZVFpZ87FiMVLV1iqyK5rlzfji2GzjfDsodlD+Weo5UD4h6PwKqzQMqID0tq2VjjFVSMpis
|
66
|
+
ZLRAs7sePZBZAHI+gIanB8I7MD+femAceeUe2Kxa5jS950kZ1p5eNEdeX1+jFmSpZ+1EdWCsDcne
|
67
|
+
NPNgUHNw3aYpnzv9PGTX0uo94EtN9qq1rOdxe3kc79T8ukeHJJ8Fnxej6qlylbLLsjQLOy6Xy2a1
|
68
|
+
kefs/N+nM7+S7IG5/E5Yc7F003pWErLjbH0O5cGadiMptSB/DZ5U5DI9yeg5MFYyMj8lC/Y7/Xjq
|
69
|
+
OZlWcnpg9aQfXz2HRq+Wn5xOp6gN8tWq8R44e2pfyzLYemEgprst+XXk2Zj2nXlbsG05BprndTMv
|
70
|
+
C3QRaXczshhVsHnMgfYn80Y2g5JureA6wBasPeP7LkE/jvZMJAaf/g/U2RelHsisvan5FqweIAHg
|
71
|
+
Pwc7L68GxvVDAAAAAElFTkSuQmCC
|
72
|
+
|
73
|
+
--Apple-Mail-41-587703287--
|
74
|
+
|
75
|
+
--Apple-Mail-42-587703407
|
76
|
+
Content-Transfer-Encoding: base64
|
77
|
+
Content-Type: application/pkcs7-signature;
|
78
|
+
name=smime.p7s
|
79
|
+
Content-Disposition: attachment;
|
80
|
+
filename=smime.p7s
|
81
|
+
|
82
|
+
MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIGJzCCAuAw
|
83
|
+
ggJJoAMCAQICEFjnFNYXwDEZRWY5EkfzopUwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UEBhMCWkEx
|
84
|
+
JTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ
|
85
|
+
ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA2MDkxMjE3MDExMloXDTA3MDkxMjE3MDEx
|
86
|
+
MlowRTEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEiMCAGCSqGSIb3DQEJARYTamFt
|
87
|
+
aXNAMzdzaWduYWxzLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO2A9JeOFIFJ
|
88
|
+
G6z8pTcAldrZ2nMe+Xb1tNrbHgoVzN/QhHXM4qst2Ml93cmFLjMmwG7P9RJeU4oNx+jTqVoBB7NV
|
89
|
+
Ne1/o56Do0KhfMZ9iUDQdPLbkZMq4EEpFMdm6PyM3muRKwPhj66iAWe/osCb8DowUK2f66vaRx0Z
|
90
|
+
Y0MQHIIrXE02Ta4IfAhIfPqBLkZ4WgTYBHN9vMdYea1jF0GO4gqGk1wqwb3yxv2QMYMbwJ6SI+k/
|
91
|
+
ZjkSR/OilTCBhwYLKoZIhvcNAQkQAgsxeKB2MGIxCzAJBgNVBAYTAlpBMSUwIwYDVQQKExxUaGF3
|
92
|
+
dGUgQ29uc3VsdGluZyAoUHR5KSBMdGQuMSwwKgYDVQQDEyNUaGF3dGUgUGVyc29uYWwgRnJlZW1h
|
93
|
+
aWwgSXNzdWluZyBDQQIQWOcU1hfAMRlFZjkSR/OilTANBgkqhkiG9w0BAQEFAASCAQCfwQiC3v6/
|
94
|
+
yleRDGv3bJ4nQYQ+c3mz3+mn3Xi6uU35n3piwxZZaWRdmLyiXPvU+QReHpSf3l2qsEZM3sdE0XF9
|
95
|
+
eRul/+QTFJcDNXOEAxG1zC2Gpz+6c6RrX4Ou12Pwkp+pNrZWTSY/mZgdqcArupOBcZi7qBjoWcy5
|
96
|
+
wb54dfvSSjrjmqLbkH/E8ww/6gGQuU/xXpAUZgUrTmQHrNKeIdSh5oDkOxFaFWvnmb8Z/2ixKqW/
|
97
|
+
Ux6WqamyvBtTs/5YBEtnpZOk+uVoscYEUBhU+DVJ2OSvTdXSivMtBdXmGTsG22k+P1NGUHi/A7ev
|
98
|
+
xPaO0uk4V8xyjNlN4HPuGpkrlXwPAAAAAAAA
|
99
|
+
|
100
|
+
--Apple-Mail-42-587703407--
|
@@ -0,0 +1,58 @@
|
|
1
|
+
From email_test@me.nowhere
|
2
|
+
Return-Path: <email_test@me.nowhere>
|
3
|
+
Received: from omta05sl.mx.bigpond.com by me.nowhere.else with ESMTP id 632BD5758 for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:21 +1000
|
4
|
+
Received: from oaamta05sl.mx.bigpond.com by omta05sl.mx.bigpond.com with ESMTP id <20071021093820.HSPC16667.omta05sl.mx.bigpond.com@oaamta05sl.mx.bigpond.com> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
|
5
|
+
Received: from mikel091a by oaamta05sl.mx.bigpond.com with SMTP id <20071021093820.JFMT24025.oaamta05sl.mx.bigpond.com@mikel091a> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
|
6
|
+
Date: Sun, 21 Oct 2007 19:38:13 +1000
|
7
|
+
From: Mikel Lindsaar <email_test@me.nowhere>
|
8
|
+
Reply-To: Mikel Lindsaar <email_test@me.nowhere>
|
9
|
+
To: mikel@me.nowhere
|
10
|
+
Message-Id: <009601c813c6$19df3510$0437d30a@mikel091a>
|
11
|
+
Subject: Testing outlook
|
12
|
+
Mime-Version: 1.0
|
13
|
+
Content-Type: multipart/alternative; boundary="----=_NextPart_000_0093_01C81419.EB75E850"
|
14
|
+
X-Get_mail_default: mikel@me.nowhere.else
|
15
|
+
X-Priority: 3
|
16
|
+
X-Original-To: mikel@me.nowhere
|
17
|
+
X-Mailer: Microsoft Outlook Express 6.00.2900.3138
|
18
|
+
Delivered-To: mikel@me.nowhere
|
19
|
+
X-Mimeole: Produced By Microsoft MimeOLE V6.00.2900.3138
|
20
|
+
X-Msmail-Priority: Normal
|
21
|
+
|
22
|
+
This is a multi-part message in MIME format.
|
23
|
+
|
24
|
+
|
25
|
+
------=_NextPart_000_0093_01C81419.EB75E850
|
26
|
+
Content-Type: text/plain; charset=iso-8859-1
|
27
|
+
Content-Transfer-Encoding: Quoted-printable
|
28
|
+
|
29
|
+
Hello
|
30
|
+
This is an outlook test
|
31
|
+
|
32
|
+
So there.
|
33
|
+
|
34
|
+
Me.
|
35
|
+
|
36
|
+
------=_NextPart_000_0093_01C81419.EB75E850
|
37
|
+
Content-Type: text/html; charset=iso-8859-1
|
38
|
+
Content-Transfer-Encoding: Quoted-printable
|
39
|
+
|
40
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
41
|
+
<HTML><HEAD>
|
42
|
+
<META http-equiv=3DContent-Type content=3D"text/html; =
|
43
|
+
charset=3Diso-8859-1">
|
44
|
+
<META content=3D"MSHTML 6.00.6000.16525" name=3DGENERATOR>
|
45
|
+
<STYLE></STYLE>
|
46
|
+
</HEAD>
|
47
|
+
<BODY bgColor=3D#ffffff>
|
48
|
+
<DIV><FONT face=3DArial size=3D2>Hello</FONT></DIV>
|
49
|
+
<DIV><FONT face=3DArial size=3D2><STRONG>This is an outlook=20
|
50
|
+
test</STRONG></FONT></DIV>
|
51
|
+
<DIV><FONT face=3DArial size=3D2><STRONG></STRONG></FONT> </DIV>
|
52
|
+
<DIV><FONT face=3DArial size=3D2><STRONG>So there.</STRONG></FONT></DIV>
|
53
|
+
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
|
54
|
+
<DIV><FONT face=3DArial size=3D2>Me.</FONT></DIV></BODY></HTML>
|
55
|
+
|
56
|
+
|
57
|
+
------=_NextPart_000_0093_01C81419.EB75E850--
|
58
|
+
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Date: Mon, 4 Jun 2007 15:01:31 -0700
|
2
|
+
From: Test <test@test.lindsaar.net>
|
3
|
+
To: Mikel <mikel@test.lindsaar.net>
|
4
|
+
Subject: Re: Testing multipart/signed
|
5
|
+
Message-ID: <20070604150131.40d4fa1e@reforged>
|
6
|
+
Mime-Version: 1.0
|
7
|
+
Content-Type: multipart/signed; boundary=Sig_2GIY2xfzqSADMmu9sKGJqWm;
|
8
|
+
protocol="application/pgp-signature"; micalg=PGP-SHA1
|
9
|
+
|
10
|
+
--Sig_2GIY2xfzqSADMmu9sKGJqWm
|
11
|
+
Content-Type: text/plain; charset=US-ASCII
|
12
|
+
Content-Transfer-Encoding: quoted-printable
|
13
|
+
|
14
|
+
This is random text, not what has been signed below, ie, this sig
|
15
|
+
email is not signed correctly.
|
16
|
+
|
17
|
+
--Sig_2GIY2xfzqSADMmu9sKGJqWm
|
18
|
+
Content-Type: application/pgp-signature; name=signature.asc
|
19
|
+
Content-Disposition: attachment; filename=signature.asc
|
20
|
+
|
21
|
+
-----BEGIN PGP SIGNATURE-----
|
22
|
+
Version: GnuPG v1.4.6 (GNU/Linux)
|
23
|
+
|
24
|
+
iD8DB1111Iu7dfRchrkBInkRArniAKCue17JOxXBiAZHwLy3uFacU+pmhwCgwzhf
|
25
|
+
V5YSPv2xmYOA6mJ6oVaasseQ=
|
26
|
+
=T7p9
|
27
|
+
-----END PGP SIGNATURE-----
|
28
|
+
|
29
|
+
--Sig_2GIY2xfzqSADMmu9sKGJqWm--
|
@@ -0,0 +1,42 @@
|
|
1
|
+
Return-Path: <test@test.com>
|
2
|
+
Received: from mail-xxx.google.com (mail-xxx.google.com [0.0.0.0])
|
3
|
+
by smtp.test.com (Postfix) with ESMTP id xxxx
|
4
|
+
for <tester@test.com>; Wed, 2 Dec 2009 09:39:57 +0000 (UTC)
|
5
|
+
Received: by qyk6 with SMTP id 6so3112qyk.3
|
6
|
+
for <tester@test.com>; Wed, 02 Dec 2009 01:39:53 -0800 (PST)
|
7
|
+
MIME-Version: 1.0
|
8
|
+
Received: by 0.0.0.0 with SMTP id xxx.000.0000000000000; Wed,
|
9
|
+
02 Dec 2009 01:39:53 -0800 (PST)
|
10
|
+
In-Reply-To: <8fc5086d0912020131y377ba0ccpf8f14783cfc3014a@test.com>
|
11
|
+
References: <8fc5086d0912020131y377ba0ccpf8f14783cfc3014a@test.com>
|
12
|
+
From: Tester 1 <tester1@test.com>
|
13
|
+
Date: Wed, 2 Dec 2009 22:39:33 +1300
|
14
|
+
Message-ID: <8fc5086d0912020139y1564ad32jb4f4209fa464f4a6@test.com>
|
15
|
+
Subject: Sending messages include last little bit
|
16
|
+
To: tester2@test.com
|
17
|
+
Content-Type: multipart/alternative; boundary=00c09fa216eb1bfc0a0479bba823
|
18
|
+
|
19
|
+
--00c09fa216eb1bfc0a0479bba823
|
20
|
+
Content-Type: text/plain; charset=ISO-8859-1
|
21
|
+
|
22
|
+
When sending email:
|
23
|
+
* From Hotmail you get the ads as well.
|
24
|
+
* From GMail you also get the person's signature.
|
25
|
+
|
26
|
+
I'm curious, and I might do some digging tomorrow as well, to see if its
|
27
|
+
possible to strip the last little bit (signature/ads) from email messages.
|
28
|
+
|
29
|
+
--00c09fa216eb1bfc0a0479bba823
|
30
|
+
Content-Type: text/html; charset=ISO-8859-1
|
31
|
+
Content-Transfer-Encoding: quoted-printable
|
32
|
+
|
33
|
+
<div class=3D"gmail_quote"><div class=3D"gmail_quote"><div>When sending ema=
|
34
|
+
il:</div>* From Hotmail you get the ads as well.<div>* Fr=
|
35
|
+
om GMail you also get the person's signature.</div><div><br></div><div>=
|
36
|
+
I'm curious, and I might do some digging tomorrow as well, to see if it=
|
37
|
+
s possible to strip the last little bit (signature/ads) from email messages=
|
38
|
+
.<br>
|
39
|
+
|
40
|
+
</div></div></div>
|
41
|
+
|
42
|
+
--00c09fa216eb1bfc0a0479bba823--
|
@@ -0,0 +1,9 @@
|
|
1
|
+
MIME-Version: 1.0
|
2
|
+
Subject: =?UTF-8?B?44G+44G/44KA44KB44KC?=
|
3
|
+
From: Mikel Lindsaar <raasdnil@gmail.com>
|
4
|
+
To: =?UTF-8?B?44G/44GR44KL?= <raasdnil@gmail.com>
|
5
|
+
Content-Type: text/plain; charset=UTF-8
|
6
|
+
Content-Transfer-Encoding: base64
|
7
|
+
|
8
|
+
44GL44GN44GP44GI44GTCgotLSAKaHR0cDovL2xpbmRzYWFyLm5ldC8KUmFpbHMsIFJTcGVjIGFu
|
9
|
+
ZCBMaWZlIGJsb2cuLi4uCg==
|