rack-mail_exception 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (321) hide show
  1. data/.document +5 -0
  2. data/.gitignore +22 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +38 -0
  5. data/Rakefile +56 -0
  6. data/VERSION +1 -0
  7. data/lib/rack/mail_exception.rb +103 -0
  8. data/test/helper.rb +13 -0
  9. data/test/test_rack_mail_exception.rb +93 -0
  10. data/vendor/mail/.bundle/config +2 -0
  11. data/vendor/mail/CHANGELOG.rdoc +370 -0
  12. data/vendor/mail/Dependencies.txt +3 -0
  13. data/vendor/mail/Gemfile +17 -0
  14. data/vendor/mail/README.rdoc +572 -0
  15. data/vendor/mail/ROADMAP +92 -0
  16. data/vendor/mail/Rakefile +41 -0
  17. data/vendor/mail/TODO.rdoc +9 -0
  18. data/vendor/mail/lib/mail.rb +76 -0
  19. data/vendor/mail/lib/mail/attachments_list.rb +99 -0
  20. data/vendor/mail/lib/mail/body.rb +287 -0
  21. data/vendor/mail/lib/mail/configuration.rb +67 -0
  22. data/vendor/mail/lib/mail/core_extensions/blank.rb +26 -0
  23. data/vendor/mail/lib/mail/core_extensions/nil.rb +11 -0
  24. data/vendor/mail/lib/mail/core_extensions/string.rb +27 -0
  25. data/vendor/mail/lib/mail/elements.rb +14 -0
  26. data/vendor/mail/lib/mail/elements/address.rb +306 -0
  27. data/vendor/mail/lib/mail/elements/address_list.rb +74 -0
  28. data/vendor/mail/lib/mail/elements/content_disposition_element.rb +30 -0
  29. data/vendor/mail/lib/mail/elements/content_location_element.rb +25 -0
  30. data/vendor/mail/lib/mail/elements/content_transfer_encoding_element.rb +24 -0
  31. data/vendor/mail/lib/mail/elements/content_type_element.rb +35 -0
  32. data/vendor/mail/lib/mail/elements/date_time_element.rb +26 -0
  33. data/vendor/mail/lib/mail/elements/envelope_from_element.rb +34 -0
  34. data/vendor/mail/lib/mail/elements/message_ids_element.rb +29 -0
  35. data/vendor/mail/lib/mail/elements/mime_version_element.rb +26 -0
  36. data/vendor/mail/lib/mail/elements/phrase_list.rb +21 -0
  37. data/vendor/mail/lib/mail/elements/received_element.rb +30 -0
  38. data/vendor/mail/lib/mail/encodings.rb +258 -0
  39. data/vendor/mail/lib/mail/encodings/7bit.rb +31 -0
  40. data/vendor/mail/lib/mail/encodings/8bit.rb +31 -0
  41. data/vendor/mail/lib/mail/encodings/base64.rb +33 -0
  42. data/vendor/mail/lib/mail/encodings/binary.rb +31 -0
  43. data/vendor/mail/lib/mail/encodings/quoted_printable.rb +38 -0
  44. data/vendor/mail/lib/mail/encodings/transfer_encoding.rb +58 -0
  45. data/vendor/mail/lib/mail/envelope.rb +35 -0
  46. data/vendor/mail/lib/mail/field.rb +223 -0
  47. data/vendor/mail/lib/mail/field_list.rb +33 -0
  48. data/vendor/mail/lib/mail/fields.rb +35 -0
  49. data/vendor/mail/lib/mail/fields/bcc_field.rb +56 -0
  50. data/vendor/mail/lib/mail/fields/cc_field.rb +55 -0
  51. data/vendor/mail/lib/mail/fields/comments_field.rb +41 -0
  52. data/vendor/mail/lib/mail/fields/common/address_container.rb +16 -0
  53. data/vendor/mail/lib/mail/fields/common/common_address.rb +125 -0
  54. data/vendor/mail/lib/mail/fields/common/common_date.rb +42 -0
  55. data/vendor/mail/lib/mail/fields/common/common_field.rb +50 -0
  56. data/vendor/mail/lib/mail/fields/common/common_message_id.rb +43 -0
  57. data/vendor/mail/lib/mail/fields/common/parameter_hash.rb +52 -0
  58. data/vendor/mail/lib/mail/fields/content_description_field.rb +19 -0
  59. data/vendor/mail/lib/mail/fields/content_disposition_field.rb +69 -0
  60. data/vendor/mail/lib/mail/fields/content_id_field.rb +63 -0
  61. data/vendor/mail/lib/mail/fields/content_location_field.rb +42 -0
  62. data/vendor/mail/lib/mail/fields/content_transfer_encoding_field.rb +50 -0
  63. data/vendor/mail/lib/mail/fields/content_type_field.rb +185 -0
  64. data/vendor/mail/lib/mail/fields/date_field.rb +55 -0
  65. data/vendor/mail/lib/mail/fields/from_field.rb +55 -0
  66. data/vendor/mail/lib/mail/fields/in_reply_to_field.rb +55 -0
  67. data/vendor/mail/lib/mail/fields/keywords_field.rb +44 -0
  68. data/vendor/mail/lib/mail/fields/message_id_field.rb +83 -0
  69. data/vendor/mail/lib/mail/fields/mime_version_field.rb +53 -0
  70. data/vendor/mail/lib/mail/fields/optional_field.rb +13 -0
  71. data/vendor/mail/lib/mail/fields/received_field.rb +67 -0
  72. data/vendor/mail/lib/mail/fields/references_field.rb +55 -0
  73. data/vendor/mail/lib/mail/fields/reply_to_field.rb +55 -0
  74. data/vendor/mail/lib/mail/fields/resent_bcc_field.rb +55 -0
  75. data/vendor/mail/lib/mail/fields/resent_cc_field.rb +55 -0
  76. data/vendor/mail/lib/mail/fields/resent_date_field.rb +35 -0
  77. data/vendor/mail/lib/mail/fields/resent_from_field.rb +55 -0
  78. data/vendor/mail/lib/mail/fields/resent_message_id_field.rb +34 -0
  79. data/vendor/mail/lib/mail/fields/resent_sender_field.rb +62 -0
  80. data/vendor/mail/lib/mail/fields/resent_to_field.rb +55 -0
  81. data/vendor/mail/lib/mail/fields/return_path_field.rb +64 -0
  82. data/vendor/mail/lib/mail/fields/sender_field.rb +67 -0
  83. data/vendor/mail/lib/mail/fields/structured_field.rb +51 -0
  84. data/vendor/mail/lib/mail/fields/subject_field.rb +16 -0
  85. data/vendor/mail/lib/mail/fields/to_field.rb +55 -0
  86. data/vendor/mail/lib/mail/fields/unstructured_field.rb +166 -0
  87. data/vendor/mail/lib/mail/header.rb +262 -0
  88. data/vendor/mail/lib/mail/mail.rb +234 -0
  89. data/vendor/mail/lib/mail/message.rb +1867 -0
  90. data/vendor/mail/lib/mail/network.rb +9 -0
  91. data/vendor/mail/lib/mail/network/delivery_methods/file_delivery.rb +40 -0
  92. data/vendor/mail/lib/mail/network/delivery_methods/sendmail.rb +62 -0
  93. data/vendor/mail/lib/mail/network/delivery_methods/smtp.rb +110 -0
  94. data/vendor/mail/lib/mail/network/delivery_methods/test_mailer.rb +40 -0
  95. data/vendor/mail/lib/mail/network/retriever_methods/imap.rb +18 -0
  96. data/vendor/mail/lib/mail/network/retriever_methods/pop3.rb +149 -0
  97. data/vendor/mail/lib/mail/parsers/address_lists.rb +64 -0
  98. data/vendor/mail/lib/mail/parsers/address_lists.treetop +19 -0
  99. data/vendor/mail/lib/mail/parsers/content_disposition.rb +387 -0
  100. data/vendor/mail/lib/mail/parsers/content_disposition.treetop +46 -0
  101. data/vendor/mail/lib/mail/parsers/content_location.rb +139 -0
  102. data/vendor/mail/lib/mail/parsers/content_location.treetop +20 -0
  103. data/vendor/mail/lib/mail/parsers/content_transfer_encoding.rb +162 -0
  104. data/vendor/mail/lib/mail/parsers/content_transfer_encoding.treetop +20 -0
  105. data/vendor/mail/lib/mail/parsers/content_type.rb +539 -0
  106. data/vendor/mail/lib/mail/parsers/content_type.treetop +58 -0
  107. data/vendor/mail/lib/mail/parsers/date_time.rb +114 -0
  108. data/vendor/mail/lib/mail/parsers/date_time.treetop +11 -0
  109. data/vendor/mail/lib/mail/parsers/envelope_from.rb +194 -0
  110. data/vendor/mail/lib/mail/parsers/envelope_from.treetop +32 -0
  111. data/vendor/mail/lib/mail/parsers/message_ids.rb +45 -0
  112. data/vendor/mail/lib/mail/parsers/message_ids.treetop +15 -0
  113. data/vendor/mail/lib/mail/parsers/mime_version.rb +144 -0
  114. data/vendor/mail/lib/mail/parsers/mime_version.treetop +19 -0
  115. data/vendor/mail/lib/mail/parsers/phrase_lists.rb +45 -0
  116. data/vendor/mail/lib/mail/parsers/phrase_lists.treetop +15 -0
  117. data/vendor/mail/lib/mail/parsers/received.rb +71 -0
  118. data/vendor/mail/lib/mail/parsers/received.treetop +11 -0
  119. data/vendor/mail/lib/mail/parsers/rfc2045.rb +464 -0
  120. data/vendor/mail/lib/mail/parsers/rfc2045.treetop +36 -0
  121. data/vendor/mail/lib/mail/parsers/rfc2822.rb +5318 -0
  122. data/vendor/mail/lib/mail/parsers/rfc2822.treetop +410 -0
  123. data/vendor/mail/lib/mail/parsers/rfc2822_obsolete.rb +3757 -0
  124. data/vendor/mail/lib/mail/parsers/rfc2822_obsolete.treetop +241 -0
  125. data/vendor/mail/lib/mail/part.rb +102 -0
  126. data/vendor/mail/lib/mail/parts_list.rb +34 -0
  127. data/vendor/mail/lib/mail/patterns.rb +30 -0
  128. data/vendor/mail/lib/mail/utilities.rb +181 -0
  129. data/vendor/mail/lib/mail/version.rb +10 -0
  130. data/vendor/mail/lib/mail/version_specific/ruby_1_8.rb +97 -0
  131. data/vendor/mail/lib/mail/version_specific/ruby_1_9.rb +87 -0
  132. data/vendor/mail/lib/tasks/corpus.rake +125 -0
  133. data/vendor/mail/lib/tasks/treetop.rake +10 -0
  134. data/vendor/mail/mail.gemspec +20 -0
  135. data/vendor/mail/reference/US ASCII Table.txt +130 -0
  136. data/vendor/mail/reference/rfc1035 Domain Implementation and Specification.txt +3083 -0
  137. data/vendor/mail/reference/rfc1049 Content-Type Header Field for Internet Messages.txt +451 -0
  138. data/vendor/mail/reference/rfc1344 Implications of MIME for Internet Mail Gateways.txt +586 -0
  139. data/vendor/mail/reference/rfc1345 Character Mnemonics & Character Sets.txt +5761 -0
  140. data/vendor/mail/reference/rfc1524 A User Agent Configuration Mechanism For Multimedia Mail Format Information.txt +675 -0
  141. data/vendor/mail/reference/rfc1652 SMTP Service Extension for 8bit-MIMEtransport.txt +339 -0
  142. data/vendor/mail/reference/rfc1892 Multipart Report .txt +227 -0
  143. data/vendor/mail/reference/rfc1893 Mail System Status Codes.txt +843 -0
  144. data/vendor/mail/reference/rfc2045 Multipurpose Internet Mail Extensions (1).txt +1739 -0
  145. data/vendor/mail/reference/rfc2046 Multipurpose Internet Mail Extensions (2).txt +2467 -0
  146. data/vendor/mail/reference/rfc2047 Multipurpose Internet Mail Extensions (3).txt +843 -0
  147. data/vendor/mail/reference/rfc2048 Multipurpose Internet Mail Extensions (4).txt +1180 -0
  148. data/vendor/mail/reference/rfc2049 Multipurpose Internet Mail Extensions (5).txt +1347 -0
  149. data/vendor/mail/reference/rfc2111 Content-ID and Message-ID URLs.txt +283 -0
  150. data/vendor/mail/reference/rfc2183 Content-Disposition Header Field.txt +675 -0
  151. data/vendor/mail/reference/rfc2231 MIME Parameter Value and Encoded Word Extensions.txt +563 -0
  152. data/vendor/mail/reference/rfc2387 MIME Multipart-Related Content-type.txt +563 -0
  153. data/vendor/mail/reference/rfc2821 Simple Mail Transfer Protocol.txt +3711 -0
  154. data/vendor/mail/reference/rfc2822 Internet Message Format.txt +2859 -0
  155. data/vendor/mail/reference/rfc3462 Reporting of Mail System Administrative Messages.txt +396 -0
  156. data/vendor/mail/reference/rfc3696 Checking and Transformation of Names.txt +898 -0
  157. data/vendor/mail/reference/rfc4155 The application-mbox Media Type.txt +502 -0
  158. data/vendor/mail/reference/rfc4234 Augmented BNF for Syntax Specifications: ABNF.txt +899 -0
  159. data/vendor/mail/reference/rfc822 Standard for the Format of ARPA Internet Text Messages.txt +2900 -0
  160. data/vendor/mail/spec/environment.rb +15 -0
  161. data/vendor/mail/spec/features/making_a_new_message.feature +14 -0
  162. data/vendor/mail/spec/features/steps/env.rb +6 -0
  163. data/vendor/mail/spec/features/steps/making_a_new_message_steps.rb +11 -0
  164. data/vendor/mail/spec/fixtures/attachments/basic_email.eml +31 -0
  165. data/vendor/mail/spec/fixtures/attachments/test.gif +0 -0
  166. data/vendor/mail/spec/fixtures/attachments/test.jpg +0 -0
  167. data/vendor/mail/spec/fixtures/attachments/test.pdf +0 -0
  168. data/vendor/mail/spec/fixtures/attachments/test.png +0 -0
  169. data/vendor/mail/spec/fixtures/attachments/test.tiff +0 -0
  170. data/vendor/mail/spec/fixtures/attachments/test.zip +0 -0
  171. data/vendor/mail/spec/fixtures/attachments//343/201/246/343/201/231/343/201/250.txt +2 -0
  172. data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_content_disposition.eml +29 -0
  173. data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_content_location.eml +32 -0
  174. data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_message_rfc822.eml +92 -0
  175. data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_only_email.eml +17 -0
  176. data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_pdf.eml +70 -0
  177. data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_with_encoded_name.eml +47 -0
  178. data/vendor/mail/spec/fixtures/emails/attachment_emails/attachment_with_quoted_filename.eml +60 -0
  179. data/vendor/mail/spec/fixtures/emails/error_emails/cant_parse_from.eml +33 -0
  180. data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_7-bit.eml +231 -0
  181. data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_empty.eml +33 -0
  182. data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_plain.eml +148 -0
  183. data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_qp_with_space.eml +53 -0
  184. data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_spam.eml +44 -0
  185. data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_text-html.eml +50 -0
  186. data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_with_8bits.eml +770 -0
  187. data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_with_semi_colon.eml +269 -0
  188. data/vendor/mail/spec/fixtures/emails/error_emails/content_transfer_encoding_x_uuencode.eml +79 -0
  189. data/vendor/mail/spec/fixtures/emails/error_emails/empty_group_lists.eml +162 -0
  190. data/vendor/mail/spec/fixtures/emails/error_emails/header_fields_with_empty_values.eml +33 -0
  191. data/vendor/mail/spec/fixtures/emails/error_emails/missing_body.eml +16 -0
  192. data/vendor/mail/spec/fixtures/emails/error_emails/missing_content_disposition.eml +43 -0
  193. data/vendor/mail/spec/fixtures/emails/error_emails/multiple_content_types.eml +25 -0
  194. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email11.eml +34 -0
  195. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email12.eml +32 -0
  196. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email2.eml +114 -0
  197. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email4.eml +59 -0
  198. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email7.eml +66 -0
  199. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_encoded_stack_level_too_deep.eml +53 -0
  200. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_illegal_boundary.eml +58 -0
  201. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_mimepart_without_content_type.eml +94 -0
  202. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_multipart_mixed_quoted_boundary.eml +50 -0
  203. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_nested_attachment.eml +100 -0
  204. data/vendor/mail/spec/fixtures/emails/mime_emails/raw_email_with_quoted_illegal_boundary.eml +58 -0
  205. data/vendor/mail/spec/fixtures/emails/mime_emails/sig_only_email.eml +29 -0
  206. data/vendor/mail/spec/fixtures/emails/mime_emails/two_from_in_message.eml +42 -0
  207. data/vendor/mail/spec/fixtures/emails/multi_charset/japanese.eml +9 -0
  208. data/vendor/mail/spec/fixtures/emails/multi_charset/japanese_attachment.eml +27 -0
  209. data/vendor/mail/spec/fixtures/emails/multi_charset/japanese_attachment_long_name.eml +44 -0
  210. data/vendor/mail/spec/fixtures/emails/multipart_report_emails/multi_address_bounce1.eml +179 -0
  211. data/vendor/mail/spec/fixtures/emails/multipart_report_emails/multi_address_bounce2.eml +179 -0
  212. data/vendor/mail/spec/fixtures/emails/multipart_report_emails/report_422.eml +98 -0
  213. data/vendor/mail/spec/fixtures/emails/multipart_report_emails/report_530.eml +97 -0
  214. data/vendor/mail/spec/fixtures/emails/plain_emails/basic_email.eml +31 -0
  215. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email.eml +14 -0
  216. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email10.eml +20 -0
  217. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email5.eml +19 -0
  218. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email6.eml +20 -0
  219. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email8.eml +47 -0
  220. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_bad_time.eml +62 -0
  221. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_double_at_in_header.eml +14 -0
  222. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_incorrect_header.eml +28 -0
  223. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_multiple_from.eml +30 -0
  224. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_quoted_with_0d0a.eml +14 -0
  225. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_reply.eml +32 -0
  226. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_simple.eml +11 -0
  227. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_string_in_date_field.eml +17 -0
  228. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_trailing_dot.eml +21 -0
  229. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_with_bad_date.eml +48 -0
  230. data/vendor/mail/spec/fixtures/emails/plain_emails/raw_email_with_partially_quoted_subject.eml +14 -0
  231. data/vendor/mail/spec/fixtures/emails/rfc2822/example01.eml +8 -0
  232. data/vendor/mail/spec/fixtures/emails/rfc2822/example02.eml +9 -0
  233. data/vendor/mail/spec/fixtures/emails/rfc2822/example03.eml +7 -0
  234. data/vendor/mail/spec/fixtures/emails/rfc2822/example04.eml +7 -0
  235. data/vendor/mail/spec/fixtures/emails/rfc2822/example05.eml +8 -0
  236. data/vendor/mail/spec/fixtures/emails/rfc2822/example06.eml +10 -0
  237. data/vendor/mail/spec/fixtures/emails/rfc2822/example07.eml +9 -0
  238. data/vendor/mail/spec/fixtures/emails/rfc2822/example08.eml +12 -0
  239. data/vendor/mail/spec/fixtures/emails/rfc2822/example09.eml +15 -0
  240. data/vendor/mail/spec/fixtures/emails/rfc2822/example10.eml +15 -0
  241. data/vendor/mail/spec/fixtures/emails/rfc2822/example11.eml +6 -0
  242. data/vendor/mail/spec/fixtures/emails/rfc2822/example12.eml +8 -0
  243. data/vendor/mail/spec/fixtures/emails/rfc2822/example13.eml +10 -0
  244. data/vendor/mail/spec/fixtures/emails/sample_output_multipart +0 -0
  245. data/vendor/mail/spec/mail/attachments_list_spec.rb +214 -0
  246. data/vendor/mail/spec/mail/body_spec.rb +385 -0
  247. data/vendor/mail/spec/mail/configuration_spec.rb +19 -0
  248. data/vendor/mail/spec/mail/core_extensions/string_spec.rb +62 -0
  249. data/vendor/mail/spec/mail/core_extensions_spec.rb +99 -0
  250. data/vendor/mail/spec/mail/elements/address_list_spec.rb +109 -0
  251. data/vendor/mail/spec/mail/elements/address_spec.rb +609 -0
  252. data/vendor/mail/spec/mail/elements/date_time_element_spec.rb +20 -0
  253. data/vendor/mail/spec/mail/elements/envelope_from_element_spec.rb +31 -0
  254. data/vendor/mail/spec/mail/elements/message_ids_element_spec.rb +43 -0
  255. data/vendor/mail/spec/mail/elements/phrase_list_spec.rb +22 -0
  256. data/vendor/mail/spec/mail/elements/received_element_spec.rb +34 -0
  257. data/vendor/mail/spec/mail/encoding_spec.rb +189 -0
  258. data/vendor/mail/spec/mail/encodings/base64_spec.rb +25 -0
  259. data/vendor/mail/spec/mail/encodings/quoted_printable_spec.rb +25 -0
  260. data/vendor/mail/spec/mail/encodings_spec.rb +664 -0
  261. data/vendor/mail/spec/mail/example_emails_spec.rb +303 -0
  262. data/vendor/mail/spec/mail/field_list_spec.rb +33 -0
  263. data/vendor/mail/spec/mail/field_spec.rb +198 -0
  264. data/vendor/mail/spec/mail/fields/bcc_field_spec.rb +89 -0
  265. data/vendor/mail/spec/mail/fields/cc_field_spec.rb +79 -0
  266. data/vendor/mail/spec/mail/fields/comments_field_spec.rb +25 -0
  267. data/vendor/mail/spec/mail/fields/common/address_container_spec.rb +18 -0
  268. data/vendor/mail/spec/mail/fields/common/common_address_spec.rb +132 -0
  269. data/vendor/mail/spec/mail/fields/common/common_date_spec.rb +25 -0
  270. data/vendor/mail/spec/mail/fields/common/common_field_spec.rb +69 -0
  271. data/vendor/mail/spec/mail/fields/common/common_message_id_spec.rb +30 -0
  272. data/vendor/mail/spec/mail/fields/common/parameter_hash_spec.rb +56 -0
  273. data/vendor/mail/spec/mail/fields/content_description_field_spec.rb +39 -0
  274. data/vendor/mail/spec/mail/fields/content_disposition_field_spec.rb +55 -0
  275. data/vendor/mail/spec/mail/fields/content_id_field_spec.rb +117 -0
  276. data/vendor/mail/spec/mail/fields/content_location_field_spec.rb +46 -0
  277. data/vendor/mail/spec/mail/fields/content_transfer_encoding_field_spec.rb +113 -0
  278. data/vendor/mail/spec/mail/fields/content_type_field_spec.rb +678 -0
  279. data/vendor/mail/spec/mail/fields/date_field_spec.rb +73 -0
  280. data/vendor/mail/spec/mail/fields/envelope_spec.rb +48 -0
  281. data/vendor/mail/spec/mail/fields/from_field_spec.rb +89 -0
  282. data/vendor/mail/spec/mail/fields/in_reply_to_field_spec.rb +62 -0
  283. data/vendor/mail/spec/mail/fields/keywords_field_spec.rb +66 -0
  284. data/vendor/mail/spec/mail/fields/message_id_field_spec.rb +147 -0
  285. data/vendor/mail/spec/mail/fields/mime_version_field_spec.rb +166 -0
  286. data/vendor/mail/spec/mail/fields/received_field_spec.rb +44 -0
  287. data/vendor/mail/spec/mail/fields/references_field_spec.rb +35 -0
  288. data/vendor/mail/spec/mail/fields/reply_to_field_spec.rb +67 -0
  289. data/vendor/mail/spec/mail/fields/resent_bcc_field_spec.rb +66 -0
  290. data/vendor/mail/spec/mail/fields/resent_cc_field_spec.rb +66 -0
  291. data/vendor/mail/spec/mail/fields/resent_date_field_spec.rb +39 -0
  292. data/vendor/mail/spec/mail/fields/resent_from_field_spec.rb +66 -0
  293. data/vendor/mail/spec/mail/fields/resent_message_id_field_spec.rb +24 -0
  294. data/vendor/mail/spec/mail/fields/resent_sender_field_spec.rb +58 -0
  295. data/vendor/mail/spec/mail/fields/resent_to_field_spec.rb +66 -0
  296. data/vendor/mail/spec/mail/fields/return_path_field_spec.rb +52 -0
  297. data/vendor/mail/spec/mail/fields/sender_field_spec.rb +58 -0
  298. data/vendor/mail/spec/mail/fields/structured_field_spec.rb +72 -0
  299. data/vendor/mail/spec/mail/fields/to_field_spec.rb +92 -0
  300. data/vendor/mail/spec/mail/fields/unstructured_field_spec.rb +134 -0
  301. data/vendor/mail/spec/mail/header_spec.rb +578 -0
  302. data/vendor/mail/spec/mail/mail_spec.rb +34 -0
  303. data/vendor/mail/spec/mail/message_spec.rb +1409 -0
  304. data/vendor/mail/spec/mail/mime_messages_spec.rb +435 -0
  305. data/vendor/mail/spec/mail/multipart_report_spec.rb +112 -0
  306. data/vendor/mail/spec/mail/network/delivery_methods/file_delivery_spec.rb +79 -0
  307. data/vendor/mail/spec/mail/network/delivery_methods/sendmail_spec.rb +125 -0
  308. data/vendor/mail/spec/mail/network/delivery_methods/smtp_spec.rb +133 -0
  309. data/vendor/mail/spec/mail/network/delivery_methods/test_mailer_spec.rb +57 -0
  310. data/vendor/mail/spec/mail/network/retriever_methods/pop3_spec.rb +180 -0
  311. data/vendor/mail/spec/mail/network_spec.rb +359 -0
  312. data/vendor/mail/spec/mail/parsers/address_lists_parser_spec.rb +15 -0
  313. data/vendor/mail/spec/mail/parsers/content_transfer_encoding_parser_spec.rb +72 -0
  314. data/vendor/mail/spec/mail/part_spec.rb +129 -0
  315. data/vendor/mail/spec/mail/parts_list_spec.rb +12 -0
  316. data/vendor/mail/spec/mail/round_tripping_spec.rb +44 -0
  317. data/vendor/mail/spec/mail/utilities_spec.rb +327 -0
  318. data/vendor/mail/spec/mail/version_specific/escape_paren_1_8_spec.rb +32 -0
  319. data/vendor/mail/spec/matchers/break_down_to.rb +35 -0
  320. data/vendor/mail/spec/spec_helper.rb +163 -0
  321. metadata +442 -0
@@ -0,0 +1,269 @@
1
+ Return-Path: <nsukijamq@morozstudio.tk>
2
+ Delivered-To: cvs@bruce-guenter.dyndns.org
3
+ Received: (qmail 25055 invoked from network); 30 Jun 2005 03:57:11 -0000
4
+ Received: from localhost (localhost [127.0.0.1])
5
+ by bruce-guenter.dyndns.org ([192.168.1.3]); 30 Jun 2005 03:57:11 -0000
6
+ Received: from zak.futurequest.net ([127.0.0.1])
7
+ by localhost ([127.0.0.1])
8
+ with SMTP via TCP; 30 Jun 2005 03:57:11 -0000
9
+ Received: (qmail 20286 invoked from network); 30 Jun 2005 03:57:10 -0000
10
+ Received: from mx-host.dot.tk (unknown [220.173.239.48])
11
+ by zak.futurequest.net ([69.5.6.152])
12
+ with ESMTP via TCP; 30 Jun 2005 03:57:08 -0000
13
+ from: "Shelby" <nsukijamq@morozstudio.tk>
14
+ To: <cvs@bruce-guenter.dyndns.org>
15
+ Subject: Attention
16
+ Date: Wed, 29 Jun 2005 22:57:10 -0600
17
+ MIME-Version: 1.0
18
+ Content-Type: multipart/alternative;
19
+ boundary="----26473166335893217"
20
+ X-Mailer: Microsoft Office Outlook, Build 11.0.5510
21
+ Thread-Index: AcT9+CUlRgRKMiKZSj+BjT+PHEf8rQ==
22
+ X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
23
+ Content-Length: 7044
24
+ Lines: 244
25
+
26
+ This is a multi-part message in MIME format.
27
+
28
+ ------26473166335893217
29
+ Content-Type: text/plain;
30
+ charset="us-ascii"
31
+ Content-Transfer-Encoding: 7bit
32
+
33
+ Dear Homeowner,
34
+
35
+
36
+
37
+ You have been pre-approved for a $402,000 Home Loan at a 3.45% Fixed Rate.
38
+
39
+ This offer is being extended to you unconditionally and your credit is in no
40
+ way a factor.
41
+
42
+
43
+
44
+ To take Advantage of this Limited Time opportunity all
45
+
46
+ we ask is that you visit our Website and complete
47
+
48
+ the 1 minute post Approval Form.
49
+
50
+
51
+
52
+ Enter Here <http://www.lending-blocksx.com/index.php?refid=spr>
53
+
54
+
55
+
56
+ Sincerely,
57
+
58
+
59
+
60
+ Esteban Tanner
61
+
62
+ Regional CEO
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+ Tuuuuurn oooooff notiiificatiiiiions heeeeeeere.
105
+ <http://www.great-mort-gages.com/rem.php>
106
+
107
+
108
+ ------26473166335893217
109
+ Content-Type: text/html;
110
+ charset="us-ascii"
111
+ Content-Transfer-Encoding: quoted-printable;
112
+
113
+ <html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">
114
+
115
+ <head>
116
+ <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
117
+ <meta name=Generator content="Microsoft Word 11 (filtered medium)">
118
+ <style>
119
+ <!--
120
+ /* Style Definitions */
121
+ p.MsoNormal, li.MsoNormal, div.MsoNormal
122
+ {margin:0in;
123
+ margin-bottom:.0001pt;
124
+ font-size:12.0pt;
125
+ font-family:"Times New Roman";}
126
+ a:link, span.MsoHyperlink
127
+ {color:blue;
128
+ text-decoration:underline;}
129
+ a:visited, span.MsoHyperlinkFollowed
130
+ {color:purple;
131
+ text-decoration:underline;}
132
+ span.EmailStyle17
133
+ {mso-style-type:personal-compose;
134
+ font-family:Arial;
135
+ color:windowtext;}
136
+ @page Section1
137
+ {size:8.5in 11.0in;
138
+ margin:1.0in 1.25in 1.0in 1.25in;}
139
+ div.Section1
140
+ {page:Section1;}
141
+ -->
142
+ </style>
143
+
144
+ </head>
145
+
146
+ <body lang=EN-US link=blue vlink=purple>
147
+
148
+ <div class=Section1>
149
+
150
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
151
+ font-family:Arial'>Dear Homeowner,<o:p></o:p></span></font></p>
152
+
153
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
154
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
155
+
156
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
157
+ font-family:Arial'>You have been pre-approved for a $402,000 Home Loan at a
158
+ 3.45% Fixed Rate.<o:p></o:p></span></font></p>
159
+
160
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
161
+ font-family:Arial'>This offer is being extended to you unconditionally and your
162
+ credit is in no way a factor.<o:p></o:p></span></font></p>
163
+
164
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
165
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
166
+
167
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
168
+ font-family:Arial'>To take Advantage of this Limited Time opportunity all<o:p></o:p></span></font></p>
169
+
170
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
171
+ font-family:Arial'>we ask is that you visit our Website and complete<o:p></o:p></span></font></p>
172
+
173
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
174
+ font-family:Arial'>the 1 minute post Approval Form.<o:p></o:p></span></font></p>
175
+
176
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
177
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
178
+
179
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
180
+ font-family:Arial'><a href="http://www.lending-blocksx.com/index.php?refid=spr">Enter Here</a>
181
+ <o:p></o:p></span></font></p>
182
+
183
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
184
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
185
+
186
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
187
+ font-family:Arial'>Sincerely,<o:p></o:p></span></font></p>
188
+
189
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
190
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
191
+
192
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
193
+ font-family:Arial'>Esteban Tanner<o:p></o:p></span></font></p>
194
+
195
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
196
+ font-family:Arial'>Regional CEO<o:p></o:p></span></font></p>
197
+
198
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
199
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
200
+
201
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
202
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
203
+
204
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
205
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
206
+
207
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
208
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
209
+
210
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
211
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
212
+
213
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
214
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
215
+
216
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
217
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
218
+
219
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
220
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
221
+
222
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
223
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
224
+
225
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
226
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
227
+
228
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
229
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
230
+
231
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
232
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
233
+
234
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
235
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
236
+
237
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
238
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
239
+
240
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
241
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
242
+
243
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
244
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
245
+
246
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
247
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
248
+
249
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
250
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
251
+
252
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
253
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
254
+
255
+ <p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
256
+ font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
257
+
258
+ <p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
259
+ 12.0pt'>Tuuuuurn oooooff notiiificatiiiiions <a
260
+ href="http://mrratenow.com/x/st.html" target="_new">heeeeeeere.</a></span></font><font
261
+ size=2 face=Arial><span style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></font></p>
262
+
263
+ </div>
264
+
265
+ </body>
266
+
267
+ </html>
268
+
269
+ ------26473166335893217--
@@ -0,0 +1,79 @@
1
+ Received: from nahou-mscnx06p.corp.enron.com ([192.168.110.237]) by napdx-msmbx01v.corp.enron.com with Microsoft SMTPSVC(5.0.2195.2966);
2
+ Thu, 10 Jan 2002 14:12:53 -0800
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:12:52 -0600
5
+ Received: from mailman.enron.com (unverified) by NAHOU-MSMSW06P.corp.enron.com
6
+ (Content Technologies SMTPRS 4.2.5) with ESMTP id <T585d94ff81c0a86ee487c@NAHOU-MSMSW06P.corp.enron.com>;
7
+ Thu, 10 Jan 2002 16:12:47 -0600
8
+ Received: from tblexch01.transmission.bpa.gov (int.transmission.bpa.gov [206.137.58.133] (may be forged))
9
+ by mailman.enron.com (8.11.4/8.11.4/corp-1.06) with ESMTP id g0AMCB920856;
10
+ Thu, 10 Jan 2002 16:12:11 -0600 (CST)
11
+ Received: from TBLLIST1 ([206.137.58.134]) by tblexch01.transmission.bpa.gov with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21)
12
+ id CRWWC3K1; Thu, 10 Jan 2002 14:11:55 -0800
13
+ Received: from LIST.TRANSMISSION.BPA.GOV by LIST.TRANSMISSION.BPA.GOV
14
+ (LISTSERV-TCP/IP release 1.8c) with spool id 2458 for
15
+ RRGA-L@LIST.TRANSMISSION.BPA.GOV; Thu, 10 Jan 2002 14:13:50 -0800
16
+ Received: from [207.202.136.216] (ip136.r2.d.pdx.nwlink.com [207.202.136.136])
17
+ by comet.pacifier.com (8.11.2/8.11.1) with ESMTP id g0ALxLX06696;
18
+ Thu, 10 Jan 2002 13:59:21 -0800 (PST)
19
+ Mime-Version: 1.0
20
+ X-Sender: lpeters@mail.pacifier.com
21
+ References: <1168BAF252B7D41194810001028D743108913C@SERVER>
22
+ Content-Type: multipart/mixed;
23
+ boundary="============_-1201422494==_============"
24
+ Message-ID: <p05100307b863befdfb67@[207.202.136.216]>
25
+ Date: Thu, 10 Jan 2002 13:59:53 -0800
26
+ Sender: RTO West Regional Representatives Group <RRGA-L@LIST.RTOWEST.ORG>
27
+ From: "Lon L. Peters" <lpeters@PACIFIER.COM>
28
+ Subject: PGP Comments on RTO West Release of Dec. 14
29
+ Comments: cc: ltopaz@gcpud.org, gary.zarker@ci.seattle.wa.us,
30
+ dgodard@gcpud.org, wdobbins@dcpud.org, drobinson@cowlitzpud.org,
31
+ bgeddes@popud.com, "Culbertson, Tim" <tculber@gcpud.org>,
32
+ kknitte@gcpud.org, paula.green@ci.seattle.wa.us,
33
+ jim.harding@ci.seattle.wa.us, ghuhta@cowlitzpud.org,
34
+ dosborn@gcpud.org, jscheel@popud.com, jim.todd@ci.seattle.wa.us,
35
+ CWAGERS@dcpud.org, ali.rodol@ci.seattle.wa.us,
36
+ kevin.clark@ci.seattle.wa.us, bessex@cowlitzpud.org,
37
+ Cindy.Wright@ci.seattle.wa.us, "Juj, Hardev"
38
+ <Hardev.Juj@ci.seattle.wa.us>,
39
+ "Conger, Kurt" <kconger@energyexpertsvcs.com>,
40
+ "Kindley, Ray" <rkindley@schwabe.com>
41
+ To: RRGA-L@LIST.RTOWEST.ORG
42
+ In-Reply-To: <1168BAF252B7D41194810001028D743108913C@SERVER>
43
+ Return-Path: owner-rrga-l@list.rtowest.org
44
+
45
+ --============_-1201422494==_============
46
+ Content-Type: text/plain; charset="us-ascii" ; format="flowed"
47
+
48
+ Attached are the comments of the Public Generating Pool.
49
+ --
50
+ _________________________________
51
+ Lon L. Peters
52
+ Northwest Economic Research, Inc.
53
+ 6765 S.W. Preslynn Drive
54
+ Portland, Oregon 97225-2668
55
+ 503-203-1539 (voice)
56
+ 503-203-1569 (fax)
57
+ 503-709-5942 (mobile)
58
+ lpeters@pacifier.com
59
+
60
+ NOTICE: This communication and its attachments, if any, may contain
61
+ sensitive, privileged, or other confidential information. If you are
62
+ not the intended recipient or believe that you have received this
63
+ communication in error, please notify the sender of this
64
+ communication and delete the copy you received from all storage
65
+ devices. In addition, please do not print, copy, retransmit,
66
+ forward, disseminate, or otherwise use this communication or its
67
+ attachments, if any. Thank you.
68
+
69
+ --============_-1201422494==_============
70
+ Content-Id: <p05100307b863befdfb67@[207.202.136.216].0.0>
71
+ Content-Type: application/msword; name="PGP_Cmts_on_12-14-01_Pkg.doc"
72
+ ; x-mac-type="5738424E"
73
+ ; x-mac-creator="4D535744"
74
+ Content-Disposition: attachment; filename="PGP_Cmts_on_12-14-01_Pkg.doc"
75
+ ; modification-date="Thu, 10 Jan 2002 13:58:10 -0800"
76
+ Content-Transfer-Encoding: x-uuencode
77
+
78
+
79
+ --============_-1201422494==_============--
@@ -0,0 +1,162 @@
1
+ Return-Path: <ceciledwards@sbcglobal.net>
2
+ Received: from murder ([unix socket])
3
+ by i.aaa.net (Cyrus v2.2.12-Invoca-RPM-2.2.12-6.fc4) with LMTPA;
4
+ Thu, 03 Dec 2009 10:50:45 -0800
5
+ X-Sieve: CMU Sieve 2.2
6
+ Received: from smtp.aaa.org (unknown [10.1.1.254])
7
+ by i.aaa.net (Postfix) with ESMTP id B789577FFC
8
+ for <ccc@aaa.net>; Thu, 3 Dec 2009 10:50:44 -0800 (PST)
9
+ Received: from imr-f9b5566049f9cb01.prolexic.com (unknown [10.2.2.254])
10
+ by smtp.aaa.org (Postfix) with ESMTP id 6B026D64546
11
+ for <ccc@aaa.net>; Thu, 3 Dec 2009 12:08:32 -0800 (PST)
12
+ Received: from web82107.mail.mud.yahoo.com (web82107.mail.mud.yahoo.com [209.191.84.220])
13
+ by imr-f9b5566049f9cb01.prolexic.com (Postfix) with SMTP id 6B5392BA0459
14
+ for <ccc@aaa.net>; Thu, 3 Dec 2009 10:50:23 -0800 (PST)
15
+ Received: (qmail 85490 invoked by uid 60001); 3 Dec 2009 18:50:22 -0000
16
+ DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sbcglobal.net; s=s1024; t=1259866222; bh=aBaCpZTcwSmyoRxhnNZNc5KV/Eb3zHvR3BG0svTu0C0=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=cREZCCsrtGfOYR9ckj97DV792GZUX/4Hktzlm5+WBuxdD8Q4XpjRz7dZ1Rei9JOKH8gseoE6KqujBA7EulWGx/XPX5TlDxgO8c2Vk3ae/Qeh38bDJ8MZXRc3dU1w+IMykQyU+qfFKHjkS1sTE7qcmheL1JsTs+BAXtyyqJL+J+4=
17
+ DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws;
18
+ s=s1024; d=sbcglobal.net;
19
+ h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type;
20
+ b=nvmIZcXhl5ZMIwmDabz/TSUlgtHH5VdCGrTn1U6/zkGM1pZvwJgq/BMbY+5o+mwlMz78DrUT9TJwfx48JDz8j4swqWh1dlEfztr4S18hgoVt7RqeuIxGOfOEpa6jlzbgE04EQcKy9ePZsSgOv97IH1Oh8HU7MxPUj1KO9NaKsTA=;
21
+ Message-ID: <203751.85280.qm@web82107.mail.mud.yahoo.com>
22
+ X-YMail-OSG: M3VWGGoVM1mRrN0VVqOo_OuQD_g7jcvHWnqhUlpmVpXhEVZvd0t2zfR8Zvl5BY34dERYPAO_SdtSjPrdGHXgu8LQ7s1z74yCasGWj5jLvgVb.l8helkzU2RuUVfjxzO5AxztzNz1gt0nMG0iY4LrYoHWj1fvC6iduhm_H7LRUzBa5MezeY8soTyY1i0ugmXCgsAYu3etOBvYfwqnNmJmRBBgrgu7LB5aXqiQFTWhxKirD7cQrygLK3QPv7r4utOXt2viJDLFBgITADv.ZMOV5HL7VexNpvTIgDDxfYhDLy8F.h8nTquqIYSUUv5eMZUSbEml.QvSrtj5tjuryeWcIFTL6bHTwDBKNq_0gcEZWWbF_g6XiTjcGPVNDlVXVzni3DMOlt8_cscWGy95q_y2ArbGRrJLO5.0OQPdi6uxNIN.qXGwlijACJTlnpd1_k._CkT5_ivRiof0WAcmszBifAA8PLImnre40_vLQfGQN3cN0QfyYgv_dgVaXBhwkeuBfnthQugsAUbBcifuS7ymi37vSSTYpJ.nuHinkBsm8fVBr3FXNGZXB.YtpcxSSbvhimTtoZviodhD7zG2a1oE.X0GUT6FmsnUwVZPZkw0n_17m9.SSe8Qok8YXc9xfTKJyQAtn2yoMrS5.zMMhoQ8h26dmiXyv2N7V5SjOBYCc7ynqi7H6yPWe7FHQls_arY8vzF8xiC1THpiXJkiN4JHScNPk8aVxwY8L278d3RwSdTKa6CjDw1eIxu9XanW.eB0x3t6_VmuNcDRjhTG022kURXkA6x.UuCrKdP0eiVnSXFI0KiI9Xzhg1AMoiMPZRYDQneEPkgtMw.PJePhfVrOo.svKrGzuk5dG6PDHIqTSmd8MwlhZ56eTsDrakeo3ooVoRW_4oi9vyc7LVaJ32shn5mD5RwNyKhPHvzCAVCc3tc_AwkNqoEehTKOaxWuZc_jVuVB4bjJZsXPGeDqh
23
+ FuKqBNQHUzr8v6AeX3grpz3M_0jE2qPES2GbJEItyat4WrVzA4SerkByWZHS9xNj.j_xbqdnVznbAdftUA4GFjQMZZql1KgFqrOHnhNkp6Z1QO7IQjCDaVwTATJ5h5uEFbKdmr1QPmmFNbFQub.HwmfikVgWNBn90wUKS2CsJf2IEOHSOicDzIMoC6PWzjCXGGZHZMRcSmtaIXkZ4UYELtiQQCBRgZWh7mhV6wjjbxLE0xv5.lKPSsLzql8COylkhrnoVF2jckLWroGXHsFtEQ5qD2nhDmN.ZlJJ01c1BdE2rGCKbKNfh9qvqXYA0kt9TsfO.H_sp7NWKZmFVnVrGbszkg6xXs4Bo1ITBjxzITVenK_WwO_YPXUV2cHNAXFP88bhiRvKSS31GxaT12QR4RHrWqe0ZjkgfoO.jK9ysUx3NnVSmiDzmnENJAoYbO1Sf8JDVj5yDSCyMxvL4iI7xUBHIzq.lpr6yk1IRkE5074pxlITkHejyzljPbzIUF6OWg95Edlro_QjIQHGeEE1EzNE_JrscrjDYX6mW40CCLFu7ImZVuFmwxC11sC5MIj4KUp8TYSNj2n0WVcTt4jXzSOB4eOlRxtE9dDo3wACeEXc_dzD2BjIOpfUYnIUw2xgRN7wFpd4z6EQ2g3eEv6ny7x9sd0SEh36xG0ZC0juI7Qp0Rj6_1A_YBiIY0AODUdtV1vVuWLTq82Fj0xOhH7I5c03ZYRcJoQBpuc4GDnU.wCi3n.eb1_oHaocDz0E6b6UkpGBB.2d1SXx6BOVu1DEdm6KSg3BUeDld.GzUOUKtWbzyOYdPdedcTa4gljnujUb5tCkjpgEmz_iP0GCs7SYbTcj6AIQxAliexrcdQeNxqxS7hlNOwQmsSGyjufJ7Xrq_NnTp8cWCNUhgmtb4r_gcUjOnPJoz.YpZ8asjZ.uZOgHXpmPIsZL1gozfp_rqYzkx3NYJ8S47IMD84Fa3iVco5SWXVlUx
24
+ pF_rRHgvkNQtdMaVU5YZdEGr6OlG.CTrAlZa0IoZ0HgFtB_Lg_
25
+ Received: from [41.222.192.69] by web82107.mail.mud.yahoo.com via HTTP; Thu, 03 Dec 2009 10:50:22 PST
26
+ X-Mailer: YahooMailClassic/8.1.6 YahooMailWebService/0.8.100.260964
27
+ Date: Thu, 3 Dec 2009 10:50:22 -0800 (PST)
28
+ From: Cecil Edwards <ceciledwards@sbcglobal.net>
29
+ Reply-To: western.uniontransfer1@hotmail.fr
30
+ Subject: Western Union Swift Money Transfer
31
+ To: undisclosed recipients: ;
32
+ MIME-Version: 1.0
33
+ Content-Type: multipart/alternative; boundary="0-2052022825-1259866222=:85280"
34
+ X-CSI-MailScanner-Information: Please contact the ISP for more information
35
+ X-CSI-MailScanner: Found to be clean
36
+ X-CSI-MailScanner-SpamCheck: spam, ORDB-RBL
37
+ X-CSI-MailScanner-From: ceciledwards@sbcglobal.net
38
+ X-Spam-Status: Yes
39
+
40
+
41
+ --0-2052022825-1259866222=:85280
42
+ Content-Type: text/plain; charset=iso-8859-1
43
+ Content-Transfer-Encoding: quoted-printable
44
+
45
+ Attention Beneficiary:
46
+ =A0
47
+ This is to officially informed you that we have concluded arrangements to e=
48
+ ffect your payment of $1,500,000.00 United States Dollars through WESTERN U=
49
+ NION Swift Money transfer services today, but the maximum amount you will b=
50
+ e receiving every day starting from tomorrow is $5,000.00 as reflected in o=
51
+ ur transfer system daily until the funds is completely transferred.
52
+ =A0
53
+ This special arrangement is being used to avoid all scrupulous demands by b=
54
+ oth the states and federal authorities that have previously delayed your pa=
55
+ yment till date; we shall need your maximum co-operation to ensure that str=
56
+ ictness and confidence is maintained to avoid any further delays.You are to=
57
+ discard any request asking you to send money to any agency such as courier=
58
+ company,Bank and Security Agency as there are no such and any money commit=
59
+ ted their will be regret, so be wise.=20
60
+ =A0
61
+ Please contact the Accredited WESTERN UNION Agent for the details of your f=
62
+ irst payment of $5,000 United States Dollars and reconfirm your correct det=
63
+ ails that you will like the first transfer to be program with such as Recei=
64
+ vers Name, destination where you will like the transfer to be send to and y=
65
+ our cell phone number for urgent communication if the need arise.
66
+ Fill your details below for reference purposes:
67
+ *NAME OF CUSTOMER: .........
68
+ *ADDRESS: ..........
69
+ *COUNTRY: .................
70
+ *TEL: .....................
71
+ *OCCUPATION: ..............
72
+ =A0
73
+ Remember your obligation to secure an International Remittance Form as stat=
74
+ ed in United Nation act of (FRT209) that will help build and renew your tra=
75
+ nsfer file for record keeping as a way of checkmating the present Economics=
76
+ crisis situations.
77
+ Contact the below Electronic Transfer unit of WESTERN UNION for immediate p=
78
+ rograming of your first transfer:
79
+ =A0
80
+ Name: Rev.John Ntepe
81
+ Mobile:+229 97292685
82
+ Email: (western.union1891@live.fr) or (westerrnunion_2@sify.com)
83
+
84
+ =A0
85
+ Regards.
86
+ Thanks and God Bless.
87
+ Mrs.Cecil Edward
88
+
89
+
90
+ --=20
91
+ Filter4: This message has been scanned for viruses and
92
+ dangerous content by MailScanner, and is
93
+ believed to be clean.
94
+
95
+
96
+ --0-2052022825-1259866222=:85280
97
+ Content-Type: text/html; charset=iso-8859-1
98
+ Content-Transfer-Encoding: quoted-printable
99
+
100
+ <table cellspacing=3D"0" cellpadding=3D"0" border=3D"0" ><tr><td valign=3D"=
101
+ top" style=3D"font: inherit;"><span style=3D"font-weight: bold;">Attention =
102
+ Beneficiary:</span><br style=3D"font-weight: bold;"><span style=3D"font-wei=
103
+ ght: bold;">&nbsp;</span><br style=3D"font-weight: bold;"><span style=3D"fo=
104
+ nt-weight: bold;">This is to officially informed you that we have concluded=
105
+ arrangements to effect your payment of $1,500,000.00 United States Dollars=
106
+ through WESTERN UNION Swift Money transfer services today, but the maximum=
107
+ amount you will be receiving every day starting from tomorrow is $5,000.00=
108
+ as reflected in our transfer system daily until the funds is completely tr=
109
+ ansferred.</span><br style=3D"font-weight: bold;"><span style=3D"font-weigh=
110
+ t: bold;">&nbsp;</span><br style=3D"font-weight: bold;"><span style=3D"font=
111
+ -weight: bold;">This special arrangement is being used to avoid all scrupul=
112
+ ous demands by both the states and federal authorities that have previously=
113
+ delayed your payment
114
+ till date; we shall need your maximum co-operation to ensure that strictne=
115
+ ss and confidence is maintained to avoid any further delays.You are to disc=
116
+ ard any request asking you to send money to any agency such as courier comp=
117
+ any,Bank and Security Agency as there are no such and any money committed t=
118
+ heir will be regret, so be wise. </span><br style=3D"font-weight: bold;"><s=
119
+ pan style=3D"font-weight: bold;">&nbsp;</span><br style=3D"font-weight: bol=
120
+ d;"><span style=3D"font-weight: bold;">Please contact the Accredited WESTER=
121
+ N UNION Agent for the details of your first payment of $5,000 United States=
122
+ Dollars and reconfirm your correct details that you will like the first tr=
123
+ ansfer to be program with such as Receivers Name, destination where you wil=
124
+ l like the transfer to be send to and your cell phone number for urgent com=
125
+ munication if the need arise.</span><br style=3D"font-weight: bold;"><span =
126
+ style=3D"font-weight: bold;">Fill your details below for reference
127
+ purposes:</span><br style=3D"font-weight: bold;"><span style=3D"font-weigh=
128
+ t: bold;">*NAME OF CUSTOMER: .........</span><br style=3D"font-weight: bold=
129
+ ;"><span style=3D"font-weight: bold;">*ADDRESS: ..........</span><br style=
130
+ =3D"font-weight: bold;"><span style=3D"font-weight: bold;">*COUNTRY: ......=
131
+ ............</span><br style=3D"font-weight: bold;"><span style=3D"font-weig=
132
+ ht: bold;">*TEL: .....................</span><br style=3D"font-weight: bold=
133
+ ;"><span style=3D"font-weight: bold;">*OCCUPATION: ..............</span><br=
134
+ style=3D"font-weight: bold;"><span style=3D"font-weight: bold;">&nbsp;</sp=
135
+ an><br style=3D"font-weight: bold;"><span style=3D"font-weight: bold;">Reme=
136
+ mber your obligation to secure an International Remittance Form as stated i=
137
+ n United Nation act of (FRT209) that will help build and renew your transfe=
138
+ r file for record keeping as a way of checkmating the present Economics cri=
139
+ sis situations.</span><br style=3D"font-weight: bold;"><span style=3D"font-=
140
+ weight: bold;">Contact the
141
+ below Electronic Transfer unit of WESTERN UNION for immediate programing o=
142
+ f your first transfer:</span><br style=3D"font-weight: bold;"><span style=
143
+ =3D"font-weight: bold;">&nbsp;</span><br style=3D"font-weight: bold;"><span=
144
+ style=3D"font-weight: bold;">Name: Rev.John Ntepe</span><br style=3D"font-=
145
+ weight: bold;"><span style=3D"font-weight: bold;">Mobile:+229 97292685</spa=
146
+ n><br style=3D"font-weight: bold;"><span style=3D"font-weight: bold;">Email=
147
+ : (western.union1891@live.fr) or (westerrnunion_2@sify.com)</span><br style=
148
+ =3D"font-weight: bold;"><br style=3D"font-weight: bold;"><span style=3D"fon=
149
+ t-weight: bold;">&nbsp;</span><br style=3D"font-weight: bold;"><span style=
150
+ =3D"font-weight: bold;">Regards.</span><br style=3D"font-weight: bold;"><sp=
151
+ an style=3D"font-weight: bold;">Thanks and God Bless.</span><br style=3D"fo=
152
+ nt-weight: bold;"><span style=3D"font-weight: bold;">Mrs.Cecil Edward</span=
153
+ ><br style=3D"font-weight: bold;"><br style=3D"font-weight: bold;"></td></t=
154
+ r></table><br />--=20
155
+ <br />This message has been scanned for viruses and
156
+ <br />dangerous content by
157
+ <a href=3D"http://www.mailscanner.info/"><b>MailScanner</b></a>, and is
158
+ <br />believed to be clean.
159
+
160
+
161
+
162
+ --0-2052022825-1259866222=:85280--