lonbaker-tmail 1.2.3.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 (97) hide show
  1. data/CHANGES +74 -0
  2. data/LICENSE +21 -0
  3. data/NOTES +7 -0
  4. data/README +169 -0
  5. data/ext/Makefile +20 -0
  6. data/ext/tmailscanner/tmail/MANIFEST +4 -0
  7. data/ext/tmailscanner/tmail/depend +1 -0
  8. data/ext/tmailscanner/tmail/extconf.rb +33 -0
  9. data/ext/tmailscanner/tmail/tmailscanner.c +583 -0
  10. data/lib/tmail.rb +5 -0
  11. data/lib/tmail/Makefile +18 -0
  12. data/lib/tmail/address.rb +426 -0
  13. data/lib/tmail/attachments.rb +46 -0
  14. data/lib/tmail/base64.rb +46 -0
  15. data/lib/tmail/compat.rb +41 -0
  16. data/lib/tmail/config.rb +67 -0
  17. data/lib/tmail/core_extensions.rb +63 -0
  18. data/lib/tmail/encode.rb +590 -0
  19. data/lib/tmail/header.rb +962 -0
  20. data/lib/tmail/index.rb +9 -0
  21. data/lib/tmail/interface.rb +1130 -0
  22. data/lib/tmail/loader.rb +3 -0
  23. data/lib/tmail/mail.rb +580 -0
  24. data/lib/tmail/mailbox.rb +496 -0
  25. data/lib/tmail/main.rb +6 -0
  26. data/lib/tmail/mbox.rb +3 -0
  27. data/lib/tmail/net.rb +248 -0
  28. data/lib/tmail/obsolete.rb +132 -0
  29. data/lib/tmail/parser.rb +1476 -0
  30. data/lib/tmail/parser.y +381 -0
  31. data/lib/tmail/port.rb +379 -0
  32. data/lib/tmail/quoting.rb +118 -0
  33. data/lib/tmail/require_arch.rb +58 -0
  34. data/lib/tmail/scanner.rb +49 -0
  35. data/lib/tmail/scanner_r.rb +261 -0
  36. data/lib/tmail/stringio.rb +280 -0
  37. data/lib/tmail/utils.rb +351 -0
  38. data/lib/tmail/version.rb +39 -0
  39. data/meta/MANIFEST +128 -0
  40. data/meta/project.yaml +30 -0
  41. data/meta/unixname +1 -0
  42. data/sample/bench_base64.rb +48 -0
  43. data/sample/data/multipart +23 -0
  44. data/sample/data/normal +29 -0
  45. data/sample/data/sendtest +5 -0
  46. data/sample/data/simple +14 -0
  47. data/sample/data/test +27 -0
  48. data/sample/extract-attachements.rb +33 -0
  49. data/sample/from-check.rb +26 -0
  50. data/sample/multipart.rb +26 -0
  51. data/sample/parse-bench.rb +68 -0
  52. data/sample/parse-test.rb +19 -0
  53. data/sample/sendmail.rb +94 -0
  54. data/test/extctrl.rb +6 -0
  55. data/test/fixtures/mailbox +414 -0
  56. data/test/fixtures/mailbox_without_any_from_or_sender +10 -0
  57. data/test/fixtures/mailbox_without_from +11 -0
  58. data/test/fixtures/mailbox_without_return_path +12 -0
  59. data/test/fixtures/raw_base64_decoded_string +0 -0
  60. data/test/fixtures/raw_base64_email +83 -0
  61. data/test/fixtures/raw_base64_encoded_string +1 -0
  62. data/test/fixtures/raw_email +14 -0
  63. data/test/fixtures/raw_email10 +20 -0
  64. data/test/fixtures/raw_email11 +34 -0
  65. data/test/fixtures/raw_email12 +32 -0
  66. data/test/fixtures/raw_email13 +29 -0
  67. data/test/fixtures/raw_email2 +114 -0
  68. data/test/fixtures/raw_email3 +70 -0
  69. data/test/fixtures/raw_email4 +59 -0
  70. data/test/fixtures/raw_email5 +19 -0
  71. data/test/fixtures/raw_email6 +20 -0
  72. data/test/fixtures/raw_email7 +66 -0
  73. data/test/fixtures/raw_email8 +47 -0
  74. data/test/fixtures/raw_email9 +28 -0
  75. data/test/fixtures/raw_email_quoted_with_0d0a +14 -0
  76. data/test/fixtures/raw_email_reply +32 -0
  77. data/test/fixtures/raw_email_simple +11 -0
  78. data/test/fixtures/raw_email_with_bad_date +48 -0
  79. data/test/fixtures/raw_email_with_illegal_boundary +58 -0
  80. data/test/fixtures/raw_email_with_multipart_mixed_quoted_boundary +50 -0
  81. data/test/fixtures/raw_email_with_nested_attachment +100 -0
  82. data/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
  83. data/test/fixtures/raw_email_with_quoted_illegal_boundary +58 -0
  84. data/test/kcode.rb +14 -0
  85. data/test/test_address.rb +1211 -0
  86. data/test/test_attachments.rb +60 -0
  87. data/test/test_base64.rb +64 -0
  88. data/test/test_encode.rb +85 -0
  89. data/test/test_header.rb +969 -0
  90. data/test/test_helper.rb +9 -0
  91. data/test/test_mail.rb +753 -0
  92. data/test/test_mbox.rb +184 -0
  93. data/test/test_port.rb +436 -0
  94. data/test/test_quote.rb +98 -0
  95. data/test/test_scanner.rb +209 -0
  96. data/test/test_utils.rb +36 -0
  97. metadata +159 -0
@@ -0,0 +1,59 @@
1
+ Return-Path: <xxx@xxxx.xxx>
2
+ Received: from xxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id 6AAEE3B4D23 for <xxx@xxxx.xxx>; Sun, 8 May 2005 12:30:23 -0500
3
+ Received: from xxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id j48HUC213279 for <xxx@xxxx.xxx>; Sun, 8 May 2005 12:30:13 -0500
4
+ Received: from conversion-xxx.xxxx.xxx.net by xxx.xxxx.xxx id <0IG600901LQ64I@xxx.xxxx.xxx> for <xxx@xxxx.xxx>; Sun, 8 May 2005 12:30:12 -0500
5
+ Received: from agw1 by xxx.xxxx.xxx with ESMTP id <0IG600JFYLYCAxxx@xxxx.xxx> for <xxx@xxxx.xxx>; Sun, 8 May 2005 12:30:12 -0500
6
+ Date: Sun, 8 May 2005 12:30:08 -0500
7
+ From: xxx@xxxx.xxx
8
+ To: xxx@xxxx.xxx
9
+ Message-Id: <7864245.1115573412626.JavaMxxx@xxxx.xxx>
10
+ Subject: Filth
11
+ Mime-Version: 1.0
12
+ Content-Type: multipart/mixed; boundary=mimepart_427e4cb4ca329_133ae40413c81ef
13
+ X-Mms-Priority: 1
14
+ X-Mms-Transaction-Id: 3198421808-0
15
+ X-Mms-Message-Type: 0
16
+ X-Mms-Sender-Visibility: 1
17
+ X-Mms-Read-Reply: 1
18
+ X-Original-To: xxx@xxxx.xxx
19
+ X-Mms-Message-Class: 0
20
+ X-Mms-Delivery-Report: 0
21
+ X-Mms-Mms-Version: 16
22
+ Delivered-To: xxx@xxxx.xxx
23
+ X-Nokia-Ag-Version: 2.0
24
+
25
+ This is a multi-part message in MIME format.
26
+
27
+ --mimepart_427e4cb4ca329_133ae40413c81ef
28
+ Content-Type: multipart/mixed; boundary=mimepart_427e4cb4cbd97_133ae40413c8217
29
+
30
+
31
+
32
+ --mimepart_427e4cb4cbd97_133ae40413c8217
33
+ Content-Type: text/plain; charset=utf-8
34
+ Content-Transfer-Encoding: 7bit
35
+ Content-Disposition: inline
36
+ Content-Location: text.txt
37
+
38
+ Some text
39
+
40
+ --mimepart_427e4cb4cbd97_133ae40413c8217--
41
+
42
+ --mimepart_427e4cb4ca329_133ae40413c81ef
43
+ Content-Type: text/plain; charset=us-ascii
44
+ Content-Transfer-Encoding: 7bit
45
+
46
+
47
+ --
48
+ This Orange Multi Media Message was sent wirefree from an Orange
49
+ MMS phone. If you would like to reply, please text or phone the
50
+ sender directly by using the phone number listed in the sender's
51
+ address. To learn more about Orange's Multi Media Messaging
52
+ Service, find us on the Web at xxx.xxxx.xxx.uk/mms
53
+
54
+
55
+ --mimepart_427e4cb4ca329_133ae40413c81ef
56
+
57
+
58
+ --mimepart_427e4cb4ca329_133ae40413c81ef-
59
+
@@ -0,0 +1,19 @@
1
+ Return-Path: <xxx@xxxx.xxx>
2
+ Received: from xxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id C1B953B4CB6 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:05 -0500
3
+ Received: from SMS-GTYxxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id ca for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:04 -0500
4
+ Received: from xxx.xxxx.xxx by SMS-GTYxxx.xxxx.xxx with ESMTP id j4AKR3r23323 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:03 -0500
5
+ Date: Tue, 10 May 2005 15:27:03 -0500
6
+ From: xxx@xxxx.xxx
7
+ Sender: xxx@xxxx.xxx
8
+ To: xxxxxxxxxxx@xxxx.xxxx.xxx
9
+ Message-Id: <xxx@xxxx.xxx>
10
+ X-Original-To: xxxxxxxxxxx@xxxx.xxxx.xxx
11
+ Delivered-To: xxx@xxxx.xxx
12
+ Importance: normal
13
+
14
+ Test test. Hi. Waving. m
15
+
16
+ ----------------------------------------------------------------
17
+ Sent via Bell Mobility's Text Messaging service.
18
+ Envoyé par le service de messagerie texte de Bell Mobilité.
19
+ ----------------------------------------------------------------
@@ -0,0 +1,20 @@
1
+ Return-Path: <xxx@xxxx.xxx>
2
+ Received: from xxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id C1B953B4CB6 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:05 -0500
3
+ Received: from SMS-GTYxxx.xxxx.xxx by xxx.xxxx.xxx with ESMTP id ca for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:04 -0500
4
+ Received: from xxx.xxxx.xxx by SMS-GTYxxx.xxxx.xxx with ESMTP id j4AKR3r23323 for <xxxxx@Exxx.xxxx.xxx>; Tue, 10 May 2005 15:27:03 -0500
5
+ Date: Tue, 10 May 2005 15:27:03 -0500
6
+ From: xxx@xxxx.xxx
7
+ Sender: xxx@xxxx.xxx
8
+ To: xxxxxxxxxxx@xxxx.xxxx.xxx
9
+ Message-Id: <xxx@xxxx.xxx>
10
+ X-Original-To: xxxxxxxxxxx@xxxx.xxxx.xxx
11
+ Delivered-To: xxx@xxxx.xxx
12
+ Importance: normal
13
+ Content-Type: text/plain; charset=us-ascii
14
+
15
+ Test test. Hi. Waving. m
16
+
17
+ ----------------------------------------------------------------
18
+ Sent via Bell Mobility's Text Messaging service.
19
+ Envoyé par le service de messagerie texte de Bell Mobilité.
20
+ ----------------------------------------------------------------
@@ -0,0 +1,66 @@
1
+ Mime-Version: 1.0 (Apple Message framework v730)
2
+ Content-Type: multipart/mixed; boundary=Apple-Mail-13-196941151
3
+ Message-Id: <9169D984-4E0B-45EF-82D4-8F5E53AD7012@example.com>
4
+ From: foo@example.com
5
+ Subject: testing
6
+ Date: Mon, 6 Jun 2005 22:21:22 +0200
7
+ To: blah@example.com
8
+
9
+
10
+ --Apple-Mail-13-196941151
11
+ Content-Type: multipart/mixed;
12
+ boundary=Apple-Mail-12-196940926
13
+
14
+
15
+ --Apple-Mail-12-196940926
16
+ Content-Transfer-Encoding: quoted-printable
17
+ Content-Type: text/plain;
18
+ charset=ISO-8859-1;
19
+ delsp=yes;
20
+ format=flowed
21
+
22
+ This is the first part.
23
+
24
+ --Apple-Mail-12-196940926
25
+ Content-Transfer-Encoding: 7bit
26
+ Content-Type: text/x-ruby-script;
27
+ x-unix-mode=0666;
28
+ name="test.rb"
29
+ Content-Disposition: attachment;
30
+ filename=test.rb
31
+
32
+ puts "testing, testing"
33
+
34
+ --Apple-Mail-12-196940926
35
+ Content-Transfer-Encoding: base64
36
+ Content-Type: application/pdf;
37
+ x-unix-mode=0666;
38
+ name="test.pdf"
39
+ Content-Disposition: inline;
40
+ filename=test.pdf
41
+
42
+ YmxhaCBibGFoIGJsYWg=
43
+
44
+ --Apple-Mail-12-196940926
45
+ Content-Transfer-Encoding: 7bit
46
+ Content-Type: text/plain;
47
+ charset=US-ASCII;
48
+ format=flowed
49
+
50
+
51
+
52
+ --Apple-Mail-12-196940926--
53
+
54
+ --Apple-Mail-13-196941151
55
+ Content-Transfer-Encoding: base64
56
+ Content-Type: application/pkcs7-signature;
57
+ name=smime.p7s
58
+ Content-Disposition: attachment;
59
+ filename=smime.p7s
60
+
61
+ jamisSqGSIb3DQEHAqCAMIjamisxCzAJBgUrDgMCGgUAMIAGCSqGSjamisEHAQAAoIIFSjCCBUYw
62
+ ggQujamisQICBD++ukQwDQYJKojamisNAQEFBQAwMTELMAkGA1UEBhMCRjamisAKBgNVBAoTA1RE
63
+ QzEUMBIGjamisxMLVERDIE9DRVMgQ0jamisNMDQwMjI5MTE1OTAxWhcNMDYwMjamisIyOTAxWjCB
64
+ gDELMAkGA1UEjamisEsxKTAnBgNVBAoTIEjamisuIG9yZ2FuaXNhdG9yaXNrIHRpbjamisRuaW5=
65
+
66
+ --Apple-Mail-13-196941151--
@@ -0,0 +1,47 @@
1
+ From xxxxxxxxx.xxxxxxx@gmail.com Sun May 8 19:07:09 2005
2
+ Return-Path: <xxxxxxxxx.xxxxxxx@gmail.com>
3
+ Message-ID: <e85734b90505081209eaaa17b@mail.gmail.com>
4
+ Date: Sun, 8 May 2005 14:09:11 -0500
5
+ From: xxxxxxxxx xxxxxxx <xxxxxxxxx.xxxxxxx@gmail.com>
6
+ Reply-To: xxxxxxxxx xxxxxxx <xxxxxxxxx.xxxxxxx@gmail.com>
7
+ To: xxxxx xxxx <xxxxx@xxxxxxxxx.com>
8
+ Subject: Fwd: Signed email causes file attachments
9
+ In-Reply-To: <F6E2D0B4-CC35-4A91-BA4C-C7C712B10C13@mac.com>
10
+ Mime-Version: 1.0
11
+ Content-Type: multipart/mixed;
12
+ boundary="----=_Part_5028_7368284.1115579351471"
13
+ References: <F6E2D0B4-CC35-4A91-BA4C-C7C712B10C13@mac.com>
14
+
15
+ ------=_Part_5028_7368284.1115579351471
16
+ Content-Type: text/plain; charset=ISO-8859-1
17
+ Content-Transfer-Encoding: quoted-printable
18
+ Content-Disposition: inline
19
+
20
+ We should not include these files or vcards as attachments.
21
+
22
+ ---------- Forwarded message ----------
23
+ From: xxxxx xxxxxx <xxxxxxxx@xxx.com>
24
+ Date: May 8, 2005 1:17 PM
25
+ Subject: Signed email causes file attachments
26
+ To: xxxxxxx@xxxxxxxxxx.com
27
+
28
+
29
+ Hi,
30
+
31
+ Test attachments oddly encoded with japanese charset.
32
+
33
+
34
+ ------=_Part_5028_7368284.1115579351471
35
+ Content-Type: application/octet-stream; name*=iso-2022-jp'ja'01%20Quien%20Te%20Dij%8aat.%20Pitbull.mp3
36
+ Content-Transfer-Encoding: base64
37
+ Content-Disposition: attachment
38
+
39
+ MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIGFDCCAs0w
40
+ ggI2oAMCAQICAw5c+TANBgkqhkiG9w0BAQQFADBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhh
41
+ d3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVt
42
+ YWlsIElzc3VpbmcgQ0EwHhcNMDUwMzI5MDkzOTEwWhcNMDYwMzI5MDkzOTEwWjBCMR8wHQYDVQQD
43
+ ExZUaGF3dGUgRnJlZW1haWwgTWVtYmVyMR8wHQYJKoZIhvcNAQkBFhBzbWhhdW5jaEBtYWMuY29t
44
+ MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn90dPsYS3LjfMY211OSYrDQLzwNYPlAL
45
+ 7+/0XA+kdy8/rRnyEHFGwhNCDmg0B6pxC7z3xxJD/8GfCd+IYUUNUQV5m9MkxfP9pTVXZVIYLaBw
46
+ ------=_Part_5028_7368284.1115579351471--
47
+
@@ -0,0 +1,28 @@
1
+ Received: from xxx.xxx.xxx ([xxx.xxx.xxx.xxx] verified)
2
+ by xxx.com (CommuniGate Pro SMTP 4.2.8)
3
+ with SMTP id 2532598 for xxx@xxx.com; Wed, 23 Feb 2005 17:51:49 -0500
4
+ Received-SPF: softfail
5
+ receiver=xxx.com; client-ip=xxx.xxx.xxx.xxx; envelope-from=xxx@xxx.xxx
6
+ quite Delivered-To: xxx@xxx.xxx
7
+ Received: by xxx.xxx.xxx (Wostfix, from userid xxx)
8
+ id 0F87F333; Wed, 23 Feb 2005 16:16:17 -0600
9
+ Date: Wed, 23 Feb 2005 18:20:17 -0400
10
+ From: "xxx xxx" <xxx@xxx.xxx>
11
+ Message-ID: <4D6AA7EB.6490534@xxx.xxx>
12
+ To: xxx@xxx.com
13
+ Subject: Stop adware/spyware once and for all.
14
+ X-Scanned-By: MIMEDefang 2.11 (www dot roaringpenguin dot com slash mimedefang)
15
+
16
+ You are infected with:
17
+ Ad Ware and Spy Ware
18
+
19
+ Get your free scan and removal download now,
20
+ before it gets any worse.
21
+
22
+ http://xxx.xxx.info?aid=3D13&?stat=3D4327kdzt
23
+
24
+
25
+
26
+
27
+ no more? (you will still be infected)
28
+ http://xxx.xxx.info/discon/?xxx@xxx.com
@@ -0,0 +1,14 @@
1
+ Mime-Version: 1.0 (Apple Message framework v730)
2
+ Message-Id: <9169D984-4E0B-45EF-82D4-8F5E53AD7012@example.com>
3
+ From: foo@example.com
4
+ Subject: testing
5
+ Date: Mon, 6 Jun 2005 22:21:22 +0200
6
+ To: blah@example.com
7
+ Content-Transfer-Encoding: quoted-printable
8
+ Content-Type: text/plain
9
+
10
+ A fax has arrived from remote ID ''.=0D=0A-----------------------=
11
+ -------------------------------------=0D=0ATime: 3/9/2006 3:50:52=
12
+ PM=0D=0AReceived from remote ID: =0D=0AInbound user ID XXXXXXXXXX, r=
13
+ outing code XXXXXXXXX=0D=0AResult: (0/352;0/0) Successful Send=0D=0AP=
14
+ age record: 1 - 1=0D=0AElapsed time: 00:58 on channel 11=0D=0A
@@ -0,0 +1,32 @@
1
+ Return-Path: <xxxxxxxx@xxx.org>
2
+ Received: from me ([unix socket])
3
+ by xxxxx1.xxxx.net (Cyrus v2.2.12) with LMTPA;
4
+ Sun, 18 Nov 2007 00:56:33 -0800
5
+ Received: from smtp.xxxx.org (unknown [127.0.0.1])
6
+ by xxxxx1.xxxx.net (Postfix) with ESMTP id F128477EB5;
7
+ Sun, 18 Nov 2007 00:56:32 -0800 (PST)
8
+ Received: from omta02sl.mx.bigpond.com (omta02sl.mx.bigpond.com [144.140.93.154])
9
+ by smtp.xxxx.org (Postfix) with ESMTP id 2D567ACC08;
10
+ Sun, 18 Nov 2007 00:56:28 -0800 (PST)
11
+ Received: from oaamta05sl.mx.bigpond.com ([124.183.219.10])
12
+ by omta02sl.mx.bigpond.com with ESMTP
13
+ id <20071118085627.YVPI22254.omta02sl.mx.bigpond.com@oaamta05sl.mx.bigpond.com>;
14
+ Sun, 18 Nov 2007 08:56:27 +0000
15
+ Received: from [10.0.0.1] (really [124.183.219.10])
16
+ by oaamta05sl.mx.bigpond.com with ESMTP
17
+ id <20071118085627.TQWF6995.oaamta05sl.mx.bigpond.com@[10.0.0.1]>;
18
+ Sun, 18 Nov 2007 08:56:27 +0000
19
+ Message-ID: <473FFE27.20003@xxx.org>
20
+ Date: Sun, 18 Nov 2007 19:56:07 +1100
21
+ From: Testing <xxxxxxxx@xxx.org>
22
+ User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
23
+ X-Accept-Language: en-us, en
24
+ MIME-Version: 1.0
25
+ To: Mikel Lindsaar <mikel@xxxx.net>
26
+ Subject: Re: Test reply email
27
+ References: <473FF3B8.9020707@xxx.org> <348F04F142D69C21-291E56D292BC@xxxx.net>
28
+ In-Reply-To: <348F04F142D69C21-291E56D292BC@xxxx.net>
29
+ Content-Type: text/plain; charset=US-ASCII; format=flowed
30
+ Content-Transfer-Encoding: 7bit
31
+
32
+ Message body
@@ -0,0 +1,11 @@
1
+ From mike@nowhere.com
2
+ Return-Path: <mikel@nowhere.com>
3
+ Received: from mikel091a by oaamta05sl.mx.bigpond.com with SMTP id <20071021093820.JFMT24025.oaamta05sl.mx.bigpond.com@mikel091a> for <mikel@nowhere.com.else>; Sun, 21 Oct 2007 19:38:20 +1000
4
+ Date: Sun, 21 Oct 2007 19:38:13 +1000
5
+ From: Mikel Lindsaar <mikel@nowhere.com>
6
+ To: Mikel <mikel@somewhere.com>
7
+ Message-Id: <009601c813c6$19df3510$0437d30a@mikel091a>
8
+ Subject: Testing outlook
9
+
10
+ Hello Mikel
11
+
@@ -0,0 +1,48 @@
1
+ Return-Path: <me@xxx.xxxxxxxx.xxx.xx>
2
+ X-Original-To: external@xxx.xxxxxxxx.xxx.xx
3
+ Delivered-To: external@xxx.xxxxxxxx.xxx.xx
4
+ Received: from server.xxx.xxxxxxxx.xxx.xx (localhost.xxxxxxxx.xxx.xx [127.0.0.1])
5
+ by server.xxx.xxxxxxxx.xxx.xx (Postfix) with ESMTP id 0173828456
6
+ for <external@xxx.xxxxxxxx.xxx.xx>; Mon, 5 Nov 2007 20:17:37 +1100 (EST)
7
+ Received: from server.xxx.xxxxxxxx.xxx.xx (server.xxx.xxxxxxxx.xxx.xx [10.130.1.250])
8
+ by localhost (FormatMessage) with SMTP id d7be4d19ed6d330c
9
+ for <sydney@xxxxxxxx.xxx>; Mon, 05 Nov 2007 20:17:37 +1100 (EST)
10
+ Received: from server.sydney.xxxxxxxx.xxx.xx (unknown [10.130.2.6])
11
+ by server.xxx.xxxxxxxx.xxx.xx (Postfix) with ESMTP id BB00328442
12
+ for <sydney@xxxxxxxx.xxx>; Mon, 5 Nov 2007 20:17:37 +1100 (EST)
13
+ Received: from dircomm (unknown [10.130.2.8])
14
+ by server.sydney.xxxxxxxx.xxx.xx (Postfix) with ESMTP id 20A692841F
15
+ for <sydney@xxxxxxxx.xxx>; Mon, 5 Nov 2007 20:18:24 +1100 (EST)
16
+ X-Mailbox-Line: From subventive@vodtravel.com
17
+ Message-ID: <000001c81a67$a4450700$0100007f@localhost>
18
+ From: "Darrell Shaw" <subventive@vodtravel.com>
19
+ To: <sydney@xxxxxxxx.xxx>
20
+ Subject: Microsoft Vlsta & Office2007, Just released for 79$ Save 1599.95$ 0ff Retai|
21
+ Date: Pn, 29 paX 2007 21:13:00 +0100
22
+ Content-Type: text/plain;
23
+ charset="us-ascii"
24
+ Content-Transfer-Encoding: 7bit
25
+ X-Priority: 3 (Normal)
26
+ X-MSMail-Priority: Normal
27
+ X-Mailer: Microsoft Outlook, Build 10.0.3416
28
+ Importance: Normal
29
+ X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.150
30
+ X-CSI-TMailScanner-Information: Please contact the ISP for more information
31
+ X-CSI-TMailScanner: Found to be clean
32
+ X-CSI-TMailScanner-SpamCheck: not spam, SpamAssassin (score=1.87, required 4,
33
+ autolearn=disabled, INVALID_DATE 0.23, RAZOR2_CF_RANGE_51_100 1.49,
34
+ RAZOR2_CHECK 0.15)
35
+ X-CSI-TMailScanner-SpamScore: s
36
+ X-TMailScanner-From: subventive@vodtravel.com
37
+ Resent-Date: Mon, 05 Nov 2007 20:17:37 +1100 (EST)
38
+ Resent-From: <mail_dump@ns1.xxxxxxxx.xxx.xx>
39
+ Resent-To: <mikel@xxxxxxxx.xxx>
40
+ Resent-Message-ID: <d7be4d19ed6d330c.1194254257@xxxxxxxx.xxx.xx>
41
+ X-UID: 4702
42
+ Status: RO
43
+
44
+ hotnewsoft . com
45
+
46
+
47
+
48
+
@@ -0,0 +1,58 @@
1
+ From email_test@me.nowhere
2
+ Return-Path: <email_test@me.nowhere>
3
+ Received: from omta05sl.mx.bigpond.com by me.nowhere.else with ESMTP id 632BD5758 for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:21 +1000
4
+ Received: from oaamta05sl.mx.bigpond.com by omta05sl.mx.bigpond.com with ESMTP id <20071021093820.HSPC16667.omta05sl.mx.bigpond.com@oaamta05sl.mx.bigpond.com> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
5
+ Received: from mikel091a by oaamta05sl.mx.bigpond.com with SMTP id <20071021093820.JFMT24025.oaamta05sl.mx.bigpond.com@mikel091a> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
6
+ Date: Sun, 21 Oct 2007 19:38:13 +1000
7
+ From: Mikel Lindsaar <email_test@me.nowhere>
8
+ Reply-To: Mikel Lindsaar <email_test@me.nowhere>
9
+ To: mikel@me.nowhere
10
+ Message-Id: <009601c813c6$19df3510$0437d30a@mikel091a>
11
+ Subject: Testing outlook
12
+ Mime-Version: 1.0
13
+ Content-Type: multipart/alternative; boundary=----=_NextPart_000_0093_01C81419.EB75E850
14
+ X-Get_mail_default: mikel@me.nowhere.else
15
+ X-Priority: 3
16
+ X-Original-To: mikel@me.nowhere
17
+ X-Mailer: Microsoft Outlook Express 6.00.2900.3138
18
+ Delivered-To: mikel@me.nowhere
19
+ X-Mimeole: Produced By Microsoft MimeOLE V6.00.2900.3138
20
+ X-Msmail-Priority: Normal
21
+
22
+ This is a multi-part message in MIME format.
23
+
24
+
25
+ ------=_NextPart_000_0093_01C81419.EB75E850
26
+ Content-Type: text/plain; charset=iso-8859-1
27
+ Content-Transfer-Encoding: Quoted-printable
28
+
29
+ Hello
30
+ This is an outlook test
31
+
32
+ So there.
33
+
34
+ Me.
35
+
36
+ ------=_NextPart_000_0093_01C81419.EB75E850
37
+ Content-Type: text/html; charset=iso-8859-1
38
+ Content-Transfer-Encoding: Quoted-printable
39
+
40
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
41
+ <HTML><HEAD>
42
+ <META http-equiv=3DContent-Type content=3D"text/html; =
43
+ charset=3Diso-8859-1">
44
+ <META content=3D"MSHTML 6.00.6000.16525" name=3DGENERATOR>
45
+ <STYLE></STYLE>
46
+ </HEAD>
47
+ <BODY bgColor=3D#ffffff>
48
+ <DIV><FONT face=3DArial size=3D2>Hello</FONT></DIV>
49
+ <DIV><FONT face=3DArial size=3D2><STRONG>This is an outlook=20
50
+ test</STRONG></FONT></DIV>
51
+ <DIV><FONT face=3DArial size=3D2><STRONG></STRONG></FONT>&nbsp;</DIV>
52
+ <DIV><FONT face=3DArial size=3D2><STRONG>So there.</STRONG></FONT></DIV>
53
+ <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
54
+ <DIV><FONT face=3DArial size=3D2>Me.</FONT></DIV></BODY></HTML>
55
+
56
+
57
+ ------=_NextPart_000_0093_01C81419.EB75E850--
58
+
@@ -0,0 +1,50 @@
1
+ From email_test@me.nowhere
2
+ Return-Path: <email_test@me.nowhere>
3
+ Received: from omta05sl.mx.bigpond.com by me.nowhere.else with ESMTP id 632BD5758 for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:21 +1000
4
+ Received: from oaamta05sl.mx.bigpond.com by omta05sl.mx.bigpond.com with ESMTP id <20071021093820.HSPC16667.omta05sl.mx.bigpond.com@oaamta05sl.mx.bigpond.com> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
5
+ Received: from mikel091a by oaamta05sl.mx.bigpond.com with SMTP id <20071021093820.JFMT24025.oaamta05sl.mx.bigpond.com@mikel091a> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
6
+ Date: Sun, 21 Oct 2007 19:38:13 +1000
7
+ From: Mikel Lindsaar <email_test@me.nowhere>
8
+ Reply-To: Mikel Lindsaar <email_test@me.nowhere>
9
+ To: mikel@me.nowhere
10
+ Message-Id: <009601c813c6$19df3510$0437d30a@mikel091a>
11
+ Subject: Testing outlook
12
+ Subject: Another PDF
13
+ Mime-Version: 1.0
14
+ Content-Type: multipart/mixed;
15
+ boundary="----=_Part_2192_32400445.1115745999735"
16
+ X-Virus-Scanned: amavisd-new at textdrive.com
17
+
18
+ ------=_Part_2192_32400445.1115745999735
19
+ Content-Type: text/plain; charset=ISO-8859-1
20
+ Content-Transfer-Encoding: quoted-printable
21
+ Content-Disposition: inline
22
+
23
+ Just attaching another PDF, here, to see what the message looks like,
24
+ and to see if I can figure out what is going wrong here.
25
+
26
+ ------=_Part_2192_32400445.1115745999735
27
+ Content-Type: application/pdf; name="broken.pdf"
28
+ Content-Transfer-Encoding: base64
29
+ Content-Disposition: attachment; filename="broken.pdf"
30
+
31
+ JVBERi0xLjQNCiXk9tzfDQoxIDAgb2JqDQo8PCAvTGVuZ3RoIDIgMCBSDQogICAvRmlsdGVyIC9G
32
+ bGF0ZURlY29kZQ0KPj4NCnN0cmVhbQ0KeJy9Wt2KJbkNvm/od6jrhZxYln9hWEh2p+8HBvICySaE
33
+ ycLuTV4/1ifJ9qnq09NpSBimu76yLUuy/qzqcPz7+em3Ixx/CDc6CsXxs3b5+fvfjr/8cPz6/BRu
34
+ rbfAx/n3739/fuJylJ5u5fjX81OuDr4deK4Bz3z/aDP+8fz0yw8g0Ofq7ktr1Mn+u28rvhy/jVeD
35
+ QSa+9YNKHP/pxjvDNfVAx/m3MFz54FhvTbaseaxiDoN2LeMVMw+yA7RbHSCDzxZuaYB2E1Yay7QU
36
+ x89vz0+tyFDKMlAHK5yqLmnjF+c4RjEiQIUeKwblXMe+AsZjN1J5yGQL5DHpDHksurM81rF6PKab
37
+ gK6zAarIDzIiUY23rJsN9iorAE816aIu6lsgAdQFsuhhkHOUFgVjp2GjMqSewITXNQ27jrMeamkg
38
+ 1rPI3iLWG2CIaSBB+V1245YVRICGbbpYKHc2USFDl6M09acQVQYhlwIrkBNLISvXhGlF1wi5FHCw
39
+ wxZkoGNJlVeJCEsqKA+3YAV5AMb6KkeaqEJQmFKKQU8T1pRi2ihE1Y4CDrqoYFFXYjJJOatsyzuI
40
+ 8SIlykuxKTMibWK8H1PgEvqYgs4GmQSrEjJAalgGirIhik+p4ZQN9E3ETFPAHE1b8pp1l/0Rc1gl
41
+ fQs0ABWvyoZZzU8VnPXwVVcO9BEsyjEJaO6eBoZRyKGlrKoYoOygA8BGIzgwN3RQ15ouigG5idZQ
42
+ fx2U4Db2CqiLO0WHAZoylGiCAqhniNQjFjQPSkmjwfNTgQ6M1Ih+eWo36wFmjIxDJZiGUBiWsAyR
43
+ xX3EekGOizkGI96Ol9zVZTAivikURhRsHh2E3JhWMpSTZCnnonrLhMCodgrNcgo4uyJUJc6qnVss
44
+ nrGd1Ptr0YwisCOYyIbUwVjV4xBUNLbguSO2YHujonAMJkMdSI7bIw91Akq2AUlMUWGFTMAOamjU
45
+ OvZQCxIkY2pCpMFo/IwLdVLHs6nddwTRrgoVbvLU9eB0G4EMndV0TNoxHbt3JBWwK6hhv3iHfDtF
46
+ yokB302IpEBTnWICde4uYc/1khDbSIkQopO6lcqamGBu1OSE3N5IPSsZX00CkSHRiiyx6HQIShsS
47
+ HSVNswdVsaOUSAWq9aYhDtGDaoG5a3lBGkYt/lFlBFt1UqrYnzVtUpUQnLiZeouKgf1KhRBViRRk
48
+ ExepJCzTwEmFDalIRbLEGtw0gfpESOpIAF/NnpPzcVCG86s0g2DuSyd41uhNGbEgaSrWEXORErbw
49
+ ------=_Part_2192_32400445.1115745999735--
50
+