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,44 @@
|
|
1
|
+
Received: from nahou-mscnx06p.corp.enron.com ([192.168.110.237]) by napdx-msmbx01v.corp.enron.com with Microsoft SMTPSVC(5.0.2195.1600);
|
2
|
+
Sun, 19 Aug 2001 04:06:57 -0800
|
3
|
+
Received: from corp.enron.com ([192.168.110.226]) by nahou-mscnx06p.corp.enron.com with Microsoft SMTPSVC(5.0.2195.2966);
|
4
|
+
Sun, 19 Aug 2001 06:06:02 -0600
|
5
|
+
Received: from mailman.enron.com (unverified) by corp.enron.com
|
6
|
+
(Content Technologies SMTPRS 4.2.1) with ESMTP id <T5a0a080174c0a86ee241c@corp.enron.com> for <vpimenov@exchange.enron.com>;
|
7
|
+
Sun, 19 Aug 2001 06:04:08 -0600
|
8
|
+
Received: from poetrix.com ([61.146.170.133])
|
9
|
+
by mailman.enron.com (8.11.4/8.11.4/corp-1.06) with ESMTP id g343Bbl38716
|
10
|
+
for <vladi.Pimenov@enron.com>; Sun, 19 Aug 2001 07:03:27 -0500 (CDT)
|
11
|
+
Message-ID: <35FDF82F.D000339@poetrix.com>
|
12
|
+
Date: Sun, 19 Aug 2001 06:31:03 -0700
|
13
|
+
From: "neal ragland" <shechem@poetrix.com>
|
14
|
+
User-Agent: AspMail 3.06
|
15
|
+
X-Accept-Language: en-us
|
16
|
+
MIME-Version: 1.0
|
17
|
+
To: "palmer vladi.Pimenovraud" <vladi.Pimenov@enron.com>
|
18
|
+
Suvladi.Pimenovject: For a vladi.Pimenovetter and more promising future just check eke
|
19
|
+
Content-Type: text/plain;
|
20
|
+
charset="us-ascii"
|
21
|
+
Content-Transfer-Encoding: 7vladi.Pimenovit
|
22
|
+
|
23
|
+
middagh oldusercompare
|
24
|
+
othermachine one-twist natascha mz05 ntsoft netvladi.Pimenovr
|
25
|
+
|
26
|
+
|
27
|
+
We supply high quality medications vladi.Pimenovy mail order at very competitive prices
|
28
|
+
and provide a professional, convenient and affordavladi.Pimenovle means of purchasing
|
29
|
+
your presc_ription medicines online
|
30
|
+
Depresion-an"xiety, Antivladi.Pimenoviotic, Wt Loss, Women's Health, Mus-cle Relaxants,
|
31
|
+
Sleeping Aids, Allergies and Paain Relief. Your tastes will vladi.Pimenove met here with
|
32
|
+
600 medications
|
33
|
+
Hscearpomh http://fi.com.adherentgood.com/?2NX1q/vladi.Pimenoviayimh
|
34
|
+
|
35
|
+
|
36
|
+
more people are using it for quicker rx refill
|
37
|
+
|
38
|
+
|
39
|
+
When you're not with me?Well darling Im telling you now
|
40
|
+
Im no good without you anyhowAnd have I told you lately that I love you
|
41
|
+
|
42
|
+
Or you and I, If I only had wings of a little angel
|
43
|
+
|
44
|
+
|
@@ -0,0 +1,50 @@
|
|
1
|
+
Return-Path: <hzwfrkq@hintontile.com>
|
2
|
+
Delivered-To: rait@bruce-guenter.dyndns.org
|
3
|
+
Received: (qmail 12977 invoked from network); 6 May 2005 10:58:40 -0000
|
4
|
+
Received: from localhost (localhost [127.0.0.1])
|
5
|
+
by bruce-guenter.dyndns.org ([192.168.1.3]); 06 May 2005 10:58:40 -0000
|
6
|
+
Received: from zak.futurequest.net ([127.0.0.1])
|
7
|
+
by localhost ([127.0.0.1])
|
8
|
+
with SMTP via TCP; 06 May 2005 10:58:40 -0000
|
9
|
+
Received: (qmail 2252 invoked from network); 6 May 2005 10:58:39 -0000
|
10
|
+
Received: from lsne-catv-dhcp-29-115.urbanet.ch (unknown [80.238.29.115])
|
11
|
+
by zak.futurequest.net ([69.5.6.152])
|
12
|
+
with SMTP via TCP; 06 May 2005 10:58:29 -0000
|
13
|
+
Received: from mail.datavalet.com (80.238.29.115)
|
14
|
+
by 80.238.29.115 (fairwayv.4) with SMTP
|
15
|
+
id <09166i58p>
|
16
|
+
(Authid: 3811297); Fri, 06 May 2005 10:52:01 -0100
|
17
|
+
Reply-To: "chianfong cuthbert" <abhijit.862153drinnan@datavalet.com>
|
18
|
+
From: "chianfong cuthbert" <abhijit.862153drinnan@datavalet.com>
|
19
|
+
To: cvs@bruce-guenter.dyndns.org
|
20
|
+
Cc: rait@bruce-guenter.dyndns.org
|
21
|
+
Subject: RE: We will help you refinance your home.
|
22
|
+
Date: Fri, 06 May 2005 15:55:01 +0400
|
23
|
+
MIME-Version: 1.0
|
24
|
+
Content-Type: multipart/alternative;
|
25
|
+
boundary="--651790_269334.01570"
|
26
|
+
Content-Length: 636
|
27
|
+
Lines: 22
|
28
|
+
|
29
|
+
----651790_269334.01570
|
30
|
+
Content-Type: text/html;
|
31
|
+
charset="iso-8859-1"
|
32
|
+
Content-Transfer-Encoding: text/html
|
33
|
+
|
34
|
+
Hello,<p>
|
35
|
+
|
36
|
+
You have qualified for the lowest rate in years.<br>
|
37
|
+
You could get over $400,000 for as little as $500 a month.<br>
|
38
|
+
Low rates are fixed no matter what.<p>
|
39
|
+
|
40
|
+
Please visit the link below to verify your information:<br>
|
41
|
+
<a href="http://www.lenxzc.com/index2.php?refid=malx">Approval Form</a><p>
|
42
|
+
|
43
|
+
Best Regards,<br>
|
44
|
+
chianfong cuthbert, Account Manager<br>
|
45
|
+
Reynolds Associates, LLC<p>
|
46
|
+
<p>
|
47
|
+
--------------------<br>
|
48
|
+
if you received this in error: <a href="http://www.lenxzc.com/r.php">re-m0-ve</a>
|
49
|
+
|
50
|
+
----651790_269334.01570--
|
@@ -0,0 +1,770 @@
|
|
1
|
+
Recieved: from nahou-mscnx06p.corp.enron.com ([192.168.110.237]) by NAHOU-MSMBX07V.corp.enron.com with Microsoft SMTPSVC(5.0.2195.2966);
|
2
|
+
Wed, 5 Dec 2001 02:00:07 -0600
|
3
|
+
Received: from corp.enron.com ([192.168.110.226]) by nahou-mscnx06p.corp.enron.com with Microsoft SMTPSVC(5.0.2195.2966);
|
4
|
+
Wed, 5 Dec 2001 02:00:19 -0600
|
5
|
+
Received: from mailman.enron.com (unverified) by corp.enron.com
|
6
|
+
(Content Technologies SMTPRS 4.2.1) with ESMTP id <T57a1235b18c0a86ee2718@corp.enron.com> for <jdasovic@exchange.enron.com>;
|
7
|
+
Wed, 5 Dec 2001 02:00:03 -0600
|
8
|
+
Received: from mail2.provantage.com (adsl-64-108-84-28.dsl.akrnoh.ameritech.net [64.108.84.28])
|
9
|
+
by mailman.enron.com (8.11.4/8.11.4/corp-1.06) with ESMTP id fB57xSl15666
|
10
|
+
for <jeff_dasovich@enron.com>; Wed, 5 Dec 2001 01:59:29 -0600 (CST)
|
11
|
+
Message-Id: <200112050759.fB57xSl15666@mailman.enron.com>
|
12
|
+
Received: from aaa (W3NEW [65.192.161.22]) by mail2.provantage.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13)
|
13
|
+
id XBHNSC17; Tue, 4 Dec 2001 19:27:33 -0500
|
14
|
+
Date: Tue, 04 Dec 2001 17:11:25 -0459
|
15
|
+
MIME-Version: 1.0
|
16
|
+
X-Mailer: J4L-GFIMailer
|
17
|
+
X-Expid: jajenardmeremesyi
|
18
|
+
To: jeff_dasovich@enron.com
|
19
|
+
Subject: The Original Advantage #e13011
|
20
|
+
Reply-To: announcements@provantage.com
|
21
|
+
X-Priority: 3
|
22
|
+
X-JMSavedFile: D:\HTML Mailer\Outbound 29457673512957792\mail43379.eml
|
23
|
+
Sender: "announcements@provantage.com" <announcements@provantage.com>
|
24
|
+
From: "announcements@provantage.com" <announcements@provantage.com>
|
25
|
+
Content-Transfer-Encoding: 8bits
|
26
|
+
Content-Type: text/html; charset="ISO-8859-1"
|
27
|
+
Return-Path: announcements@provantage.com
|
28
|
+
|
29
|
+
<html>
|
30
|
+
<head>
|
31
|
+
<meta name="description" content="The Computer Products Superstore. Supplying the world since 1984 with guaranteed lowest prices, huge inventory, easy ordering, and super fast service.">
|
32
|
+
<title>PROVANTAGE.COM : The Original Advantage</title>
|
33
|
+
<style><!--
|
34
|
+
A:visited{color:#000066};A:link{color:#0000CC};
|
35
|
+
//--></style>
|
36
|
+
</head>
|
37
|
+
<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" rightmargin="0" bgcolor="#FFFFFF" text="#000000" link="#0000CC" vlink="#000066" alink="#FF0000">
|
38
|
+
<div align="center">
|
39
|
+
<center>
|
40
|
+
<table width=600><tr><td align=right width=100%>
|
41
|
+
<p align="center"><map name="FPMap0">
|
42
|
+
<area href="http://www.provantage.com" shape="rect" coords="437, 3, 589, 43"></map><img border="0" src="http://www.provantage.com/groupwork.jpg" width="600" height="149" usemap="#FPMap0"></p>
|
43
|
+
</td></tr></table>
|
44
|
+
</center>
|
45
|
+
</div>
|
46
|
+
<div align="center">
|
47
|
+
<table width=600 border=0 cellspacing=0 cellpadding=0>
|
48
|
+
<tr><td cellpadding=0 cellspacing=0 align=left>
|
49
|
+
<table border="0" width="100%">
|
50
|
+
<tr>
|
51
|
+
<td width="100%">
|
52
|
+
<table border="0" width="100%">
|
53
|
+
<tr>
|
54
|
+
<td width="100%" colspan="2">
|
55
|
+
<hr color="#000000" size="1">
|
56
|
+
</td>
|
57
|
+
</tr>
|
58
|
+
<tr>
|
59
|
+
<td width="67%"><b><font face="verdana,arial,helvetica" size="1">
|
60
|
+
<!--webbot
|
61
|
+
bot="Timestamp" S-Type="EDITED" S-Format="%B %d, %Y" startspan -->December 04, 2001<!--webbot
|
62
|
+
bot="Timestamp" endspan i-checksum="39475" -->
|
63
|
+
</font></b></td>
|
64
|
+
<td width="33%">
|
65
|
+
<p align="right"><font face="verdana,arial,helvetica" size="1">Can't
|
66
|
+
read this email? <a href="http://www.provantage.com/scripts/go.dll/e13011_RD/e13011">Click
|
67
|
+
here</a></font></td>
|
68
|
+
</tr>
|
69
|
+
<tr>
|
70
|
+
<td width="67%"><font size="1" face="verdana,arial,helvetica"><b>Issue#:
|
71
|
+
</b>e13011</font></td>
|
72
|
+
<td width="33%" rowspan="2">
|
73
|
+
<p align="right"><font face="verdana,arial,helvetica" size="1">To
|
74
|
+
unsubscribe from the <br>
|
75
|
+
Original Advantage <a href="http://www.provantage.com/unsubscribe.htm" target="_top">Click
|
76
|
+
here<i><br>
|
77
|
+
</i></a><i>(Do Not Reply to this email)</i></font></p>
|
78
|
+
</td>
|
79
|
+
</tr>
|
80
|
+
<tr>
|
81
|
+
<td width="67%"><font size="1" face="verdana,arial,helvetica"><b><font color="#FF0000">PRO</font>VANTAGE
|
82
|
+
Customer:</b> jeff_dasovich@enron.com</font></td>
|
83
|
+
</tr>
|
84
|
+
<tr>
|
85
|
+
<td width="100%" colspan="2">
|
86
|
+
<hr color="#000000" size="1">
|
87
|
+
</td>
|
88
|
+
</tr>
|
89
|
+
</table>
|
90
|
+
</td>
|
91
|
+
</tr>
|
92
|
+
</table>
|
93
|
+
</td></tr>
|
94
|
+
</table>
|
95
|
+
</div>
|
96
|
+
<center>
|
97
|
+
<table width=600 border=0 cellpadding=8 cellspacing=0>
|
98
|
+
<tr>
|
99
|
+
<!VR>
|
100
|
+
<!EVR>
|
101
|
+
<td valign=top align=center width=70%>
|
102
|
+
<center>
|
103
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
104
|
+
<tr bgcolor="#000099"><td cellpadding=0 cellspacing=0 bgcolor="#024003">
|
105
|
+
<div align="center">
|
106
|
+
<center>
|
107
|
+
<table cellpadding=4 style="border-collapse: collapse" bordercolor="#111111" cellspacing="0"><tr><td>
|
108
|
+
<b><font face="verdana,arial,helvetica" size="4" color="#FFFFFF">Holiday Gift
|
109
|
+
Ideas for the Computer Professional!</font></b><font size="4"> </font>
|
110
|
+
</td></table></center>
|
111
|
+
</div>
|
112
|
+
</td></tr>
|
113
|
+
<tr><td width=100%>
|
114
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
115
|
+
<tr>
|
116
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
117
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
118
|
+
<tr>
|
119
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
120
|
+
<table width=100%><tr><td>
|
121
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
122
|
+
<tr>
|
123
|
+
<td align=center valign=top>
|
124
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_1/FP_64790.HTM"><img src=http://www.provantage.com/HW_64790.GIF width=80 border=0></a>
|
125
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
126
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_1/FP_64790.HTM">11Mbps Wireless Cable/DSL Router</a> <br>By Belkin
|
127
|
+
</b></font>
|
128
|
+
<table width=100% cellpadding=4>
|
129
|
+
<tr>
|
130
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
131
|
+
The Belkin Wireless Cable/DSL Gateway Router lets you share files and a broadband Internet connection among all your computers-without using cables. It's <nobr><i><small>...<a href="http://www.provantage.com/FP_64790.HTM?BELW007">More</a></small></i></nobr>
|
132
|
+
</font></td>
|
133
|
+
</tr>
|
134
|
+
</table>
|
135
|
+
</td></tr>
|
136
|
+
</table>
|
137
|
+
</td></tr></table>
|
138
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
139
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$201.42 </b></font></font></td>
|
140
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/BELW007"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
141
|
+
</tr></table>
|
142
|
+
</td>
|
143
|
+
</tr>
|
144
|
+
</table></td>
|
145
|
+
</tr>
|
146
|
+
</table>
|
147
|
+
<hr color="#000000" size="1">
|
148
|
+
<tr><td width=100%>
|
149
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
150
|
+
<tr>
|
151
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
152
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
153
|
+
<tr>
|
154
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
155
|
+
<table width=100%><tr><td>
|
156
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
157
|
+
<tr>
|
158
|
+
<td align=center valign=top>
|
159
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_2/FP_63903.HTM"><img src=http://www.provantage.com/BELV003.GIF width=80 border=0></a>
|
160
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
161
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_2/FP_63903.HTM">Nostromo n45 Dual Analog USB Gamepad</a> <br>By Belkin
|
162
|
+
</b></font>
|
163
|
+
<table width=100% cellpadding=4>
|
164
|
+
<tr>
|
165
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
166
|
+
The Nostromo n45 USB game pad's advanced ergonomic design, dual analog and USB-compatibility make the n45 innovative PC game pad to hit the market in years. <nobr><i><small>...<a href="http://www.provantage.com/FP_63903.HTM?BELV003">More</a></small></i></nobr>
|
167
|
+
</font></td>
|
168
|
+
</tr>
|
169
|
+
</table>
|
170
|
+
</td></tr>
|
171
|
+
</table>
|
172
|
+
</td></tr></table>
|
173
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
174
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$12.31 </b></font></font></td>
|
175
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/BELV003"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
176
|
+
</tr></table>
|
177
|
+
</td>
|
178
|
+
</tr>
|
179
|
+
</table></td>
|
180
|
+
</tr>
|
181
|
+
</table>
|
182
|
+
<hr color="#000000" size="1">
|
183
|
+
<tr><td width=100%>
|
184
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
185
|
+
<tr>
|
186
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
187
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
188
|
+
<tr>
|
189
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
190
|
+
<table width=100%><tr><td>
|
191
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
192
|
+
<tr>
|
193
|
+
<td align=center valign=top>
|
194
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_3/FP_62272.HTM"><img src=http://www.provantage.com/MCSW00M.GIF width=80 border=0></a>
|
195
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
196
|
+
<i><b><font color="#FF0000">New!</font></b></i><br><br>
|
197
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_3/FP_62272.HTM">Plus! for Windows XP</a> <br>By Microsoft
|
198
|
+
</b></font>
|
199
|
+
<table width=100% cellpadding=4>
|
200
|
+
<tr>
|
201
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
202
|
+
Personalize your computer experience like never before.
|
203
|
+
<br>Built exclusively to take advantage of the power of Windows XP, MS Plus! delivers exciting <nobr><i><small>...<a href="http://www.provantage.com/FP_62272.HTM?MCSW00M">More</a></small></i></nobr>
|
204
|
+
</font></td>
|
205
|
+
</tr>
|
206
|
+
</table>
|
207
|
+
</td></tr>
|
208
|
+
</table>
|
209
|
+
</td></tr></table>
|
210
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
211
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$33.47 </b></font></font></td>
|
212
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/MCSW00M"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
213
|
+
</tr></table>
|
214
|
+
</td>
|
215
|
+
</tr>
|
216
|
+
</table></td>
|
217
|
+
</tr>
|
218
|
+
</table>
|
219
|
+
<hr color="#000000" size="1">
|
220
|
+
<tr><td width=100%>
|
221
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
222
|
+
<tr>
|
223
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
224
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
225
|
+
<tr>
|
226
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
227
|
+
<table width=100%><tr><td>
|
228
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
229
|
+
<tr>
|
230
|
+
<td align=center valign=top>
|
231
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_4/FP_61943.HTM"><img src=http://www.provantage.com/HW_61943.GIF width=80 border=0></a>
|
232
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
233
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_4/FP_61943.HTM">iPAQ H3670 Color Pocket PC</a> <br>By Compaq
|
234
|
+
</b></font>
|
235
|
+
<table width=100% cellpadding=4>
|
236
|
+
<tr>
|
237
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
238
|
+
You want to do more with life? The iPAQ Pocket PC H3670 is designed to ride along on the voyage of life-in your pocket or mounted to your mountain bike. <nobr><i><small>...<a href="http://www.provantage.com/FP_61943.HTM?CMPH02J">More</a></small></i></nobr>
|
239
|
+
</font></td>
|
240
|
+
</tr>
|
241
|
+
</table>
|
242
|
+
</td></tr>
|
243
|
+
</table>
|
244
|
+
</td></tr></table>
|
245
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
246
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$465.50 </b></font></font></td>
|
247
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/CMPH02J"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
248
|
+
</tr></table>
|
249
|
+
</td>
|
250
|
+
</tr>
|
251
|
+
</table></td>
|
252
|
+
</tr>
|
253
|
+
</table>
|
254
|
+
<hr color="#000000" size="1">
|
255
|
+
<tr><td width=100%>
|
256
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
257
|
+
<tr>
|
258
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
259
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
260
|
+
<tr>
|
261
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
262
|
+
<table width=100%><tr><td>
|
263
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
264
|
+
<tr>
|
265
|
+
<td align=center valign=top>
|
266
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_5/FP_56731.HTM"><img src=http://www.provantage.com/HW_56731.GIF width=80 border=0></a>
|
267
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
268
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_5/FP_56731.HTM">FireWire Hub 6-Port</a> <br>By IOGEAR
|
269
|
+
</b></font>
|
270
|
+
<table width=100% cellpadding=4>
|
271
|
+
<tr>
|
272
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
273
|
+
IOGEAR's FireWire hubs provide 1394a compliant ports that support data transfer rates of 100, 200 and 400 Mbps (megabits per second), and automatically <nobr><i><small>...<a href="http://www.provantage.com/FP_56731.HTM?IOGR00T">More</a></small></i></nobr>
|
274
|
+
</font></td>
|
275
|
+
</tr>
|
276
|
+
</table>
|
277
|
+
</td></tr>
|
278
|
+
</table>
|
279
|
+
</td></tr></table>
|
280
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
281
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$60.09 </b></font></font></td>
|
282
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/IOGR00T"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
283
|
+
</tr></table>
|
284
|
+
</td>
|
285
|
+
</tr>
|
286
|
+
</table></td>
|
287
|
+
</tr>
|
288
|
+
</table>
|
289
|
+
<hr color="#000000" size="1">
|
290
|
+
<tr><td width=100%>
|
291
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
292
|
+
<tr>
|
293
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
294
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
295
|
+
<tr>
|
296
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
297
|
+
<table width=100%><tr><td>
|
298
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
299
|
+
<tr>
|
300
|
+
<td align=center valign=top>
|
301
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_6/FP_43835.HTM"><img src=http://www.provantage.com/HW_43835.GIF width=80 border=0></a>
|
302
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
303
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_6/FP_43835.HTM">HomeConnect 10/100 Mbps Dual Speed Ethernet 5-Port</a> <br>By 3Com
|
304
|
+
</b></font>
|
305
|
+
<table width=100% cellpadding=4>
|
306
|
+
<tr>
|
307
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
308
|
+
Share an Internet connection among several computers (Your Internet service provider may charge additional fees.). Surf Web sites, send e-mail, download <nobr><i><small>...<a href="http://www.provantage.com/FP_43835.HTM?3COO03L">More</a></small></i></nobr>
|
309
|
+
</font></td>
|
310
|
+
</tr>
|
311
|
+
</table>
|
312
|
+
</td></tr>
|
313
|
+
</table>
|
314
|
+
</td></tr></table>
|
315
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
316
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$41.76 </b></font></font></td>
|
317
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/3COO03L"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
318
|
+
</tr></table>
|
319
|
+
</td>
|
320
|
+
</tr>
|
321
|
+
</table></td>
|
322
|
+
</tr>
|
323
|
+
</table>
|
324
|
+
<hr color="#000000" size="1">
|
325
|
+
<tr><td width=100%>
|
326
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
327
|
+
<tr>
|
328
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
329
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
330
|
+
<tr>
|
331
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
332
|
+
<table width=100%><tr><td>
|
333
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
334
|
+
<tr>
|
335
|
+
<td align=center valign=top>
|
336
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_7/FP_62263.HTM"><img src=http://www.provantage.com/SW_62263.GIF width=80 border=0></a>
|
337
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
338
|
+
<i><b><font color="#FF0000">New!</font></b></i><br><br>
|
339
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_7/FP_62263.HTM">Links 2001 Expansion Pack Volume 1</a> <br>By Microsoft
|
340
|
+
</b></font>
|
341
|
+
<table width=100% cellpadding=4>
|
342
|
+
<tr>
|
343
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
344
|
+
Join PGA Tour pros Mike Weir & Keith Clearwater on 4 new courses designed for Links 2001:<li>The Canyons Course at Bighorn, Thanksgiving Point <nobr><i><small>...<a href="http://www.provantage.com/FP_62263.HTM?MSXG008">More</a></small></i></nobr>
|
345
|
+
</font></td>
|
346
|
+
</tr>
|
347
|
+
</table>
|
348
|
+
</td></tr>
|
349
|
+
</table>
|
350
|
+
</td></tr></table>
|
351
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
352
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$20.93 </b></font></font></td>
|
353
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/MSXG008"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
354
|
+
</tr></table>
|
355
|
+
</td>
|
356
|
+
</tr>
|
357
|
+
</table></td>
|
358
|
+
</tr>
|
359
|
+
</table>
|
360
|
+
<hr color="#000000" size="1">
|
361
|
+
<tr><td width=100%>
|
362
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
363
|
+
<tr>
|
364
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
365
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
366
|
+
<tr>
|
367
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
368
|
+
<table width=100%><tr><td>
|
369
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
370
|
+
<tr>
|
371
|
+
<td align=center valign=top>
|
372
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_8/FP_55249.HTM"><img src=http://www.provantage.com/HW_55249.GIF width=80 border=0></a>
|
373
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
374
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_8/FP_55249.HTM">Mavica CD1000 Digital Cam 12Bit 2.1 Pixel 3" CD-R</a> <br>By Sony
|
375
|
+
</b></font>
|
376
|
+
<table width=100% cellpadding=4>
|
377
|
+
<tr>
|
378
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
379
|
+
Start with a high capacity, 156 MB 3" CD-R plus a high resolution, 2.1 megapixel image sensor. Attach it to a high-powered 52mm 10x optical zoom lens and <nobr><i><small>...<a href="http://www.provantage.com/FP_55249.HTM?SNYI01C">More</a></small></i></nobr>
|
380
|
+
</font></td>
|
381
|
+
</tr>
|
382
|
+
</table>
|
383
|
+
</td></tr>
|
384
|
+
</table>
|
385
|
+
</td></tr></table>
|
386
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
387
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$908.56 </b></font></font></td>
|
388
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/SNYI01C"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
389
|
+
</tr></table>
|
390
|
+
</td>
|
391
|
+
</tr>
|
392
|
+
</table></td>
|
393
|
+
</tr>
|
394
|
+
</table>
|
395
|
+
<hr color="#000000" size="1">
|
396
|
+
<tr><td width=100%>
|
397
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
398
|
+
<tr>
|
399
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
400
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
401
|
+
<tr>
|
402
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
403
|
+
<table width=100%><tr><td>
|
404
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
405
|
+
<tr>
|
406
|
+
<td align=center valign=top>
|
407
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_9/FP_61615.HTM"><img src=http://www.provantage.com/HW_61615.GIF width=80 border=0></a>
|
408
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
409
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_9/FP_61615.HTM">Wireless Bluetooth PC Card</a> <br>By 3Com
|
410
|
+
</b></font>
|
411
|
+
<table width=100% cellpadding=4>
|
412
|
+
<tr>
|
413
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
414
|
+
Personal Connections - Instantly
|
415
|
+
<br>For spontaneous connections between your notebook PC and other Bluetooth devices, as well as "light" network <nobr><i><small>...<a href="http://www.provantage.com/FP_61615.HTM?3COM36W">More</a></small></i></nobr>
|
416
|
+
</font></td>
|
417
|
+
</tr>
|
418
|
+
</table>
|
419
|
+
</td></tr>
|
420
|
+
</table>
|
421
|
+
</td></tr></table>
|
422
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
423
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$109.31 </b></font></font></td>
|
424
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/3COM36W"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
425
|
+
</tr></table>
|
426
|
+
</td>
|
427
|
+
</tr>
|
428
|
+
</table></td>
|
429
|
+
</tr>
|
430
|
+
</table>
|
431
|
+
<hr color="#000000" size="1">
|
432
|
+
<tr><td width=100%>
|
433
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
434
|
+
<tr>
|
435
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
436
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
437
|
+
<tr>
|
438
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
439
|
+
<table width=100%><tr><td>
|
440
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
441
|
+
<tr>
|
442
|
+
<td align=center valign=top>
|
443
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_10/FP_20090.HTM"><img src=http://www.provantage.com/HW_20090.GIF width=80 border=0></a>
|
444
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
445
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_10/FP_20090.HTM">MultiSync LCD1830 18in LCD Flat Panel Display</a> <br>By NEC/Mitsubishi
|
446
|
+
</b></font>
|
447
|
+
<table width=100% cellpadding=4>
|
448
|
+
<tr>
|
449
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
450
|
+
For users who need superior image quality in a small space, the MultiSync LCD Series monitors deliver bright, sharp screen performance in a slim, lightweight <nobr><i><small>...<a href="http://www.provantage.com/FP_20090.HTM?NECL00Y">More</a></small></i></nobr>
|
451
|
+
</font></td>
|
452
|
+
</tr>
|
453
|
+
</table>
|
454
|
+
</td></tr>
|
455
|
+
</table>
|
456
|
+
</td></tr></table>
|
457
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
458
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$833.05 </b></font></font></td>
|
459
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/NECL00Y"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
460
|
+
</tr></table>
|
461
|
+
</td>
|
462
|
+
</tr>
|
463
|
+
</table></td>
|
464
|
+
</tr>
|
465
|
+
</table>
|
466
|
+
<hr color="#000000" size="1">
|
467
|
+
<tr><td width=100%>
|
468
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
469
|
+
<tr>
|
470
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
471
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
472
|
+
<tr>
|
473
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
474
|
+
<table width=100%><tr><td>
|
475
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
476
|
+
<tr>
|
477
|
+
<td align=center valign=top>
|
478
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_11/FP_60941.HTM"><img src=http://www.provantage.com/SW_60941.GIF width=80 border=0></a>
|
479
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
480
|
+
<i><b><font color="#FF0000">New!</font></b></i><br><br>
|
481
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_11/FP_60941.HTM">MechCommander 2</a> <br>By Microsoft
|
482
|
+
</b></font>
|
483
|
+
<table width=100% cellpadding=4>
|
484
|
+
<tr>
|
485
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
486
|
+
Take control of an entire company of the most fearsome military machines in history - BattleMechs!
|
487
|
+
<br>As a MechCommander, you command a unit of <nobr><i><small>...<a href="http://www.provantage.com/FP_60941.HTM?MSXG009">More</a></small></i></nobr>
|
488
|
+
</font></td>
|
489
|
+
</tr>
|
490
|
+
</table>
|
491
|
+
</td></tr>
|
492
|
+
</table>
|
493
|
+
</td></tr></table>
|
494
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
495
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$24.02 </b></font></font></td>
|
496
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/MSXG009"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
497
|
+
</tr></table>
|
498
|
+
</td>
|
499
|
+
</tr>
|
500
|
+
</table></td>
|
501
|
+
</tr>
|
502
|
+
</table>
|
503
|
+
<hr color="#000000" size="1">
|
504
|
+
<tr><td width=100%>
|
505
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
506
|
+
<tr>
|
507
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
508
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
509
|
+
<tr>
|
510
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
511
|
+
<table width=100%><tr><td>
|
512
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
513
|
+
<tr>
|
514
|
+
<td align=center valign=top>
|
515
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_12/FP_57209.HTM"><img src=http://www.provantage.com/HW_57209.GIF width=80 border=0></a>
|
516
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
517
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_12/FP_57209.HTM">DSP-500 Digitally-Enhanced USB Gaming/Multimedia</a> <br>By Plantronics
|
518
|
+
</b></font>
|
519
|
+
<table width=100% cellpadding=4>
|
520
|
+
<tr>
|
521
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
522
|
+
Plantronics' DSP-500 digitally-enhanced gaming/multimedia headset with full-range stereo sound. Perfect for multimedia applications such as games, CDs <nobr><i><small>...<a href="http://www.provantage.com/FP_57209.HTM?PLAH008">More</a></small></i></nobr>
|
523
|
+
</font></td>
|
524
|
+
</tr>
|
525
|
+
</table>
|
526
|
+
</td></tr>
|
527
|
+
</table>
|
528
|
+
</td></tr></table>
|
529
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
530
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$78.99 </b></font></font></td>
|
531
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/PLAH008"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
532
|
+
</tr></table>
|
533
|
+
</td>
|
534
|
+
</tr>
|
535
|
+
</table></td>
|
536
|
+
</tr>
|
537
|
+
</table>
|
538
|
+
<hr color="#000000" size="1">
|
539
|
+
<tr><td width=100%>
|
540
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
541
|
+
<tr>
|
542
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
543
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
544
|
+
<tr>
|
545
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
546
|
+
<table width=100%><tr><td>
|
547
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
548
|
+
<tr>
|
549
|
+
<td align=center valign=top>
|
550
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_13/FP_64167.HTM"><img src=http://www.provantage.com/HW_64167.GIF width=80 border=0></a>
|
551
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
552
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_13/FP_64167.HTM">RipGo! Handheld 4X6 Mini USB CD Burner/MP3 Player</a> <br>By Imation
|
553
|
+
</b></font>
|
554
|
+
<table width=100% cellpadding=4>
|
555
|
+
<tr>
|
556
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
557
|
+
Whether you're a music enthusiast or a mobile business professional, the Imation RipGO! device will satisfy the creative urges of your imagination. Designed <nobr><i><small>...<a href="http://www.provantage.com/FP_64167.HTM?3MDS229">More</a></small></i></nobr>
|
558
|
+
</font></td>
|
559
|
+
</tr>
|
560
|
+
</table>
|
561
|
+
</td></tr>
|
562
|
+
</table>
|
563
|
+
</td></tr></table>
|
564
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
565
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$369.96 </b></font></font></td>
|
566
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/3MDS229"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
567
|
+
</tr></table>
|
568
|
+
</td>
|
569
|
+
</tr>
|
570
|
+
</table></td>
|
571
|
+
</tr>
|
572
|
+
</table>
|
573
|
+
<hr color="#000000" size="1">
|
574
|
+
<tr><td width=100%>
|
575
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
576
|
+
<tr>
|
577
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
578
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
579
|
+
<tr>
|
580
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
581
|
+
<table width=100%><tr><td>
|
582
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
583
|
+
<tr>
|
584
|
+
<td align=center valign=top>
|
585
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_14/FP_61638.HTM"><img src=http://www.provantage.com/HW_61638.GIF width=80 border=0></a>
|
586
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
587
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_14/FP_61638.HTM">CD-RW Drive 16X/10X/40X USB 2.0 Drive w/USB 2.0</a> <br>By IOGEAR
|
588
|
+
</b></font>
|
589
|
+
<table width=100% cellpadding=4>
|
590
|
+
<tr>
|
591
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
592
|
+
Drive. Unlock the power of the new Hi-Speed USB 2.0. IOGEAR's IMPULSE Drive. Burns at a blazing 16x speed, allowing you to create CDs faster than ever <nobr><i><small>...<a href="http://www.provantage.com/FP_61638.HTM?IOGR015">More</a></small></i></nobr>
|
593
|
+
</font></td>
|
594
|
+
</tr>
|
595
|
+
</table>
|
596
|
+
</td></tr>
|
597
|
+
</table>
|
598
|
+
</td></tr></table>
|
599
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
600
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$188.54 </b></font></font></td>
|
601
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/IOGR015"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
602
|
+
</tr></table>
|
603
|
+
</td>
|
604
|
+
</tr>
|
605
|
+
</table></td>
|
606
|
+
</tr>
|
607
|
+
</table>
|
608
|
+
<hr color="#000000" size="1">
|
609
|
+
<tr><td width=100%>
|
610
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
611
|
+
<tr>
|
612
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
613
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
614
|
+
<tr>
|
615
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
616
|
+
<table width=100%><tr><td>
|
617
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
618
|
+
<tr>
|
619
|
+
<td align=center valign=top>
|
620
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_15/FP_61994.HTM"><img src=http://www.provantage.com/HW_61994.GIF width=80 border=0></a>
|
621
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
622
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_15/FP_61994.HTM">Spressa CRX175A-A1 Drive 24x/10x/40x Int EIDE</a> <br>By Sony
|
623
|
+
</b></font>
|
624
|
+
<table width=100% cellpadding=4>
|
625
|
+
<tr>
|
626
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
627
|
+
Receive a $30 rebate direct from Sony on SNYC97M purchases between 10/01/01 and 12/31/01. <nobr><i><small>
|
628
|
+
<a href="http://www.provantage.com/FP_61994.HTM?SNYC97M">... More</a></small></i></nobr><a href="http://www.provantage.com/FP_61994.HTM?SNYC97M">
|
629
|
+
</a>
|
630
|
+
</font></td>
|
631
|
+
</tr>
|
632
|
+
</table>
|
633
|
+
</td></tr>
|
634
|
+
</table>
|
635
|
+
</td></tr></table>
|
636
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
637
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$145.46 </b></font></font></td>
|
638
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/SNYC97M"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
639
|
+
</tr></table>
|
640
|
+
</td>
|
641
|
+
</tr>
|
642
|
+
</table></td>
|
643
|
+
</tr>
|
644
|
+
</table>
|
645
|
+
<hr color="#000000" size="1">
|
646
|
+
<tr><td width=100%>
|
647
|
+
<table bgcolor="#FFFFFF" width=100% border=0 cellpadding=0 cellspacing=0>
|
648
|
+
<tr>
|
649
|
+
<td width=100% cellpadding=0 cellspacing=0>
|
650
|
+
<table width=100% border=0 cellpadding=0 cellspacing=0>
|
651
|
+
<tr>
|
652
|
+
<td bgcolor=#FFFFFF cellpadding=0 cellspacing=0>
|
653
|
+
<table width=100%><tr><td>
|
654
|
+
<table width=100% border=0 cellpadding=10 cellspacing=0>
|
655
|
+
<tr>
|
656
|
+
<td align=center valign=top>
|
657
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_16/FP_58749.HTM"><img src=http://www.provantage.com/SNYI02K.GIF width=80 border=0></a>
|
658
|
+
</td><td width=100% align=left valign=middle><font size=-1 face="verdana,arial,helvetica"><b>
|
659
|
+
<a href="http://www.provantage.com/scripts/go.dll/e13011_16/FP_58749.HTM">Digital Voice Recorder w/No Software</a> <br>By Sony
|
660
|
+
</b></font>
|
661
|
+
<table width=100% cellpadding=4>
|
662
|
+
<tr>
|
663
|
+
<td><font size=-1 face="verdana,arial,helvetica">
|
664
|
+
Features Include<li>World's first memory stick Digital voice recorder <li>Uses removable MS (memory stick) <li>Recording time: 63 min (SP)/131 min <nobr><i><small>...<a href="http://www.provantage.com/FP_58749.HTM?SNYI02K">More</a></small></i></nobr>
|
665
|
+
</font></td>
|
666
|
+
</tr>
|
667
|
+
</table>
|
668
|
+
</td></tr>
|
669
|
+
</table>
|
670
|
+
</td></tr></table>
|
671
|
+
<table width=100% border=0 cellpadding=2 cellspacing=0><tr>
|
672
|
+
<td width=100% valign=bottom align=right><font size=-1 face="verdana,arial,helvetica"> <font color="#FF0000" size=3><b>$195.68 </b></font></font></td>
|
673
|
+
<td align=right width=48><a href="http://www.provantage.com/scripts/cart.dll/f/e13011/add/SNYI02K"><img src="http://www.provantage.com/b9buy.gif" align=center border=0 width=40 height=17></a></td>
|
674
|
+
</tr></table>
|
675
|
+
</td>
|
676
|
+
</tr>
|
677
|
+
</table></td>
|
678
|
+
</tr>
|
679
|
+
</table>
|
680
|
+
<hr color="#000000" size="1">
|
681
|
+
</center>
|
682
|
+
</td></tr></table>
|
683
|
+
</center>
|
684
|
+
</td></tr></table>
|
685
|
+
<br>
|
686
|
+
<div align="center">
|
687
|
+
<center>
|
688
|
+
<table bgcolor="#024003" width=100% bordercolor="#024003" style="border-collapse: collapse" cellpadding="0" cellspacing="0"><tr>
|
689
|
+
<td align=right width=100% bgcolor="#024003">
|
690
|
+
</td></tr></table>
|
691
|
+
</center>
|
692
|
+
</div>
|
693
|
+
<p align="center"><b><font face="verdana,arial,helvetica" size="2">Web
|
694
|
+
Address: </font></b><font color="#FFFFFF" face="verdana,arial,helvetica" size="2"><a href="http://www.PROVANTAGE.com">www.PROVANTAGE.com</a> </font><font face="verdana,arial,helvetica" size="2"><br>
|
695
|
+
<b>Toll Free:</b> 800-336-1166 <b>Fax:</b>
|
696
|
+
330-494-5260 <b>email:</b> <a href="mailto:sales@provantage.com">sales@provantage.com</a></font>
|
697
|
+
</center>
|
698
|
+
<div align="center">
|
699
|
+
<center>
|
700
|
+
<table border="0" width="600">
|
701
|
+
<tr>
|
702
|
+
<td width="100%" align="center"><font face="verdana,arial,helvetica" size="2"><a href="http://www.provantage.com/fpolicy.htm"><br>
|
703
|
+
Privacy
|
704
|
+
Policy</a> | <a href="http://www.provantage.com/fterms.htm">Terms &
|
705
|
+
Conditions</a> | <a href="http://www.provantage.com/scripts/add2list.dll/f/0">FREE
|
706
|
+
Catalog</a></font>
|
707
|
+
</td>
|
708
|
+
</tr>
|
709
|
+
</center>
|
710
|
+
<tr>
|
711
|
+
<td width="100%">
|
712
|
+
<table border="0" width="100%">
|
713
|
+
<tr>
|
714
|
+
<td width="100%">
|
715
|
+
<p><font face="verdana,arial,helvetica" size="1"><b>©2001
|
716
|
+
PROVANTAGE Corporation, 7249 Whipple Ave. NW, North Canton, OH 44720</b></font></td>
|
717
|
+
</tr>
|
718
|
+
<center>
|
719
|
+
<tr>
|
720
|
+
<td width="100%"><font size="1" face="arial,helvetica">Products,
|
721
|
+
prices, terms, conditions, or offers may change at any time. Company
|
722
|
+
and/or product names are generally trademarks, or registered trademarks
|
723
|
+
of their respective companies. Some promotional text may be copyrighted
|
724
|
+
by the product's manufacturer. </font></td>
|
725
|
+
</tr>
|
726
|
+
</table>
|
727
|
+
</center>
|
728
|
+
</td>
|
729
|
+
</tr>
|
730
|
+
<tr>
|
731
|
+
<td width="100%" height="2">
|
732
|
+
</td>
|
733
|
+
</tr>
|
734
|
+
<tr>
|
735
|
+
<td width="100%">
|
736
|
+
<font face="arial,helvetica" size="1" color="#000066">
|
737
|
+
The
|
738
|
+
Original Advantage promotional email is delivered only to customers of
|
739
|
+
PROVANTAGE Corporation. PROVANTAGE customers have purchased products in
|
740
|
+
the past and submitted their email address as part of the checkout
|
741
|
+
process. Or, customers have entered their name in the "Add to Email
|
742
|
+
List" box on the PROVANTAGE.com home page. Any customer may unsubscribe from the list at any time by going
|
743
|
+
to <a href="http://www.provantage.com/unsubscribe.htm">http://www.provantage.com/unsubscribe.htm</a>.
|
744
|
+
The email address is permanently removed from additional promotional
|
745
|
+
electronic mailings, and will not be reactivated unless requested by the
|
746
|
+
customer.
|
747
|
+
</font>
|
748
|
+
</td>
|
749
|
+
</tr>
|
750
|
+
<tr>
|
751
|
+
<td width="100%">
|
752
|
+
<table border="0" width="100%">
|
753
|
+
<tr>
|
754
|
+
<td width="50%">
|
755
|
+
<p align="left">
|
756
|
+
<a target="_blank" href="http://www.gomez.com/certification/verify.asp?topcat_id=25&firm_id=2828">
|
757
|
+
<img src="http://a1796.g.akamaitech.net/7/1796/915/0e2a9207bd489a/images.gomez.com/images/certified/certified_logo.gif" border=0 width="111" height="50"></a> </td>
|
758
|
+
<td width="50%">
|
759
|
+
<p align="right">
|
760
|
+
<a href="http://www.bizrate.com/merchant/reports/index.xpml?mid=21449" target="bizrate.com"><img src="http://medals.bizrate.com/medals/medal_litebg_124x55.gif" alt="BizRate Customer Certified (GOLD) Site" width="124" height="55" ALIGN="top" border="0" target="_blank"></a>
|
761
|
+
</td>
|
762
|
+
</tr>
|
763
|
+
</table>
|
764
|
+
</td>
|
765
|
+
</tr>
|
766
|
+
</table>
|
767
|
+
</div>
|
768
|
+
</body>
|
769
|
+
</html>
|
770
|
+
|