tmail_es 1.2.7.2
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.
- checksums.yaml +7 -0
- data/CHANGES +83 -0
- data/LICENSE +21 -0
- data/NOTES +7 -0
- data/README +182 -0
- data/Rakefile +2 -0
- data/ext/Makefile +20 -0
- data/ext/tmailscanner/tmail/MANIFEST +4 -0
- data/ext/tmailscanner/tmail/depend +1 -0
- data/ext/tmailscanner/tmail/extconf.rb +33 -0
- data/ext/tmailscanner/tmail/tmailscanner.c +614 -0
- data/lib/tmail/Makefile +18 -0
- data/lib/tmail/address.rb +392 -0
- data/lib/tmail/attachments.rb +65 -0
- data/lib/tmail/base64.rb +46 -0
- data/lib/tmail/compat.rb +41 -0
- data/lib/tmail/config.rb +67 -0
- data/lib/tmail/core_extensions.rb +63 -0
- data/lib/tmail/encode.rb +590 -0
- data/lib/tmail/header.rb +962 -0
- data/lib/tmail/index.rb +9 -0
- data/lib/tmail/interface.rb +1162 -0
- data/lib/tmail/loader.rb +3 -0
- data/lib/tmail/mail.rb +578 -0
- data/lib/tmail/mailbox.rb +496 -0
- data/lib/tmail/main.rb +6 -0
- data/lib/tmail/mbox.rb +3 -0
- data/lib/tmail/net.rb +250 -0
- data/lib/tmail/obsolete.rb +132 -0
- data/lib/tmail/parser.rb +1060 -0
- data/lib/tmail/parser.y +416 -0
- data/lib/tmail/port.rb +379 -0
- data/lib/tmail/quoting.rb +164 -0
- data/lib/tmail/require_arch.rb +58 -0
- data/lib/tmail/scanner.rb +49 -0
- data/lib/tmail/scanner_r.rb +261 -0
- data/lib/tmail/stringio.rb +280 -0
- data/lib/tmail/utils.rb +361 -0
- data/lib/tmail/vendor/rchardet-1.3/COPYING +504 -0
- data/lib/tmail/vendor/rchardet-1.3/README +12 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/big5freq.rb +927 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/big5prober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/chardistribution.rb +238 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/charsetgroupprober.rb +112 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/charsetprober.rb +75 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/codingstatemachine.rb +64 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/constants.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/escprober.rb +89 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/escsm.rb +244 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/eucjpprober.rb +88 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euckrfreq.rb +596 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euckrprober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euctwfreq.rb +430 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euctwprober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312freq.rb +474 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312prober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/hebrewprober.rb +289 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/jisfreq.rb +570 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/jpcntx.rb +229 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langbulgarianmodel.rb +229 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langcyrillicmodel.rb +330 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langgreekmodel.rb +227 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langhebrewmodel.rb +202 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langhungarianmodel.rb +226 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langthaimodel.rb +201 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/latin1prober.rb +147 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcharsetprober.rb +89 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb +45 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcssm.rb +542 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sbcharsetprober.rb +124 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb +56 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb +88 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/universaldetector.rb +167 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb +87 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet.rb +67 -0
- data/lib/tmail/version.rb +40 -0
- data/lib/tmail.rb +6 -0
- data/setup.rb +1482 -0
- data/test/extctrl.rb +6 -0
- data/test/fixtures/apple_unquoted_content_type +44 -0
- data/test/fixtures/inline_attachment.txt +2095 -0
- data/test/fixtures/iso_8859_1_email_without_encoding_and_message_id.txt +16 -0
- data/test/fixtures/mailbox +414 -0
- data/test/fixtures/mailbox.zip +0 -0
- data/test/fixtures/mailbox_without_any_from_or_sender +10 -0
- data/test/fixtures/mailbox_without_from +11 -0
- data/test/fixtures/mailbox_without_return_path +12 -0
- data/test/fixtures/marked_as_iso_8859_1_but_it_is_utf_8.txt +33 -0
- data/test/fixtures/marked_as_utf_8_but_it_is_iso_8859_1.txt +56 -0
- data/test/fixtures/raw_attack_email_with_zero_length_whitespace +29 -0
- data/test/fixtures/raw_base64_decoded_string +0 -0
- data/test/fixtures/raw_base64_email +83 -0
- data/test/fixtures/raw_base64_encoded_string +1 -0
- data/test/fixtures/raw_email +14 -0
- data/test/fixtures/raw_email10 +20 -0
- data/test/fixtures/raw_email11 +34 -0
- data/test/fixtures/raw_email12 +32 -0
- data/test/fixtures/raw_email13 +29 -0
- data/test/fixtures/raw_email2 +114 -0
- data/test/fixtures/raw_email3 +70 -0
- data/test/fixtures/raw_email4 +59 -0
- data/test/fixtures/raw_email5 +19 -0
- data/test/fixtures/raw_email6 +20 -0
- data/test/fixtures/raw_email7 +66 -0
- data/test/fixtures/raw_email8 +47 -0
- data/test/fixtures/raw_email9 +28 -0
- data/test/fixtures/raw_email_bad_time +62 -0
- data/test/fixtures/raw_email_double_at_in_header +14 -0
- data/test/fixtures/raw_email_multiple_from +30 -0
- data/test/fixtures/raw_email_only_attachment +17 -0
- data/test/fixtures/raw_email_quoted_with_0d0a +14 -0
- data/test/fixtures/raw_email_reply +32 -0
- data/test/fixtures/raw_email_simple +11 -0
- data/test/fixtures/raw_email_string_in_date_field +17 -0
- data/test/fixtures/raw_email_trailing_dot +21 -0
- data/test/fixtures/raw_email_with_bad_date +48 -0
- data/test/fixtures/raw_email_with_illegal_boundary +58 -0
- data/test/fixtures/raw_email_with_mimepart_without_content_type +94 -0
- data/test/fixtures/raw_email_with_multipart_mixed_quoted_boundary +50 -0
- data/test/fixtures/raw_email_with_nested_attachment +100 -0
- data/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
- data/test/fixtures/raw_email_with_quoted_attachment_filename +60 -0
- data/test/fixtures/raw_email_with_quoted_illegal_boundary +58 -0
- data/test/fixtures/raw_email_with_wrong_splitted_multibyte_encoded_word_subject +15 -0
- data/test/fixtures/the_only_part_is_a_word_document.txt +425 -0
- data/test/fixtures/unquoted_filename_in_attachment +177 -0
- data/test/kcode.rb +14 -0
- data/test/temp_test_one.rb +46 -0
- data/test/test_address.rb +1216 -0
- data/test/test_attachments.rb +133 -0
- data/test/test_base64.rb +64 -0
- data/test/test_encode.rb +139 -0
- data/test/test_header.rb +1021 -0
- data/test/test_helper.rb +9 -0
- data/test/test_mail.rb +756 -0
- data/test/test_mbox.rb +184 -0
- data/test/test_port.rb +440 -0
- data/test/test_quote.rb +107 -0
- data/test/test_scanner.rb +209 -0
- data/test/test_utils.rb +36 -0
- data/tmail_es.gemspec +35 -0
- metadata +257 -0
|
@@ -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,62 @@
|
|
|
1
|
+
Return-Path: <yusuf75thu@auracom.net>
|
|
2
|
+
Received: from murder ([unix socket])
|
|
3
|
+
by imap1.AAAAAAAAA.net (Cyrus v2.2.12-Invoca-RPM-2.2.12-6.fc4) with LMTPA;
|
|
4
|
+
Mon, 30 Jun 2008 02:34:00 -0700
|
|
5
|
+
X-Sieve: CMU Sieve 2.2
|
|
6
|
+
Received: from smtp2.BBBBBBBBBBB.org (unknown [10.254.15.30])
|
|
7
|
+
by imap1.AAAAAAAAA.net (Postfix) with ESMTP id 9444077D75
|
|
8
|
+
for <abcdefg@AAAAAAAAA.net>; Mon, 30 Jun 2008 02:34:00 -0700 (PDT)
|
|
9
|
+
Received: from localhost (unknown [92.47.238.91])
|
|
10
|
+
by smtp2.BBBBBBBBBBB.org (Postfix) with ESMTP id 44D0110011
|
|
11
|
+
for <abcdefg@AAAAAAAAA.net>; Mon, 9 Jun 2008 12:24:02 -0700 (PDT)
|
|
12
|
+
Message-ID: <86a2019dbec6$caa86cc0$390b0485@auracom.net>
|
|
13
|
+
From: "=?windows-1251?B?wPLo6u7iYQ==?=" <yusuf75thu@auracom.net>
|
|
14
|
+
To: <abcdefg@AAAAAAAAA.net>
|
|
15
|
+
Subject: [0]: XXXXXXX XXXXX XXXXX !
|
|
16
|
+
Date: Mon, 30 Jun 3609 15:33:50 +0600
|
|
17
|
+
MIME-Version: 1.0
|
|
18
|
+
Content-Type: multipart/alternative;
|
|
19
|
+
boundary=----=_NextPart_000_0023_08_E8CD50F3.4EF2F754
|
|
20
|
+
X-Priority: 3
|
|
21
|
+
X-MSMail-Priority: Normal
|
|
22
|
+
X-Mailer: Microsoft Outlook Express 6.00.2900.2180
|
|
23
|
+
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
|
|
24
|
+
X-CSI-MailScanner-Information: Please contact the ISP for more information
|
|
25
|
+
X-CSI-MailScanner: Found to be clean
|
|
26
|
+
X-CSI-MailScanner-SpamCheck: spam, ORDB-RBL
|
|
27
|
+
X-CSI-MailScanner-From: yusuf75thu@auracom.net
|
|
28
|
+
X-Spam-Status: Yes
|
|
29
|
+
|
|
30
|
+
This is a multi-part message in MIME format.
|
|
31
|
+
|
|
32
|
+
------=_NextPart_000_0023_08_E8CD50F3.4EF2F754
|
|
33
|
+
Content-Type: text/plain;
|
|
34
|
+
charset="windows-1251"
|
|
35
|
+
Content-Transfer-Encoding: quoted-printable
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
Filter2: This message has been scanned for viruses and
|
|
39
|
+
dangerous content by MailScanner, and is
|
|
40
|
+
believed to be clean.
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
------=_NextPart_000_0023_08_E8CD50F3.4EF2F754
|
|
44
|
+
Content-Type: text/html;
|
|
45
|
+
charset="windows-1251"
|
|
46
|
+
Content-Transfer-Encoding: quoted-printable
|
|
47
|
+
|
|
48
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
49
|
+
<HTML><HEAD>
|
|
50
|
+
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-125=
|
|
51
|
+
1">
|
|
52
|
+
<META content=3D"MSHTML 6.00.2900.2180" name=3DGENERATOR>
|
|
53
|
+
<STYLE></STYLE>
|
|
54
|
+
</HEAD>
|
|
55
|
+
<BODY bgColor=3D#ffffff>
|
|
56
|
+
<br />This message has been scanned for viruses and
|
|
57
|
+
<br />dangerous content by
|
|
58
|
+
<a href=3D"http://www.mailscanner.info/"><b>MailScanner</b></a>, and is
|
|
59
|
+
<br />believed to be clean.
|
|
60
|
+
</HTML>
|
|
61
|
+
|
|
62
|
+
------=_NextPart_000_0023_08_E8CD50F3.4EF2F754--
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
From jamis_buck@byu.edu Mon May 2 16:07:05 2005
|
|
2
|
+
Mime-Version: 1.0 (Apple Message framework v622)
|
|
3
|
+
Content-Transfer-Encoding: base64
|
|
4
|
+
Message-Id: <d3b8cf8e49f0448085@0c28713a1@f473e@37signals.com>
|
|
5
|
+
Content-Type: text/plain;
|
|
6
|
+
charset=EUC-KR;
|
|
7
|
+
format=flowed
|
|
8
|
+
To: willard15georgina@jamis.backpackit.com
|
|
9
|
+
From: Jamis Buck <jamis@37signals.com>
|
|
10
|
+
Subject: =?EUC-KR?Q?NOTE:_=C7=D1=B1=B9=B8=BB=B7=CE_=C7=CF=B4=C2_=B0=CD?=
|
|
11
|
+
Date: Mon, 2 May 2005 16:07:05 -0600
|
|
12
|
+
|
|
13
|
+
tOu6zrrQwMcguLbC+bChwfa3ziwgv+y4rrTCIMfPs6q01MC7ILnPvcC0z7TZLg0KDQrBpiDAzLin
|
|
14
|
+
wLogSmFtaXPA1LTPtNku
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Delivered-To: tim@powerupdev.com
|
|
2
|
+
Return-Path: <www-data@mangaverde.net>
|
|
3
|
+
To: tim@powerupdev.com concierge@powerupdev.com
|
|
4
|
+
From: tim@powerupdev.com concierge@powerupdev.com
|
|
5
|
+
Subject: /home/svn/public/minebox revision 214
|
|
6
|
+
Reply-to: tim@powerupdev.com concierge@powerupdev.com
|
|
7
|
+
Message-Id: <20071022234523.5BD8E86D2@mangaverde.net>
|
|
8
|
+
Date: Mon, 22 Oct 2007 23:45:23 +0000 (UTC)
|
|
9
|
+
|
|
10
|
+
<p><b>recordkick</b> 2007-10-22 23:45:23 +0000 (Mon, 22 Oct 2007)</p><p>test
|
|
11
|
+
subversion<br>
|
|
12
|
+
</p><hr noshade><pre><font color=\"gray\">Modified:
|
|
13
|
+
trunk/README
|
|
14
|
+
===================================================================
|
|
15
|
+
--- trunk/README\t2007-10-22
|
|
16
|
+
23:41:34 UTC (rev 213)
|
|
17
|
+
+++ trunk/README\t2007-10-22 23:45:23 UTC (rev 214)
|
|
18
|
+
@@ -1,5 +1,5 @@
|
|
19
|
+
== Welcome
|
|
20
|
+
to Rails
|
|
21
|
+
-Test
|
|
22
|
+
+Tedst
|
|
23
|
+
Rails is a web-application and persistence framework that includes everything
|
|
24
|
+
needed
|
|
25
|
+
to create database-backed web-applications according to the
|
|
26
|
+
Model-View-Control pattern of separation. This pattern
|
|
27
|
+
splits the view (also
|
|
28
|
+
|
|
29
|
+
</font>
|
|
30
|
+
</pre>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Subject: this message JUST contains an attachment
|
|
2
|
+
From: Ryan Finnie <rfinnie@domain.dom>
|
|
3
|
+
To: bob@domain.dom
|
|
4
|
+
Content-Disposition: attachment; filename=blah.gz
|
|
5
|
+
Content-Transfer-Encoding: base64
|
|
6
|
+
Content-Description: Attachment has identical content to above foo.gz
|
|
7
|
+
Message-Id: <1066974048.4264.62.camel@localhost>
|
|
8
|
+
Mime-Version: 1.0
|
|
9
|
+
Date: 23 Oct 2003 22:40:49 -0700
|
|
10
|
+
Content-Type: application/x-gzip; NAME=blah.gz
|
|
11
|
+
|
|
12
|
+
SubjectthismessageJUSTcontainsanattachmentFromRyanFinnierfinniedomaindomTobo
|
|
13
|
+
bdomaindomContentDispositionattachmentfilenameAblahgzContentTypeapplication/
|
|
14
|
+
xgzipnameAblahgzContentTransferEncodingbase64ContentDescriptionAttachmenthas
|
|
15
|
+
identicalcontenttoabovefoogzMessageId1066974048426462camellocalhostMimeVersi
|
|
16
|
+
on10Date23Oct20032240490700H4sIAOHBmD8AA4vML1XPyVHISy1LLVJIy8xLUchNVeQCAHbe7
|
|
17
|
+
64WA
|
|
@@ -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,17 @@
|
|
|
1
|
+
From mikel@me.com Mon May 2 16:07:05 2005
|
|
2
|
+
Mime-Version: 1.0 (Apple Message framework v622)
|
|
3
|
+
Received: from jsj1wlrmd001.webex.com (by jsj1wlrmd001.webex.com
|
|
4
|
+
(8.12.10/8.12.11) with ESMTP id m8MKKPTs022429
|
|
5
|
+
for <xxxx@example.com>; Mon, 22 Sep 2008 20:20:25 GMT
|
|
6
|
+
Content-Transfer-Encoding: base64
|
|
7
|
+
Message-Id: <d3b8cf8e49f04480850c28713a1f473e@lindsaar.net>
|
|
8
|
+
Content-Type: text/plain;
|
|
9
|
+
charset=EUC-KR;
|
|
10
|
+
format=flowed
|
|
11
|
+
To: bob@bob.com
|
|
12
|
+
From: mikel@me.com
|
|
13
|
+
Subject: =?EUC-KR?Q?NOTE:_=C7=D1=B1=B9=B8=BB=B7=CE_=C7=CF=B4=C2_=B0=CD?=
|
|
14
|
+
Date: Sat, 20 Sep 2008 20:04:30 +0300 (ùòåï ÷éõ éøåùìéí)
|
|
15
|
+
|
|
16
|
+
tOu6zrrQwMcguLbC+bChwfa3ziwgv+y4rrTCIMfPs6q01MC7ILnPvcC0z7TZLg0KDQrBpiDAzLin
|
|
17
|
+
wLogSmFtaXPA1LTPtNku
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Delivered-To: xxx@xxx.com
|
|
2
|
+
Received: by 10.67.31.8 with SMTP id i8cs1195ugj;
|
|
3
|
+
Mon, 22 Sep 2008 13:45:18 -0700 (PDT)
|
|
4
|
+
Received: by 10.100.207.5 with SMTP id e5mr3483815ang.104.1222110393505;
|
|
5
|
+
Mon, 22 Sep 2008 12:06:33 -0700 (PDT)
|
|
6
|
+
Return-Path: <noreply@rubyforge.org>
|
|
7
|
+
Received: from rubyforge.org (rubyforge.org [205.234.109.19])
|
|
8
|
+
by mx.google.com with ESMTP id c2si899474ana.10.2008.09.22.12.06.28;
|
|
9
|
+
Mon, 22 Sep 2008 12:06:33 -0700 (PDT)
|
|
10
|
+
Received-SPF: pass (google.com: best guess record for domain of noreply@rubyforge.org designates 205.234.109.19 as permitted sender) client-ip=205.234.109.19;
|
|
11
|
+
Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of noreply@rubyforge.org designates 205.234.109.19 as permitted sender) smtp.mail=noreply@rubyforge.org
|
|
12
|
+
Received: by rubyforge.org (Postfix, from userid 502)
|
|
13
|
+
id 8FB1518581AC; Mon, 22 Sep 2008 15:06:28 -0400 (EDT)
|
|
14
|
+
To: noreply@rubyforge.org
|
|
15
|
+
From: Sandy M. <noreply@rubyforge.org>
|
|
16
|
+
Subject: [skynet-help][60666] How are intermediate files handled in SkyNet?
|
|
17
|
+
Content-type: text/plain; charset=UTF-8
|
|
18
|
+
Message-Id: <20080922190628.8FB1518581AC@rubyforge.org>
|
|
19
|
+
Date: Mon, 22 Sep 2008 15:06:28 -0400 (EDT)
|
|
20
|
+
|
|
21
|
+
Testing, testing, 123.
|
|
@@ -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> </DIV>
|
|
52
|
+
<DIV><FONT face=3DArial size=3D2><STRONG>So there.</STRONG></FONT></DIV>
|
|
53
|
+
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
|
|
54
|
+
<DIV><FONT face=3DArial size=3D2>Me.</FONT></DIV></BODY></HTML>
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
------=_NextPart_000_0093_01C81419.EB75E850--
|
|
58
|
+
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
X-Gmail-Received: b2c98353cc39d93e4204831226f778c200d28109
|
|
2
|
+
Delivered-To: roor32@gmail.com
|
|
3
|
+
Received: by 10.64.10.4 with SMTP id 4cs594808qbj;
|
|
4
|
+
Fri, 20 Oct 2006 01:53:34 -0700 (PDT)
|
|
5
|
+
Received: by 10.65.224.11 with SMTP id b11mr149813qbr;
|
|
6
|
+
Fri, 20 Oct 2006 01:53:34 -0700 (PDT)
|
|
7
|
+
Return-Path: <>
|
|
8
|
+
Received: from anis.telecom.uqam.ca (anis.telecom.uqam.ca [132.208.250.6])
|
|
9
|
+
by mx.google.com with ESMTP id e13si1575402qbe.2006.10.20.01.53.34;
|
|
10
|
+
Fri, 20 Oct 2006 01:53:34 -0700 (PDT)
|
|
11
|
+
Received-SPF: pass (google.com: best guess record for domain of anis.telecom.uqam.ca designates 132.208.250.6 as permitted sender)
|
|
12
|
+
Received: from anis4.telecom.uqam.ca (anis4.telecom.uqam.ca [132.208.250.236])
|
|
13
|
+
by sortant.uqam.ca (8.13.6/8.12.1) with SMTP id k9K8SIwA023763
|
|
14
|
+
for <roor32@gmail.com>; Fri, 20 Oct 2006 04:28:33 -0400 (EDT)
|
|
15
|
+
Received: from antivirus.uqam.ca ([127.0.0.1])
|
|
16
|
+
by anis4.telecom.uqam.ca (SAVSMTP 3.1.1.32) with SMTP id M2006102004283404041
|
|
17
|
+
for <roor32@gmail.com>; Fri, 20 Oct 2006 04:28:34 -0400
|
|
18
|
+
Received: from localhost (localhost)
|
|
19
|
+
by antivirus.uqam.ca (8.13.6/8.12.1) id k9JMDbg4005560;
|
|
20
|
+
Fri, 20 Oct 2006 04:28:33 -0400 (EDT)
|
|
21
|
+
Date: Fri, 20 Oct 2006 04:28:33 -0400 (EDT)
|
|
22
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@antivirus.uqam.ca>
|
|
23
|
+
Message-Id: <200610200828.k9JMDbg4005560@antivirus.uqam.ca>
|
|
24
|
+
To: <roor32@gmail.com>
|
|
25
|
+
MIME-Version: 1.0
|
|
26
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
|
27
|
+
boundary="k9JMDbg4005560.1161332913/antivirus.uqam.ca"
|
|
28
|
+
Subject: Warning: could not send message for past 1 day
|
|
29
|
+
Auto-Submitted: auto-generated (warning-timeout)
|
|
30
|
+
|
|
31
|
+
This is a MIME-encapsulated message
|
|
32
|
+
|
|
33
|
+
--k9JMDbg4005560.1161332913/antivirus.uqam.ca
|
|
34
|
+
|
|
35
|
+
**********************************************
|
|
36
|
+
** THIS IS A WARNING MESSAGE ONLY **
|
|
37
|
+
** YOU DO NOT NEED TO RESEND YOUR MESSAGE **
|
|
38
|
+
**********************************************
|
|
39
|
+
|
|
40
|
+
The original message was received at Thu, 19 Oct 2006 01:23:47 -0400 (EDT)
|
|
41
|
+
from py-out-1112.google.com [64.233.166.178]
|
|
42
|
+
|
|
43
|
+
----- Transcript of session follows -----
|
|
44
|
+
<larose.julie@courrier.uqam.ca>... Deferred
|
|
45
|
+
Warning: message still undelivered after 1 day
|
|
46
|
+
Will keep trying until message is 5 days old
|
|
47
|
+
|
|
48
|
+
--k9JMDbg4005560.1161332913/antivirus.uqam.ca
|
|
49
|
+
Content-Type: message/delivery-status
|
|
50
|
+
|
|
51
|
+
Reporting-MTA: dns; antivirus.uqam.ca
|
|
52
|
+
Arrival-Date: Thu, 19 Oct 2006 01:23:47 -0400 (EDT)
|
|
53
|
+
|
|
54
|
+
Final-Recipient: RFC822; larose.julie@courrier.uqam.ca
|
|
55
|
+
Action: delayed
|
|
56
|
+
Status: 4.5.0
|
|
57
|
+
Diagnostic-Code: SMTP;
|
|
58
|
+
Last-Attempt-Date: Fri, 20 Oct 2006 04:28:33 -0400 (EDT)
|
|
59
|
+
Will-Retry-Until: Tue, 24 Oct 2006 01:23:47 -0400 (EDT)
|
|
60
|
+
|
|
61
|
+
--k9JMDbg4005560.1161332913/antivirus.uqam.ca
|
|
62
|
+
Content-Type: message/rfc822
|
|
63
|
+
|
|
64
|
+
Return-Path: <roor32@gmail.com>
|
|
65
|
+
Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178])
|
|
66
|
+
by intrant.uqam.ca (8.13.6/8.12.2/uqam-filtres) with SMTP id k9J5Ni8o007263
|
|
67
|
+
for <larose.julie@courrier.uqam.ca>; Thu, 19 Oct 2006 01:23:47 -0400 (EDT)
|
|
68
|
+
X-UQAM-Spam-Filter: Filtre-Uqam re: abuse@uqam.ca
|
|
69
|
+
Received: by py-out-1112.google.com with SMTP id t32so610221pyc
|
|
70
|
+
for <larose.julie@courrier.uqam.ca>; Wed, 18 Oct 2006 22:23:33 -0700 (PDT)
|
|
71
|
+
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws;
|
|
72
|
+
s=beta; d=gmail.com;
|
|
73
|
+
h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition;
|
|
74
|
+
b=Fwt0k1kaMU+1kM1iTG0q4Xf94p9alSohgM7QQN0CSjfBYUUhT+J4Y6+ZWotaaSffV3gX86RE/n97n0yQ/33EgYKIifuEpa0hi2mg3KTmcDqlCjiDfih58Z998GEFfbhu0he2jsoB+k6AgVRFPwP6LMRi6T66vr2f7IOAmX2IHiU=
|
|
75
|
+
Received: by 10.65.241.20 with SMTP id t20mr15391984qbr;
|
|
76
|
+
Wed, 18 Oct 2006 15:10:03 -0700 (PDT)
|
|
77
|
+
Received: by 10.64.10.4 with HTTP; Wed, 18 Oct 2006 15:10:03 -0700 (PDT)
|
|
78
|
+
Message-ID: <89d7557c0610181510r6fa5ebd8n66a7deec71ade118@mail.gmail.com>
|
|
79
|
+
Date: Wed, 18 Oct 2006 18:10:03 -0400
|
|
80
|
+
From: "=?ISO-8859-1?Q?RogE9?=" <roor32@gmail.com>
|
|
81
|
+
To: larose.julie@courrier.uqam.ca
|
|
82
|
+
Subject: Est-ce toi ?
|
|
83
|
+
MIME-Version: 1.0
|
|
84
|
+
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
|
|
85
|
+
Content-Transfer-Encoding: 7bit
|
|
86
|
+
Content-Disposition: inline
|
|
87
|
+
|
|
88
|
+
Salut,
|
|
89
|
+
je ne suis pas sur de m'adresser a la bonne personne.
|
|
90
|
+
Mais si jamais tu me reconnais :p, peux-tu repondre a ce mail ?
|
|
91
|
+
Merci.
|
|
92
|
+
Roger
|
|
93
|
+
|
|
94
|
+
--k9JMDbg4005560.1161332913/antivirus.uqam.ca--
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
From email_test@me.nowhere
|
|
2
|
+
Return-Path: <email_test@me.nowhere>
|
|
3
|
+
Received: from omta05sl.mx.bigpond.com by me.nowhere.else with ESMTP id 632BD5758 for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:21 +1000
|
|
4
|
+
Received: from oaamta05sl.mx.bigpond.com by omta05sl.mx.bigpond.com with ESMTP id <20071021093820.HSPC16667.omta05sl.mx.bigpond.com@oaamta05sl.mx.bigpond.com> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
|
|
5
|
+
Received: from mikel091a by oaamta05sl.mx.bigpond.com with SMTP id <20071021093820.JFMT24025.oaamta05sl.mx.bigpond.com@mikel091a> for <mikel@me.nowhere.else>; Sun, 21 Oct 2007 19:38:20 +1000
|
|
6
|
+
Date: Sun, 21 Oct 2007 19:38:13 +1000
|
|
7
|
+
From: Mikel Lindsaar <email_test@me.nowhere>
|
|
8
|
+
Reply-To: Mikel Lindsaar <email_test@me.nowhere>
|
|
9
|
+
To: mikel@me.nowhere
|
|
10
|
+
Message-Id: <009601c813c6$19df3510$0437d30a@mikel091a>
|
|
11
|
+
Subject: Testing outlook
|
|
12
|
+
Subject: Another PDF
|
|
13
|
+
Mime-Version: 1.0
|
|
14
|
+
Content-Type: multipart/mixed;
|
|
15
|
+
boundary="----=_Part_2192_32400445.1115745999735"
|
|
16
|
+
X-Virus-Scanned: amavisd-new at textdrive.com
|
|
17
|
+
|
|
18
|
+
------=_Part_2192_32400445.1115745999735
|
|
19
|
+
Content-Type: text/plain; charset=ISO-8859-1
|
|
20
|
+
Content-Transfer-Encoding: quoted-printable
|
|
21
|
+
Content-Disposition: inline
|
|
22
|
+
|
|
23
|
+
Just attaching another PDF, here, to see what the message looks like,
|
|
24
|
+
and to see if I can figure out what is going wrong here.
|
|
25
|
+
|
|
26
|
+
------=_Part_2192_32400445.1115745999735
|
|
27
|
+
Content-Type: application/pdf; name="broken.pdf"
|
|
28
|
+
Content-Transfer-Encoding: base64
|
|
29
|
+
Content-Disposition: attachment; filename="broken.pdf"
|
|
30
|
+
|
|
31
|
+
JVBERi0xLjQNCiXk9tzfDQoxIDAgb2JqDQo8PCAvTGVuZ3RoIDIgMCBSDQogICAvRmlsdGVyIC9G
|
|
32
|
+
bGF0ZURlY29kZQ0KPj4NCnN0cmVhbQ0KeJy9Wt2KJbkNvm/od6jrhZxYln9hWEh2p+8HBvICySaE
|
|
33
|
+
ycLuTV4/1ifJ9qnq09NpSBimu76yLUuy/qzqcPz7+em3Ixx/CDc6CsXxs3b5+fvfjr/8cPz6/BRu
|
|
34
|
+
rbfAx/n3739/fuJylJ5u5fjX81OuDr4deK4Bz3z/aDP+8fz0yw8g0Ofq7ktr1Mn+u28rvhy/jVeD
|
|
35
|
+
QSa+9YNKHP/pxjvDNfVAx/m3MFz54FhvTbaseaxiDoN2LeMVMw+yA7RbHSCDzxZuaYB2E1Yay7QU
|
|
36
|
+
x89vz0+tyFDKMlAHK5yqLmnjF+c4RjEiQIUeKwblXMe+AsZjN1J5yGQL5DHpDHksurM81rF6PKab
|
|
37
|
+
gK6zAarIDzIiUY23rJsN9iorAE816aIu6lsgAdQFsuhhkHOUFgVjp2GjMqSewITXNQ27jrMeamkg
|
|
38
|
+
1rPI3iLWG2CIaSBB+V1245YVRICGbbpYKHc2USFDl6M09acQVQYhlwIrkBNLISvXhGlF1wi5FHCw
|
|
39
|
+
wxZkoGNJlVeJCEsqKA+3YAV5AMb6KkeaqEJQmFKKQU8T1pRi2ihE1Y4CDrqoYFFXYjJJOatsyzuI
|
|
40
|
+
8SIlykuxKTMibWK8H1PgEvqYgs4GmQSrEjJAalgGirIhik+p4ZQN9E3ETFPAHE1b8pp1l/0Rc1gl
|
|
41
|
+
fQs0ABWvyoZZzU8VnPXwVVcO9BEsyjEJaO6eBoZRyKGlrKoYoOygA8BGIzgwN3RQ15ouigG5idZQ
|
|
42
|
+
fx2U4Db2CqiLO0WHAZoylGiCAqhniNQjFjQPSkmjwfNTgQ6M1Ih+eWo36wFmjIxDJZiGUBiWsAyR
|
|
43
|
+
xX3EekGOizkGI96Ol9zVZTAivikURhRsHh2E3JhWMpSTZCnnonrLhMCodgrNcgo4uyJUJc6qnVss
|
|
44
|
+
nrGd1Ptr0YwisCOYyIbUwVjV4xBUNLbguSO2YHujonAMJkMdSI7bIw91Akq2AUlMUWGFTMAOamjU
|
|
45
|
+
OvZQCxIkY2pCpMFo/IwLdVLHs6nddwTRrgoVbvLU9eB0G4EMndV0TNoxHbt3JBWwK6hhv3iHfDtF
|
|
46
|
+
yokB302IpEBTnWICde4uYc/1khDbSIkQopO6lcqamGBu1OSE3N5IPSsZX00CkSHRiiyx6HQIShsS
|
|
47
|
+
HSVNswdVsaOUSAWq9aYhDtGDaoG5a3lBGkYt/lFlBFt1UqrYnzVtUpUQnLiZeouKgf1KhRBViRRk
|
|
48
|
+
ExepJCzTwEmFDalIRbLEGtw0gfpESOpIAF/NnpPzcVCG86s0g2DuSyd41uhNGbEgaSrWEXORErbw
|
|
49
|
+
------=_Part_2192_32400445.1115745999735--
|
|
50
|
+
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
From jamis@37signals.com Thu Feb 22 11:20:31 2007
|
|
2
|
+
Mime-Version: 1.0 (Apple Message framework v752.3)
|
|
3
|
+
Message-Id: <2CCE0408-10C7-4045-9B16-A1C11C31469B@37signals.com>
|
|
4
|
+
Content-Type: multipart/signed;
|
|
5
|
+
micalg=sha1;
|
|
6
|
+
boundary=Apple-Mail-42-587703407;
|
|
7
|
+
protocol="application/pkcs7-signature"
|
|
8
|
+
To: Jamis Buck <jamis@jamisbuck.org>
|
|
9
|
+
Subject: Testing attachments
|
|
10
|
+
From: Jamis Buck <jamis@37signals.com>
|
|
11
|
+
Date: Thu, 22 Feb 2007 11:20:31 -0700
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
--Apple-Mail-42-587703407
|
|
15
|
+
Content-Type: multipart/mixed;
|
|
16
|
+
boundary=Apple-Mail-41-587703287
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
--Apple-Mail-41-587703287
|
|
20
|
+
Content-Transfer-Encoding: 7bit
|
|
21
|
+
Content-Type: text/plain;
|
|
22
|
+
charset=US-ASCII;
|
|
23
|
+
format=flowed
|
|
24
|
+
|
|
25
|
+
Here is a test of an attachment via email.
|
|
26
|
+
|
|
27
|
+
- Jamis
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
--Apple-Mail-41-587703287
|
|
31
|
+
Content-Transfer-Encoding: base64
|
|
32
|
+
Content-Type: image/png;
|
|
33
|
+
x-unix-mode=0644;
|
|
34
|
+
name=byo-ror-cover.png
|
|
35
|
+
Content-Disposition: inline;
|
|
36
|
+
filename=truncated.png
|
|
37
|
+
|
|
38
|
+
iVBORw0KGgoAAAANSUhEUgAAAKUAAADXCAYAAAB7wZEQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz
|
|
39
|
+
AAALEgAACxIB0t1+/AAAABd0RVh0Q3JlYXRpb24gVGltZQAxLzI1LzIwMDeD9CJVAAAAGHRFWHRT
|
|
40
|
+
b2Z0d2FyZQBBZG9iZSBGaXJld29ya3NPsx9OAAAyBWlUWHRYTUw6Y29tLmFkb2JlLnhtcDw/eHBh
|
|
41
|
+
Y2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1l
|
|
42
|
+
dGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDQuMS1j
|
|
43
|
+
MDIwIDEuMjU1NzE2LCBUdWUgT2N0IDEwIDIwMDYgMjM6MTY6MzQiPgogICA8cmRmOlJERiB4bWxu
|
|
44
|
+
czpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAg
|
|
45
|
+
ICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4YXA9Imh0
|
|
46
|
+
dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iPgogICAgICAgICA8eGFwOkNyZWF0b3JUb29sPkFk
|
|
47
|
+
b2JlIEZpcmV3b3JrcyBDUzM8L3hhcDpDcmVhdG9yVG9vbD4KICAgICAgICAgPHhhcDpDcmVhdGVE
|
|
48
|
+
YXRlPjIwMDctMDEtMjVUMDU6Mjg6MjFaPC94YXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhhcDpN
|
|
49
|
+
b2RpZnlEYXRlPjIwMDctMDEtMjVUMDU6Mjg6MjFaPC94YXA6TW9kaWZ5RGF0ZT4KICAgICAgPC9y
|
|
50
|
+
ZGY6RGVzY3JpcHRpb24+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAg
|
|
51
|
+
ICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyI+CiAgICAg
|
|
52
|
+
ICAgIDxkYzpmb3JtYXQ+aW1hZ2UvcG5nPC9kYzpmb3JtYXQ+CiAgICAgIDwvcmRmOkRlc2NyaXB0
|
|
53
|
+
hhojpmnJMfaYFmSkXWg5PGCmHXVj/c9At0hSK2xGdd8F3muk0VFjb4f5Ue0ksQ8qAcq0delaXhdb
|
|
54
|
+
DjKNnF+3B3t9kObZYmk7AZgWYqO9anpR3wpM9sQ5XslB9a+kWyTtNb0fOmudzGHfPFBQDKesyycm
|
|
55
|
+
DBL7Cw5bXjIEuci+SSOm/LYnXDZu6iuPEj8lYBb+OU8xx1f9m+e5rhJiYKqjo5vHfiZp+VUkW9xc
|
|
56
|
+
Ufd6JHNWc47PkQqb9ie3SLEZB/ZqyAssiqURY+G35iOMZUrHbasHnb80QAPv9FHtAbJIyro7bi5b
|
|
57
|
+
ai2TEAKen5+LJNWrglZjm3UbZvt7KryA2J5b5J1jZF8kL6GzvG1Zqx54Y1y7J7n20wMOt9frG2sW
|
|
58
|
+
uwGP07kNz3732vf6bfvAvLldfS+9fts2euXY37D+R29FGZdlnhzV4TTFmPJduBP2RbNNua4rTqcT
|
|
59
|
+
Qt7Xy1KUB0AHSdP5AZQYvHZg7WD1XvYeMO1A9HhZPqMX5KXbMBrn2efxns/ee21674efxz4Tp/fq
|
|
60
|
+
2HZ648dgYaC1i3Vq1IbNPq3PvDTPezY9FaRISjvnzWqdgcWN8EJgjnNq+Z7ktOm9l2Nfth28EZi4
|
|
61
|
+
bG/we5JwxM+Tql47/D/X6b38I8/RyxvxPJrX6zvQbo3h9jyJx+C0ALX327QETHl5eYlaYCT5rPTb
|
|
62
|
+
+5/rAq26t3lKIxV/p88hq6ptngdgCzoPjJqndiLfc/6y5A14WeDFGNPct4iUsJBV2bYzLEV7m83s
|
|
63
|
+
6Rp63VPhHKC/g/LzaU9qexJRr56043JWinqAtfZqsSm1sjoznthl54dtCqv+uL4nIY+oYWuc3+nH
|
|
64
|
+
kGfn8b0HQpvOYLQAZUDanbJs3jQhITZEgdarZK+cO6ySlL13rut5nFaN23s7u3Snz6eRPTkCoc2/
|
|
65
|
+
Vp1zHfZVFpZ87FiMVLV1iqyK5rlzfji2GzjfDsodlD+Weo5UD4h6PwKqzQMqID0tq2VjjFVSMpis
|
|
66
|
+
ZLRAs7sePZBZAHI+gIanB8I7MD+femAceeUe2Kxa5jS950kZ1p5eNEdeX1+jFmSpZ+1EdWCsDcne
|
|
67
|
+
NPNgUHNw3aYpnzv9PGTX0uo94EtN9qq1rOdxe3kc79T8ukeHJJ8Fnxej6qlylbLLsjQLOy6Xy2a1
|
|
68
|
+
kefs/N+nM7+S7IG5/E5Yc7F003pWErLjbH0O5cGadiMptSB/DZ5U5DI9yeg5MFYyMj8lC/Y7/Xjq
|
|
69
|
+
OZlWcnpg9aQfXz2HRq+Wn5xOp6gN8tWq8R44e2pfyzLYemEgprst+XXk2Zj2nXlbsG05BprndTMv
|
|
70
|
+
C3QRaXczshhVsHnMgfYn80Y2g5JureA6wBasPeP7LkE/jvZMJAaf/g/U2RelHsisvan5FqweIAHg
|
|
71
|
+
Pwc7L68GxvVDAAAAAElFTkSuQmCC
|
|
72
|
+
|
|
73
|
+
--Apple-Mail-41-587703287--
|
|
74
|
+
|
|
75
|
+
--Apple-Mail-42-587703407
|
|
76
|
+
Content-Transfer-Encoding: base64
|
|
77
|
+
Content-Type: application/pkcs7-signature;
|
|
78
|
+
name=smime.p7s
|
|
79
|
+
Content-Disposition: attachment;
|
|
80
|
+
filename=smime.p7s
|
|
81
|
+
|
|
82
|
+
MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIGJzCCAuAw
|
|
83
|
+
ggJJoAMCAQICEFjnFNYXwDEZRWY5EkfzopUwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UEBhMCWkEx
|
|
84
|
+
JTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ
|
|
85
|
+
ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA2MDkxMjE3MDExMloXDTA3MDkxMjE3MDEx
|
|
86
|
+
MlowRTEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEiMCAGCSqGSIb3DQEJARYTamFt
|
|
87
|
+
aXNAMzdzaWduYWxzLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO2A9JeOFIFJ
|
|
88
|
+
G6z8pTcAldrZ2nMe+Xb1tNrbHgoVzN/QhHXM4qst2Ml93cmFLjMmwG7P9RJeU4oNx+jTqVoBB7NV
|
|
89
|
+
Ne1/o56Do0KhfMZ9iUDQdPLbkZMq4EEpFMdm6PyM3muRKwPhj66iAWe/osCb8DowUK2f66vaRx0Z
|
|
90
|
+
Y0MQHIIrXE02Ta4IfAhIfPqBLkZ4WgTYBHN9vMdYea1jF0GO4gqGk1wqwb3yxv2QMYMbwJ6SI+k/
|
|
91
|
+
ZjkSR/OilTCBhwYLKoZIhvcNAQkQAgsxeKB2MGIxCzAJBgNVBAYTAlpBMSUwIwYDVQQKExxUaGF3
|
|
92
|
+
dGUgQ29uc3VsdGluZyAoUHR5KSBMdGQuMSwwKgYDVQQDEyNUaGF3dGUgUGVyc29uYWwgRnJlZW1h
|
|
93
|
+
aWwgSXNzdWluZyBDQQIQWOcU1hfAMRlFZjkSR/OilTANBgkqhkiG9w0BAQEFAASCAQCfwQiC3v6/
|
|
94
|
+
yleRDGv3bJ4nQYQ+c3mz3+mn3Xi6uU35n3piwxZZaWRdmLyiXPvU+QReHpSf3l2qsEZM3sdE0XF9
|
|
95
|
+
eRul/+QTFJcDNXOEAxG1zC2Gpz+6c6RrX4Ou12Pwkp+pNrZWTSY/mZgdqcArupOBcZi7qBjoWcy5
|
|
96
|
+
wb54dfvSSjrjmqLbkH/E8ww/6gGQuU/xXpAUZgUrTmQHrNKeIdSh5oDkOxFaFWvnmb8Z/2ixKqW/
|
|
97
|
+
Ux6WqamyvBtTs/5YBEtnpZOk+uVoscYEUBhU+DVJ2OSvTdXSivMtBdXmGTsG22k+P1NGUHi/A7ev
|
|
98
|
+
xPaO0uk4V8xyjNlN4HPuGpkrlXwPAAAAAAAA
|
|
99
|
+
|
|
100
|
+
--Apple-Mail-42-587703407--
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
From jamis@37signals.com Mon May 2 16:07:05 2005
|
|
2
|
+
Mime-Version: 1.0 (Apple Message framework v622)
|
|
3
|
+
Content-Transfer-Encoding: base64
|
|
4
|
+
Message-Id: <d3b8cf8e49f04480850c28713a1f473e@37signals.com>
|
|
5
|
+
Content-Type: text/plain;
|
|
6
|
+
charset=EUC-KR;
|
|
7
|
+
format=flowed
|
|
8
|
+
To: jamis@37signals.com
|
|
9
|
+
From: Jamis Buck <jamis@37signals.com>
|
|
10
|
+
Subject: Re: Test: =?UTF-8?B?Iua8ouWtlyI=?= mid =?UTF-8?B?Iua8ouWtlyI=?= tail
|
|
11
|
+
Date: Mon, 2 May 2005 16:07:05 -0600
|
|
12
|
+
|
|
13
|
+
tOu6zrrQwMcguLbC+bChwfa3ziwgv+y4rrTCIMfPs6q01MC7ILnPvcC0z7TZLg0KDQrBpiDAzLin
|
|
14
|
+
wLogSmFtaXPA1LTPtNku
|