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,33 @@
|
|
1
|
+
Date: Thu, 11 Jun 2009 23:25:02 -0700
|
2
|
+
From: Apple <News@InsideApple.Apple.com>
|
3
|
+
To: karl.baum@gmail.com
|
4
|
+
Message-Id: <7oh6b1$1clhrjk@badger-vip.apple.com>
|
5
|
+
Subject: Meet the new MacBook Pro family. Now includes 13-inch.
|
6
|
+
Mime-Version: 1.0
|
7
|
+
Content-Type: multipart/alternative; boundary=mimepart_4b0c353551675_3d1c15b79ea5e70c1783
|
8
|
+
|
9
|
+
|
10
|
+
--mimepart_4b0c353551675_3d1c15b79ea5e70c1783
|
11
|
+
Content-Type: text/plain; charset=ISO-8859-1
|
12
|
+
Content-Transfer-Encoding: Quoted-printable
|
13
|
+
Content-Disposition: inline
|
14
|
+
|
15
|
+
From one solid piece of aluminum comes a MacBook Pro that's thin and light,=
|
16
|
+
beautifully streamlined, and durable.
|
17
|
+
|
18
|
+
--mimepart_4b0c353551675_3d1c15b79ea5e70c1783
|
19
|
+
Content-Type: text/html; charset=ISO-8859-1
|
20
|
+
Content-Transfer-Encoding: Quoted-printable
|
21
|
+
Content-Disposition: inline
|
22
|
+
|
23
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
24
|
+
<html>
|
25
|
+
<head>
|
26
|
+
<body>
|
27
|
+
From one solid piece of aluminum comes a MacBook Pro that's thin and light,=
|
28
|
+
beautifully streamlined, and durable.<br><a href=3D"http://insideapple.app=
|
29
|
+
</body>
|
30
|
+
</html>
|
31
|
+
|
32
|
+
--mimepart_4b0c353551675_3d1c15b79ea5e70c1783--
|
33
|
+
|
@@ -0,0 +1,231 @@
|
|
1
|
+
Received: from nahou-mscnx06p.corp.enron.com ([192.168.110.237]) by NAHOU-MSMBX03V.corp.enron.com with Microsoft SMTPSVC(5.0.2195.2966);
|
2
|
+
Thu, 10 Jan 2002 16:10:15 -0600
|
3
|
+
Received: from NAHOU-MSMSW06P.corp.enron.com ([192.168.110.228]) by nahou-mscnx06p.corp.enron.com with Microsoft SMTPSVC(5.0.2195.2966);
|
4
|
+
Thu, 10 Jan 2002 16:10:14 -0600
|
5
|
+
Received: from mailman.enron.com (unverified) by NAHOU-MSMSW06P.corp.enron.com
|
6
|
+
(Content Technologies SMTPRS 4.2.5) with ESMTP id <T585d92a5e1c0a86ee487c@NAHOU-MSMSW06P.corp.enron.com> for <emclaug@exchange.enron.com>;
|
7
|
+
Thu, 10 Jan 2002 16:10:13 -0600
|
8
|
+
Received: from email11.quris.net (email11.quris.net [208.169.17.235])
|
9
|
+
by mailman.enron.com (8.11.4/8.11.4/corp-1.06) with ESMTP id g0AMAB920109
|
10
|
+
for <emclaug@enron.com>; Thu, 10 Jan 2002 16:10:11 -0600 (CST)
|
11
|
+
Received: from localhost.quris.net (localhost [127.0.0.1])
|
12
|
+
by email11.quris.net (8.12.1/8.12.1) with SMTP id g0AM9nNk021044
|
13
|
+
for emclaug@enron.com; Thu, 10 Jan 2002 15:10:08 -0700 (MST)
|
14
|
+
Message-Id: <101BN3c3ce68600277550d@bounce.quris.net>
|
15
|
+
Errors-To: 101BN3c3ce68600277550d@bounce.quris.net
|
16
|
+
From: Discover Card <discovercard_newsflash@discover.qrs1.net>
|
17
|
+
Reply-To: discovercard_newsflash@discover.qrs1.net
|
18
|
+
To: emclaug@enron.com
|
19
|
+
Subject: Discover(R) Card News Online - January 2002
|
20
|
+
Date: Wed, 9 Jan 2002 19:47:50 MST
|
21
|
+
X-Quris: 8:EC:1440:0:101BN3c3ce68600277550d
|
22
|
+
MIME-Version: 1.0
|
23
|
+
Content-Type: multipart/alternative; boundary="-----=aaaaaaaaaa0"
|
24
|
+
Return-Path: 101BN3c3ce68600277550d@bounce.quris.net
|
25
|
+
|
26
|
+
-------=aaaaaaaaaa0
|
27
|
+
Content-Type: text/plain; charset="iso-8859-1"
|
28
|
+
Content-Transfer-Encoding: 7-bit
|
29
|
+
|
30
|
+
DISCOVERÆ CARD <http://discover.qrs1.net/s/r?l=5893&m=101BN3c3ce68600277550d> News Online <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/newsonline_head.gif> January 2002 <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/jan2002_head.gif> DISCOVER <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/card-clasplat1_head.gif>
|
31
|
+
log in to the Account Center <http://discover.qrs1.net/s/r?l=5896&m=101BN3c3ce68600277550d>Internet ShopCenter(SM) <http://discover.qrs1.net/s/r?l=5900&m=101BN3c3ce68600277550d>
|
32
|
+
In This Edition: <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/thised_head.gif> <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Be Charitable <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Get Organized <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Manage Your Finances Better
|
33
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Protect Yourself <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Save More Money
|
34
|
+
|
35
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/blankdot.gif>
|
36
|
+
DISCOVERÆ <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/card-clasplat2_head.gif>
|
37
|
+
|
38
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-sc-offright.gif>
|
39
|
+
|
40
|
+
It's a new year and time for new beginnings. Let us help you out with some possible resolutions. Be sure to read on!
|
41
|
+
|
42
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
43
|
+
Be Charitable <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-be-charitable.gif>
|
44
|
+
$1 Million Donated to the Families of Freedom Scholarship Fundô
|
45
|
+
|
46
|
+
We're happy to announce that the second $1 million for the Discover Card Relief Efforts program, has been donated to the Families of Freedom Scholarship Fund*.
|
47
|
+
|
48
|
+
Families of Freedom Scholarship Fund(TM) <http://discover.qrs1.net/s/r?l=5894&m=101BN3c3ce68600277550d>The Fund will benefit children and spouses of airplane crew and passengers, World Trade Center and Pentagon employees and visitors, as well as firefighters, emergency medical and law enforcement personnel affected by the attacks of September 11th.
|
49
|
+
|
50
|
+
Thanks to you, we're making quick progress toward our goal of $5 million to help America's relief efforts by doing what you do everyday -- using your Discover Card.
|
51
|
+
|
52
|
+
Learn more <http://discover.qrs1.net/s/r?l=5902&m=101BN3c3ce68600277550d> about the Discover Card Donation Program.
|
53
|
+
|
54
|
+
To make a personal donation to the Families of Freedom Scholarship Fund, visit www.familiesoffreedom.org <http://discover.qrs1.net/s/r?l=5894&m=101BN3c3ce68600277550d>.
|
55
|
+
|
56
|
+
|
57
|
+
Return to TOP
|
58
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
59
|
+
Get Organized <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-get-organized.gif>
|
60
|
+
Four More Ways to Manage your Account...
|
61
|
+
|
62
|
+
Discover Interactive <http://discover.qrs1.net/s/r?l=5898&m=101BN3c3ce68600277550d> With the Discover Inter@ctive e-mail reminders, it's easier than ever to manage your DiscoverÆ Card Account. In addition to the Discover Inter@ctive e-mail reminders already offered -- there are now four new convenient options that will notify you when:
|
63
|
+
|
64
|
+
A Balance Transfer has Posted
|
65
|
+
A Merchant Refund or Credit has Posted
|
66
|
+
A Purchase Exceeds a Specified Amount (set by you)
|
67
|
+
The Account Balance Exceeds a Specified Amount (set by you)
|
68
|
+
|
69
|
+
To view a sample e-mail or to sign up for these new Discover Inter@ctive e-mails, click here <http://discover.qrs1.net/s/r?l=5898&m=101BN3c3ce68600277550d> today, and start enjoying the benefits right away.
|
70
|
+
|
71
|
+
|
72
|
+
Return to TOP
|
73
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
74
|
+
<http://discover.qrs1.net/s/r?l=5903&m=101BN3c3ce68600277550d> Manage Your Finances Better <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-manage-finances.gif>
|
75
|
+
TRANSFER A BALANCE ONLINE <http://discover.qrs1.net/s/r?l=5903&m=101BN3c3ce68600277550d> Consolidate Your Holiday Balances and Save!
|
76
|
+
|
77
|
+
Are all those holiday credit balances too much to keep up with? We can make it easier and help you save money! Just transfer those high-rate holiday balances to your Discover Card and get a special balance transfer rate! We can even send you an e-mail when your Balance Transfer has posted to your Discover Card account.
|
78
|
+
|
79
|
+
Transfer a Balance or Learn more <http://discover.qrs1.net/s/r?l=5903&m=101BN3c3ce68600277550d>.
|
80
|
+
|
81
|
+
Return to TOP
|
82
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
83
|
+
Protect Yourself <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-protect-yourself.gif>
|
84
|
+
KNOW FRAUD(TM) <http://discover.qrs1.net/s/r?l=5901&m=101BN3c3ce68600277550d> Know Fraud and Keep Your Identity Safe
|
85
|
+
|
86
|
+
Discover Card is a proud participant in the Know Fraudô campaign, a national initiative led by the Federal Government to prevent identity theft. Learn easy ways to protect your identity, how identity thieves work and more.
|
87
|
+
|
88
|
+
Get informed! <http://discover.qrs1.net/s/r?l=5892&m=101BN3c3ce68600277550d>
|
89
|
+
|
90
|
+
Return to TOP
|
91
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
92
|
+
Save More Money <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-save-money.gif>
|
93
|
+
Strunk and White <http://discover.qrs1.net/s/r?l=5899&m=101BN3c3ce68600277550d> Get a special Cashback Bonus award
|
94
|
+
|
95
|
+
Barnes & Noble.com <http://discover.qrs1.net/s/r?l=5899&m=101BN3c3ce68600277550d> Get a 7% Cashback BonusÆ award** when you use your Discover Card to buy anything from Barnes & Noble.com. Plus, get FREE SHIPPING when you purchase two or more items in a single order.
|
96
|
+
|
97
|
+
Hurry and stock up on all books, textbooks, movies, posters, music and more, only at Barnes & Noble.com <http://discover.qrs1.net/s/r?l=5899&m=101BN3c3ce68600277550d>.
|
98
|
+
|
99
|
+
Return to TOP
|
100
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
101
|
+
IMPORTANT INFORMATION
|
102
|
+
|
103
|
+
PLEASE DO NOT REPLY TO THIS E-MAIL
|
104
|
+
|
105
|
+
This e-mail was sent to: emclaug@enron.com
|
106
|
+
|
107
|
+
You are receiving this e-mail because you are a registered Discover Card Account Center user and have subscribed to receive e-mail newsletters from Discover Card.
|
108
|
+
|
109
|
+
To unsubscribe click here <http://discover.qrs1.net/s/r?l=5891&m=101BN3c3ce68600277550d>, log in to the Account Center, and change your settings.
|
110
|
+
|
111
|
+
To update your e-mail address, or change your Account Center preferences, click here <http://discover.qrs1.net/s/r?l=5891&m=101BN3c3ce68600277550d> and log in.
|
112
|
+
|
113
|
+
If you have questions about your Account, please e-mail us through Secure Messages <http://discover.qrs1.net/s/r?l=5897&m=101BN3c3ce68600277550d> and we will be happy to assist you.
|
114
|
+
|
115
|
+
Discover Card takes your online security seriously. Enjoy 100% Fraud Protection <http://discover.qrs1.net/s/r?l=5904&m=101BN3c3ce68600277550d> against unauthorized transactions whenever you use your Discover Card, online or off. So, you can rest easy when you use your Discover Card.
|
116
|
+
|
117
|
+
We respect your privacy. To view our privacy policy online, visit Discovercard.com <http://discover.qrs1.net/s/r?l=5895&m=101BN3c3ce68600277550d>
|
118
|
+
|
119
|
+
* Discover Financial Services is not associated with CSFA. Citizens' Scholarship Foundation of America, Families of Freedom Scholarship Fund and all associated logos are trademarks of Citizens' Scholarship Foundation of America.
|
120
|
+
|
121
|
+
** Special Cashback Bonus award Terms and Conditions:
|
122
|
+
For Cardmembers who participate in the Cashback Bonus program. This special Cashback Bonus award is separate from your annual Cashback Bonus award you may receive from Discover Card, and is not part of the Discover Card Cashback Bonus award calculation method. If, as of the date we determine whether you meet the terms of this offer, your Account is closed or delinquent, you will not receive this special Cashback Bonus award. Please allow 6 to 8 weeks for your special Cashback Bonus award to be credited to your Discover Card Account. Offer not transferable.
|
123
|
+
|
124
|
+
©2002 Discover Bank. Member FDIC.
|
125
|
+
|
126
|
+
<http://discover.qrs1.net/images/dot.gif?msgid=101BN3c3ce68600277550d>
|
127
|
+
|
128
|
+
-------=aaaaaaaaaa0
|
129
|
+
Content-Type: text/html; charset="iso-8859-1"
|
130
|
+
Content-Transfer-Encoding: 7-bit
|
131
|
+
|
132
|
+
|
133
|
+
DISCOVERÆ CARD <http://discover.qrs1.net/s/r?l=5893&m=101BN3c3ce68600277550d> News Online <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/newsonline_head.gif> January 2002 <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/jan2002_head.gif> DISCOVER <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/card-clasplat1_head.gif>
|
134
|
+
log in to the Account Center <http://discover.qrs1.net/s/r?l=5896&m=101BN3c3ce68600277550d>Internet ShopCenter(SM) <http://discover.qrs1.net/s/r?l=5900&m=101BN3c3ce68600277550d>
|
135
|
+
In This Edition: <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/thised_head.gif> <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Be Charitable <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Get Organized <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Manage Your Finances Better
|
136
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Protect Yourself <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/bullet_gold_ds.gif>Save More Money
|
137
|
+
|
138
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/blankdot.gif>
|
139
|
+
DISCOVERÆ <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/card-clasplat2_head.gif>
|
140
|
+
|
141
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-sc-offright.gif>
|
142
|
+
|
143
|
+
It's a new year and time for new beginnings. Let us help you out with some possible resolutions. Be sure to read on!
|
144
|
+
|
145
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
146
|
+
Be Charitable <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-be-charitable.gif>
|
147
|
+
$1 Million Donated to the Families of Freedom Scholarship Fundô
|
148
|
+
|
149
|
+
We're happy to announce that the second $1 million for the Discover Card Relief Efforts program, has been donated to the Families of Freedom Scholarship Fund*.
|
150
|
+
|
151
|
+
Families of Freedom Scholarship Fund(TM) <http://discover.qrs1.net/s/r?l=5894&m=101BN3c3ce68600277550d>The Fund will benefit children and spouses of airplane crew and passengers, World Trade Center and Pentagon employees and visitors, as well as firefighters, emergency medical and law enforcement personnel affected by the attacks of September 11th.
|
152
|
+
|
153
|
+
Thanks to you, we're making quick progress toward our goal of $5 million to help America's relief efforts by doing what you do everyday -- using your Discover Card.
|
154
|
+
|
155
|
+
Learn more <http://discover.qrs1.net/s/r?l=5902&m=101BN3c3ce68600277550d> about the Discover Card Donation Program.
|
156
|
+
|
157
|
+
To make a personal donation to the Families of Freedom Scholarship Fund, visit www.familiesoffreedom.org <http://discover.qrs1.net/s/r?l=5894&m=101BN3c3ce68600277550d>.
|
158
|
+
|
159
|
+
|
160
|
+
Return to TOP
|
161
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
162
|
+
Get Organized <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-get-organized.gif>
|
163
|
+
Four More Ways to Manage your Account...
|
164
|
+
|
165
|
+
Discover Interactive <http://discover.qrs1.net/s/r?l=5898&m=101BN3c3ce68600277550d> With the Discover Inter@ctive e-mail reminders, it's easier than ever to manage your DiscoverÆ Card Account. In addition to the Discover Inter@ctive e-mail reminders already offered -- there are now four new convenient options that will notify you when:
|
166
|
+
|
167
|
+
A Balance Transfer has Posted
|
168
|
+
A Merchant Refund or Credit has Posted
|
169
|
+
A Purchase Exceeds a Specified Amount (set by you)
|
170
|
+
The Account Balance Exceeds a Specified Amount (set by you)
|
171
|
+
|
172
|
+
To view a sample e-mail or to sign up for these new Discover Inter@ctive e-mails, click here <http://discover.qrs1.net/s/r?l=5898&m=101BN3c3ce68600277550d> today, and start enjoying the benefits right away.
|
173
|
+
|
174
|
+
|
175
|
+
Return to TOP
|
176
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
177
|
+
<http://discover.qrs1.net/s/r?l=5903&m=101BN3c3ce68600277550d> Manage Your Finances Better <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-manage-finances.gif>
|
178
|
+
TRANSFER A BALANCE ONLINE <http://discover.qrs1.net/s/r?l=5903&m=101BN3c3ce68600277550d> Consolidate Your Holiday Balances and Save!
|
179
|
+
|
180
|
+
Are all those holiday credit balances too much to keep up with? We can make it easier and help you save money! Just transfer those high-rate holiday balances to your Discover Card and get a special balance transfer rate! We can even send you an e-mail when your Balance Transfer has posted to your Discover Card account.
|
181
|
+
|
182
|
+
Transfer a Balance or Learn more <http://discover.qrs1.net/s/r?l=5903&m=101BN3c3ce68600277550d>.
|
183
|
+
|
184
|
+
Return to TOP
|
185
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
186
|
+
Protect Yourself <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-protect-yourself.gif>
|
187
|
+
KNOW FRAUD(TM) <http://discover.qrs1.net/s/r?l=5901&m=101BN3c3ce68600277550d> Know Fraud and Keep Your Identity Safe
|
188
|
+
|
189
|
+
Discover Card is a proud participant in the Know Fraudô campaign, a national initiative led by the Federal Government to prevent identity theft. Learn easy ways to protect your identity, how identity thieves work and more.
|
190
|
+
|
191
|
+
Get informed! <http://discover.qrs1.net/s/r?l=5892&m=101BN3c3ce68600277550d>
|
192
|
+
|
193
|
+
Return to TOP
|
194
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
195
|
+
Save More Money <http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/0102-save-money.gif>
|
196
|
+
Strunk and White <http://discover.qrs1.net/s/r?l=5899&m=101BN3c3ce68600277550d> Get a special Cashback Bonus award
|
197
|
+
|
198
|
+
Barnes & Noble.com <http://discover.qrs1.net/s/r?l=5899&m=101BN3c3ce68600277550d> Get a 7% Cashback BonusÆ award** when you use your Discover Card to buy anything from Barnes & Noble.com. Plus, get FREE SHIPPING when you purchase two or more items in a single order.
|
199
|
+
|
200
|
+
Hurry and stock up on all books, textbooks, movies, posters, music and more, only at Barnes & Noble.com <http://discover.qrs1.net/s/r?l=5899&m=101BN3c3ce68600277550d>.
|
201
|
+
|
202
|
+
Return to TOP
|
203
|
+
<http://a948.g.akamai.net/7/948/166/01/discover.qrs1.net/images/orange-hr_body.gif>
|
204
|
+
IMPORTANT INFORMATION
|
205
|
+
|
206
|
+
PLEASE DO NOT REPLY TO THIS E-MAIL
|
207
|
+
|
208
|
+
This e-mail was sent to: emclaug@enron.com
|
209
|
+
|
210
|
+
You are receiving this e-mail because you are a registered Discover Card Account Center user and have subscribed to receive e-mail newsletters from Discover Card.
|
211
|
+
|
212
|
+
To unsubscribe click here <http://discover.qrs1.net/s/r?l=5891&m=101BN3c3ce68600277550d>, log in to the Account Center, and change your settings.
|
213
|
+
|
214
|
+
To update your e-mail address, or change your Account Center preferences, click here <http://discover.qrs1.net/s/r?l=5891&m=101BN3c3ce68600277550d> and log in.
|
215
|
+
|
216
|
+
If you have questions about your Account, please e-mail us through Secure Messages <http://discover.qrs1.net/s/r?l=5897&m=101BN3c3ce68600277550d> and we will be happy to assist you.
|
217
|
+
|
218
|
+
Discover Card takes your online security seriously. Enjoy 100% Fraud Protection <http://discover.qrs1.net/s/r?l=5904&m=101BN3c3ce68600277550d> against unauthorized transactions whenever you use your Discover Card, online or off. So, you can rest easy when you use your Discover Card.
|
219
|
+
|
220
|
+
We respect your privacy. To view our privacy policy online, visit Discovercard.com <http://discover.qrs1.net/s/r?l=5895&m=101BN3c3ce68600277550d>
|
221
|
+
|
222
|
+
* Discover Financial Services is not associated with CSFA. Citizens' Scholarship Foundation of America, Families of Freedom Scholarship Fund and all associated logos are trademarks of Citizens' Scholarship Foundation of America.
|
223
|
+
|
224
|
+
** Special Cashback Bonus award Terms and Conditions:
|
225
|
+
For Cardmembers who participate in the Cashback Bonus program. This special Cashback Bonus award is separate from your annual Cashback Bonus award you may receive from Discover Card, and is not part of the Discover Card Cashback Bonus award calculation method. If, as of the date we determine whether you meet the terms of this offer, your Account is closed or delinquent, you will not receive this special Cashback Bonus award. Please allow 6 to 8 weeks for your special Cashback Bonus award to be credited to your Discover Card Account. Offer not transferable.
|
226
|
+
|
227
|
+
©2002 Discover Bank. Member FDIC.
|
228
|
+
|
229
|
+
<http://discover.qrs1.net/images/dot.gif?msgid=101BN3c3ce68600277550d>
|
230
|
+
|
231
|
+
-------=aaaaaaaaaa0--
|
@@ -0,0 +1,33 @@
|
|
1
|
+
Recieved: from nahou-mscnx06p.corp.enron.com ([192.168.110.237]) by NAHOU-MSMBX03V.corp.enron.com with Microsoft SMTPSVC(5.0.2195.2966);
|
2
|
+
Tue, 13 Nov 2001 19:08:16 -0800
|
3
|
+
Received: from corp.enron.com ([192.168.110.228]) by nahou-mscnx06p.corp.enron.com with Microsoft SMTPSVC(5.0.2195.2966);
|
4
|
+
Tue, 13 Nov 2001 21:07:21 -0600
|
5
|
+
Received: from mailman.enron.com (unverified) by corp.enron.com
|
6
|
+
(Content Technologies SMTPRS 4.2.1) with ESMTP id <T5a0a774841c0a86ee241c@corp.enron.com> for <kwatson@exchange.enron.com>;
|
7
|
+
Tue, 13 Nov 2001 21:07:19 -0600
|
8
|
+
Received: from smtp011.mail.yahoo.com (smtp011.mail.yahoo.com [216.136.173.31])
|
9
|
+
by mailman.enron.com (8.11.4/8.11.4/corp-1.06) with ESMTP id g343Bbl58584
|
10
|
+
for <kimberly.watson@enron.com>; Tue, 13 Nov 2001 21:07:07 -0600 (CST)
|
11
|
+
Received: from unknown (HELO localhost) (youdd5o2o449465@219.133.84.88 with login)
|
12
|
+
by smtp011.mail.yahoo.com with SMTP; Wed, 14 Nov 2001 03:13:54 -0000
|
13
|
+
MIME-Version: 1.0
|
14
|
+
From: 3712f2@msa.hinet.net
|
15
|
+
To: brucegemini@yahoo.com.tw
|
16
|
+
Subject: 4d8119¡@(¤j¸ÉªwÄѱM½æ) ¤j®a»¡^»y ¨C¤éÅ¥MP3 (2004¦~6¤ë¥÷) ÁcÅ餤¤å¥úºÐª© (^»y±Ð¾Ç)¡@8afb90
|
17
|
+
BCc: Array
|
18
|
+
Content-Type: text/html; charset="big5"
|
19
|
+
Content-Transfer-Encoding:
|
20
|
+
Message-ID: <11107978796724623>
|
21
|
+
|
22
|
+
<html>
|
23
|
+
<body>
|
24
|
+
<font color="#FFFFFF">9bbf38a544f990e73cd12f3c56c60e6180edebd31d752d3997fa4c0650d6aaa338f73f155d5d382832b195b33cbbaa243830c981e12db0c9aac12db9a39836caab5058c0f5efbf326331103f9e1008c106f630fe4d33575efa5d362a28ece62c3fd2a034df2dab92e1f0f664b6179889f4f98a962e2287e336ec652475ccdf7fcdd85f8e025161d8f10c3bd9cc5701c0c7ed1ed84b5b2c01a05eee9e641da8b0</font><BR><BR>
|
25
|
+
<a href="http://%33%36%39%39%2e%32%34%63%63%2e%63%63/">³nÅé«Ò°ê§ó·s¨³³t</a>
|
26
|
+
<font color="#FFFFFF">06f630fe4d33575efa5d362a28ece62c3fd2a034df2dab92e1f0f664b6179889f4f98a962e2287e336ec652475ccdf7fcdd85f8e025161d8f10c3bd9cc5701c0c7ed1ed84b5b2c01a05eee9e641da8b09bbf38a544f990e73cd12f3c56c60e6180edebd31d752d3997fa4c0650d6aaa338f73f155d5d382832b195b33cbbaa243830c981e12db0c9aac12db9a39836caab5058c0f5efbf326331103f9e1008c1</font>
|
27
|
+
</body>
|
28
|
+
</html>
|
29
|
+
|
30
|
+
|
31
|
+
_______________________________________________________________________
|
32
|
+
Yahoo! ¤u¨ã¦C - ¤º¸m¨¾¤î¼u¥Xµøµ¡¤u¯à¡I
|
33
|
+
http://toolbar.yahoo.com.hk
|
@@ -0,0 +1,148 @@
|
|
1
|
+
Return-Path: <baocqccyw@hq.lindsayelec.com>
|
2
|
+
Delivered-To: em-ca-bruceg-spam@em.ca
|
3
|
+
Received: (qmail 32184 invoked by uid 700); 28 Mar 2005 01:14:54 -0000
|
4
|
+
Delivered-To: em-ca-em-ca-bruceg@em.ca
|
5
|
+
Received: (qmail 32179 invoked by uid 115); 28 Mar 2005 01:14:54 -0000
|
6
|
+
Received: from baocqccyw@hq.lindsayelec.com by churchill by uid 64011 with qmail-scanner-1.22
|
7
|
+
(clamdscan: 0.75-1. spamassassin: 2.63. Clear:RC:0(200.141.184.56):.
|
8
|
+
Processed in 10.454045 secs); 28 Mar 2005 01:14:54 -0000
|
9
|
+
Received: from dial.suednet.com.br (HELO hq.lindsayelec.com) (200.141.184.56)
|
10
|
+
by churchill.factcomp.com with SMTP; 28 Mar 2005 01:14:42 -0000
|
11
|
+
Return-path: <baocqccyw@hq.lindsayelec.com>
|
12
|
+
From: shavonda Cabral <baocqccyw@hq.lindsayelec.com>
|
13
|
+
To: <em-ca-bruceg@em.ca>
|
14
|
+
Subject: bookkeeping Get in on IGTS asap.
|
15
|
+
Date: Sun, 27 Mar 2005 19:11:59 -0600
|
16
|
+
Reply-To: <baocqccyw@hq.lindsayelec.com>
|
17
|
+
MIME-Version: 1.0
|
18
|
+
X-Virus-Status: Scanned by norton
|
19
|
+
Message-ID: <41314357824.13240873.93296@oxygen-k19.hq.lindsayelec.com>
|
20
|
+
Content-Type: text/plain; charset=us-ascii
|
21
|
+
Content-Transfer-Encoding: plain
|
22
|
+
Content-Length: 5102
|
23
|
+
Lines: 125
|
24
|
+
|
25
|
+
acidness
|
26
|
+
|
27
|
+
Exciting Easter Investor Alert
|
28
|
+
|
29
|
+
Ticker:IGTS
|
30
|
+
Current:0.01
|
31
|
+
Rating:Big Mover Next Week
|
32
|
+
|
33
|
+
This st0ck receives our top rating - 10 out of 10
|
34
|
+
Breaking NEWS (released last night): Intelligent
|
35
|
+
|
36
|
+
Sports, Inc. Offers Affordable Alternative
|
37
|
+
This is the first news release the company put
|
38
|
+
out since November - this is going to be exciting
|
39
|
+
stock play
|
40
|
+
|
41
|
+
Jump on board while you can - Don't regret It later
|
42
|
+
|
43
|
+
About the Company:
|
44
|
+
|
45
|
+
Youth And Amateur Sports Company Poised For Growth
|
46
|
+
|
47
|
+
Intelligent Sports, Inc. is a publicly held company
|
48
|
+
trading on the OTC markets under the ticker symbol
|
49
|
+
ìIGTSî. Intelligent Sports will be the holding company
|
50
|
+
for several sports related businesses. Intelligent
|
51
|
+
Sports provides business units with strategic guidance
|
52
|
+
and support in the areas of marketing, sales,
|
53
|
+
sponsorships, partnerships, policy & procedures,
|
54
|
+
finance and expansion. Their initial business launch
|
55
|
+
is to develop youth and amateur sports centers
|
56
|
+
throughout the country that offers a year-round
|
57
|
+
sports calendar with emphasis on youth and amateur
|
58
|
+
sports programs and skill development. Their plan
|
59
|
+
is to expand this concept into membership-based,
|
60
|
+
multi-purpose sports facilities that will promote
|
61
|
+
a diverse range of sports programs, leagues,
|
62
|
+
tournaments, clinics, individual sports skill
|
63
|
+
development and nutritional training.
|
64
|
+
|
65
|
+
Fresh News:
|
66
|
+
|
67
|
+
UPLAND, Calif., Mar 22, 2005 (PRIMEZONE via COMTEX)
|
68
|
+
Participation fees for school sports programs
|
69
|
+
continues to escalate, at the same time record
|
70
|
+
obesity levels in children are being reported by
|
71
|
+
the Center for Disease Control. Intelligent Sports,
|
72
|
+
Inc. (Pink Sheets:IGTS) is working to do their part
|
73
|
+
to curb this alarming trend of by offering affordable
|
74
|
+
fitness centers to kids.
|
75
|
+
|
76
|
+
"The time when school sports programs had enrollment
|
77
|
+
fees of $10 is fading," said former NBA star and
|
78
|
+
Intelligent Sports, Inc. board member, Reggie Theus.
|
79
|
+
"Not every parent is willing to pay $300 enrollment
|
80
|
+
fees for a sport their child is only casually
|
81
|
+
interested in; some parents can't afford to pay that
|
82
|
+
much for a sport their child excels at."
|
83
|
+
|
84
|
+
According to the President's Council on Physical
|
85
|
+
Fitness and Sports, only 17 percent of middle and
|
86
|
+
junior high schools and 2 percent of senior high
|
87
|
+
schools require daily physical activity for all
|
88
|
+
students. Hoping to fill the gap, The Sports Zone
|
89
|
+
by Intelligent Sports will support a wide range of
|
90
|
+
membership-based after-school sports programs,
|
91
|
+
weekend leagues and tournaments promoting individual
|
92
|
+
athletic skill development, the concepts of teamwork
|
93
|
+
and discipline, and a love of the game.
|
94
|
+
|
95
|
+
The Sports Zone opened in early October in Upland,
|
96
|
+
California. It encompasses a 10,000 square foot
|
97
|
+
facility featuring two basketball courts and caters
|
98
|
+
to court sports including basketball, volleyball,
|
99
|
+
cheerleading, and wrestling, and also has the ability
|
100
|
+
to host soccer, football and other field-related
|
101
|
+
athletic activity within the complex arena.
|
102
|
+
|
103
|
+
+++++++++++++++++++++++++++
|
104
|
+
IGTS is expected to Explode All Next Week Be Sure
|
105
|
+
To Get It Immediately, and profit big!
|
106
|
+
++++++++++++++++++++++++++++
|
107
|
+
|
108
|
+
Disclaimer
|
109
|
+
|
110
|
+
This publication is not registered investment advisor,
|
111
|
+
The information presented above is not an offer to
|
112
|
+
buy or sell securities it contains "forward looking
|
113
|
+
statements" within the meaning of Section 27A of the
|
114
|
+
Securities Act of 1933 and Section 21B of the
|
115
|
+
Securities Exchange Act of 1934. Any statements that
|
116
|
+
express or involve discussions with respect to
|
117
|
+
predictions, goals, expectations, beliefs, plans,
|
118
|
+
projections, objectives, assumptions or future events
|
119
|
+
or performance are not statements of historical fact
|
120
|
+
and may be "forward looking statements." In compliance
|
121
|
+
with Section 17(b), the publishers of this report
|
122
|
+
disclose the holding of IGTS shares prior to the
|
123
|
+
publication of this report. Be aware of an inherent
|
124
|
+
conflict of interest resulting from such holdings
|
125
|
+
due to our intent to profit from the liquidation
|
126
|
+
of these shares. Shares may be sold at any time,
|
127
|
+
even after positive statements have been made
|
128
|
+
regarding the above company. Since we own shares,
|
129
|
+
there is an inherent conflict of interest in our
|
130
|
+
statements and opinions. Readers of this publication
|
131
|
+
are cautioned not to place undue reliance on forward
|
132
|
+
looking statements, which are based on certain
|
133
|
+
assumptions and expectations involving various risks
|
134
|
+
and uncertainties, that could cause results to differ
|
135
|
+
materially from those set forth in the forward- looking
|
136
|
+
statements. Please be advised that nothing within this
|
137
|
+
email shall constitute a solicitation or an offer to
|
138
|
+
buy or sell any security mentioned herein. This newsletter
|
139
|
+
is neither a registered investment advisor nor affiliated
|
140
|
+
with any broker or dealer. All statements made are our
|
141
|
+
express opinion only and should be treated as such. We
|
142
|
+
may own, buy and sell any securities mentioned at any
|
143
|
+
time. This report includes forward-looking statements
|
144
|
+
within the meaning of The Private Securities Litigation
|
145
|
+
Reform Act of 1995. This newsletter was paid
|
146
|
+
41 500, from third party to send this report. Please do
|
147
|
+
your own diligence before investing in any profiled company.
|
148
|
+
You may lose money from investing. caddis worktable
|
data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_qp_with_space.eml
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
Return-Path: <fyouizjnp@swissonline.ch>
|
2
|
+
Delivered-To: em-ca-bait-precedes@em.ca
|
3
|
+
Received: (qmail 7622 invoked by uid 115); 7 Nov 2004 21:30:59 -0000
|
4
|
+
Received: from fyouizjnp@swissonline.ch by churchill by uid 64011 with qmail-scanner-1.22
|
5
|
+
(clamdscan: 0.75-1. spamassassin: 2.63. Clear:RC:0(222.47.112.31):.
|
6
|
+
Processed in 1.163709 secs); 07 Nov 2004 21:30:59 -0000
|
7
|
+
Received: from unknown (HELO 209.5.178.248) (222.47.112.31)
|
8
|
+
by churchill.factcomp.com with SMTP; 7 Nov 2004 21:30:57 -0000
|
9
|
+
Message-ID: <qlrqpxforpx$RND_WORDjyeottngpx@sympatico.ca>
|
10
|
+
From: "Wilmer Capps" <fyouizjnp@swissonline.ch>
|
11
|
+
To: bait-passover@em.ca
|
12
|
+
Subject: Low or High Blood Pressure? We can help.
|
13
|
+
Date: Sun, 07 Nov 2004 18:23:56 -0300
|
14
|
+
X-Mailer: gene annulus
|
15
|
+
pneumococcus-polyhedral: belgrade hanoverian lima
|
16
|
+
MIME-Version: 1.0
|
17
|
+
Content-Type: multipart/alternative;
|
18
|
+
boundary="----=_NextPart_000_003A_5008K66J.3Z4LC80J"
|
19
|
+
|
20
|
+
This is a multi-part message in MIME format.
|
21
|
+
|
22
|
+
------=_NextPart_000_003A_5008K66J.3Z4LC80J
|
23
|
+
Content-Type: text/plain;
|
24
|
+
charset="iso-8859-1"
|
25
|
+
Content-Transfer-Encoding: quoted printable
|
26
|
+
|
27
|
+
If you're in need of a good RX site for online purchases, we are your answer.
|
28
|
+
|
29
|
+
With Tens of Thousands of happy customers who saved huge, you can't go wrong.
|
30
|
+
|
31
|
+
http://magyar8stator.com/26 Lots More Info Here
|
32
|
+
|
33
|
+
Above URL is for more info & if you are interested.
|
34
|
+
------=_NextPart_000_003A_5008K66J.3Z4LC80J
|
35
|
+
Content-Type: text/html;
|
36
|
+
charset="iso-8859-1"
|
37
|
+
Content-Transfer-Encoding: quoted-printable
|
38
|
+
|
39
|
+
If you're in need of a good RX site for online purchases, we are your answ=
|
40
|
+
er.<br>
|
41
|
+
<br>
|
42
|
+
With Tens of Thousands of happy customers who saved huge, you can't go wro=
|
43
|
+
ng.<br>
|
44
|
+
<br>
|
45
|
+
<a href=3D"http://magyar8stator.com/26">Lots More Info Here</a><br>
|
46
|
+
<br>
|
47
|
+
<br>
|
48
|
+
Above URL is for more info & if you are interested.<br>
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
------=_NextPart_000_003A_5008K66J.3Z4LC80J--
|