Test mailbox deletion.
* libmailutils/tests/mbdel.at: New testcase. * libmailutils/tests/Makefile.am (TESTSUITE_AT): Add mbdel.at. * libmailutils/tests/testsuite.at: Include mbdel.at. * libproto/mbox/mbox.c (mbox_remove): Fix return code. * testsuite/maildir/mbox1: New test mailbox. * testsuite/mh/mbox1: New test mailbox. * testsuite/etc/DISTFILES: Remove. * testsuite/folder/DISTFILES: Remove. * testsuite/lib/DISTFILES: Remove. * testsuite/Makefile.am: Use EXTRA_DIST to distribute subdirs.
Showing
210 changed files
with
2916 additions
and
42 deletions
... | @@ -5,5 +5,5 @@ | ... | @@ -5,5 +5,5 @@ |
5 | PATH=@abs_builddir@:@abs_top_builddir@/frm:$top_srcdir:$srcdir:$PATH | 5 | PATH=@abs_builddir@:@abs_top_builddir@/frm:$top_srcdir:$srcdir:$PATH |
6 | top_srcdir=@abs_top_srcdir@ | 6 | top_srcdir=@abs_top_srcdir@ |
7 | top_builddir=@abs_top_builddir@ | 7 | top_builddir=@abs_top_builddir@ |
8 | 8 | abs_builddir=@abs_builddir@ | |
9 | 9 | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
libmailutils/tests/mbdel.at
0 → 100644
1 | # This file is part of GNU Mailutils. -*- Autotest -*- | ||
2 | # Copyright (C) 2010 Free Software Foundation, Inc. | ||
3 | # | ||
4 | # GNU Mailutils is free software; you can redistribute it and/or | ||
5 | # modify it under the terms of the GNU General Public License as | ||
6 | # published by the Free Software Foundation; either version 3, or (at | ||
7 | # your option) any later version. | ||
8 | # | ||
9 | # This program is distributed in the hope that it will be useful, but | ||
10 | # WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
12 | # General Public License for more details. | ||
13 | # | ||
14 | # You should have received a copy of the GNU General Public License | ||
15 | # along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. | ||
16 | # This file is part of Mailfromd testsuite. | ||
17 | |||
18 | dnl ------------------------------------------------------------ | ||
19 | dnl MBDEL_TEST([FORMAT], [PROG], | ||
20 | dnl [CODE], [STDOUT = `'], [STDERR = `'], | ||
21 | dnl [RUN-IF-FAIL], [RUN-IF-PASS]) | ||
22 | m4_define([MBDEL_TEST],[ | ||
23 | AT_SETUP([Mailbox deletion: $1]) | ||
24 | AT_KEYWORDS([mailbox mbdel mbdel-$1]) | ||
25 | AT_CHECK([$2],[$3],[$4],[$5],[$6],[$7],[$8]) | ||
26 | AT_CLEANUP | ||
27 | ]) | ||
28 | |||
29 | dnl ------------------------------------------------------------ | ||
30 | MBDEL_TEST([mbox], | ||
31 | [cp $top_srcdir/testsuite/spool/mbox1 . | ||
32 | mbdel mbox:mbox1 || exit 2 | ||
33 | test -f mbox1 | ||
34 | ], | ||
35 | [1]) | ||
36 | |||
37 | MBDEL_TEST([mh], | ||
38 | [cp -r $top_srcdir/testsuite/mh/mbox1 . | ||
39 | mbdel mh:mbox1 || exit 2 | ||
40 | test -d mbox1 | ||
41 | ], | ||
42 | [1]) | ||
43 | |||
44 | MBDEL_TEST([maildir], | ||
45 | [cp -r $top_srcdir/testsuite/maildir/mbox1 . | ||
46 | mbdel maildir:mbox1 || exit 2 | ||
47 | test -d mbox1 | ||
48 | ], | ||
49 | [1]) | ||
50 | |||
51 | MBDEL_TEST([mh with subdirs], | ||
52 | [cp -r $top_srcdir/testsuite/mh/mbox1 . | ||
53 | mkdir mbox1/subfolder | ||
54 | mbdel mh:mbox1 || exit 2 | ||
55 | test -d mbox1 && find mbox1 | ||
56 | ], | ||
57 | [0], | ||
58 | [mailbox removed, but has subfolders | ||
59 | mbox1 | ||
60 | mbox1/subfolder | ||
61 | ]) | ||
62 | |||
63 | MBDEL_TEST([maildir with subdirs], | ||
64 | [cp -r $top_srcdir/testsuite/maildir/mbox1 . | ||
65 | mkdir mbox1/subfolder | ||
66 | mbdel maildir:mbox1 || exit 2 | ||
67 | test -d mbox1 && find mbox1 | ||
68 | ], | ||
69 | [0], | ||
70 | [mailbox removed, but has subfolders | ||
71 | mbox1 | ||
72 | mbox1/subfolder | ||
73 | ]) |
... | @@ -57,10 +57,12 @@ AT_INIT | ... | @@ -57,10 +57,12 @@ AT_INIT |
57 | m4_include([list.at]) | 57 | m4_include([list.at]) |
58 | m4_include([address.at]) | 58 | m4_include([address.at]) |
59 | m4_include([argcv.at]) | 59 | m4_include([argcv.at]) |
60 | m4_include([mime.at]) | ||
61 | m4_include([url.at]) | 60 | m4_include([url.at]) |
62 | m4_include([mailcap.at]) | 61 | m4_include([mailcap.at]) |
63 | m4_include([base64e.at]) | 62 | m4_include([base64e.at]) |
64 | m4_include([base64d.at]) | 63 | m4_include([base64d.at]) |
65 | m4_include([decode2047.at]) | 64 | m4_include([decode2047.at]) |
66 | m4_include([encode2047.at]) | 65 | m4_include([encode2047.at]) |
66 | |||
67 | m4_include([mime.at]) | ||
68 | m4_include([mbdel.at]) | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -181,7 +181,7 @@ mbox_remove (mu_mailbox_t mailbox) | ... | @@ -181,7 +181,7 @@ mbox_remove (mu_mailbox_t mailbox) |
181 | 181 | ||
182 | MU_DEBUG1 (mailbox->debug, MU_DEBUG_TRACE1, | 182 | MU_DEBUG1 (mailbox->debug, MU_DEBUG_TRACE1, |
183 | "mbox_remove (%s)\n", mud->name); | 183 | "mbox_remove (%s)\n", mud->name); |
184 | return unlink (mud->name); | 184 | return unlink (mud->name) == 0 ? 0 : errno; |
185 | } | 185 | } |
186 | 186 | ||
187 | /* Cover function that calls the real thing, mbox_scan(), with | 187 | /* Cover function that calls the real thing, mbox_scan(), with | ... | ... |
... | @@ -17,30 +17,4 @@ | ... | @@ -17,30 +17,4 @@ |
17 | ## Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA | 17 | ## Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA |
18 | ## 02110-1301 USA | 18 | ## 02110-1301 USA |
19 | 19 | ||
20 | test_dirs = lib etc spool folder | 20 | EXTRA_DIST = lib etc spool folder maildir mh |
21 | |||
22 | dist-hook: | ||
23 | @here=`cd $(top_builddir)/$(subdir) && pwd`; \ | ||
24 | srcdir=`cd $(srcdir) && pwd`; \ | ||
25 | distdir=`cd $(distdir) && pwd`; \ | ||
26 | for dir in $(test_dirs); \ | ||
27 | do \ | ||
28 | cd $$srcdir;\ | ||
29 | mkdir $$distdir/$$dir;\ | ||
30 | cd $$dir;\ | ||
31 | for file in DISTFILES `cat DISTFILES`; do \ | ||
32 | d=$$srcdir/$$dir; \ | ||
33 | if test -d $$d/$$file; then \ | ||
34 | cp -pr $$d/$$file $$distdir/$$dir/$$file; \ | ||
35 | else \ | ||
36 | test -f $$distdir/$$dir/$$file \ | ||
37 | || cp -p $$d/$$file $$distdir/$$dir/$$file || exit; \ | ||
38 | fi; \ | ||
39 | done;\ | ||
40 | done;\ | ||
41 | cd $$here | ||
42 | |||
43 | DISTCLEANFILES=*.exp *.log *.sum | ||
44 | |||
45 | distclean-local: | ||
46 | -rm -rf data | ... | ... |
testsuite/etc/DISTFILES
deleted
100644 → 0
testsuite/folder/DISTFILES
deleted
100644 → 0
testsuite/lib/DISTFILES
deleted
100644 → 0
1 | mailutils.exp |
1 | Received: (from foobar@nonexistent.net) | ||
2 | by nonexistent.net id fBSKI8N04906 | ||
3 | for bar@dontmailme.org; Fri, 28 Dec 2001 22:18:08 +0200 | ||
4 | Date: Fri, 28 Dec 2001 22:18:08 +0200 | ||
5 | From: Foo Bar <foobar@nonexistent.net> | ||
6 | Message-Id: <200112282018.fBSKI8N04906@nonexistent.net> | ||
7 | To: Bar <bar@dontmailme.org> | ||
8 | Subject: Jabberwocky | ||
9 | X-IMAPbase: 0 1 | ||
10 | X-Envelope-Date: Fri Dec 28 22:18:09 2001 | ||
11 | X-Envelope-Sender: foobar@nonexistent.net | ||
12 | |||
13 | `Twas brillig, and the slithy toves | ||
14 | Did gyre and gimble in the wabe; | ||
15 | All mimsy were the borogoves, | ||
16 | And the mome raths outgrabe. | ||
17 | |||
18 | `Beware the Jabberwock, my son! | ||
19 | The jaws that bite, the claws that catch! | ||
20 | Beware the Jujub bird, and shun | ||
21 | The frumious Bandersnatch!' | ||
22 | |||
23 | He took his vorpal sword in hand: | ||
24 | Long time the manxome foe he sought -- | ||
25 | So rested he by the Tumtum gree, | ||
26 | And stood awhile in thought. | ||
27 | |||
28 | And as in uffish thought he stood, | ||
29 | The Jabberwock, with eyes of flame, | ||
30 | Came whiffling through the tulgey wook, | ||
31 | And burbled as it came! | ||
32 | |||
33 | One, two! One, two! And through and through | ||
34 | The vorpal blade went snicker-snack! | ||
35 | He left it dead, and with its head | ||
36 | He went galumphing back. | ||
37 | |||
38 | `And has thou slain the Jabberwock? | ||
39 | Come to my arms, my beamish boy! | ||
40 | O frabjous day! Calloh! Callay! | ||
41 | He chortled in his joy. | ||
42 | |||
43 | `Twas brillig, and the slithy toves | ||
44 | Did gyre and gimble in the wabe; | ||
45 | All mimsy were the borogoves, | ||
46 | And the mome raths outgrabe. | ||
47 |
1 | Received: (from bar@dontmailme.org) | ||
2 | by dontmailme.org id fERKR9N16790 | ||
3 | for foobar@nonexistent.net; Fri, 28 Dec 2001 22:18:08 +0200 | ||
4 | Date: Fri, 28 Dec 2001 23:28:08 +0200 | ||
5 | From: Bar <bar@dontmailme.org> | ||
6 | To: Foo Bar <foobar@nonexistent.net> | ||
7 | Message-Id: <200112232808.fERKR9N16790@dontmailme.org> | ||
8 | Subject: Re: Jabberwocky | ||
9 | X-Envelope-Date: Fri Dec 28 23:28:09 2001 | ||
10 | X-Envelope-Sender: bar@dontmailme.org | ||
11 | |||
12 | It seems very pretty, but it's *rather* hard to understand!' | ||
13 | Somehow it seems to fill my head with ideas -- only I don't | ||
14 | exactly know what they are! However, SOMEBODY killed SOMETHING: | ||
15 | that's clear, at any rate... |
1 | Organization: Mailutils-tests | ||
2 | Received: from Mirddin.farlep.net (localhost [127.0.0.1]) | ||
3 | by Mirddin.farlep.net with ESMTP id g6CLhIb05086 | ||
4 | for <gray@mirddin.farlep.net>; Sat, 13 Jul 2002 00:43:18 +0300 | ||
5 | Message-Id: <200207122143.g6CLhIb05086@Mirddin.farlep.net> | ||
6 | To: Foo Bar <foobar@nonexistent.net> | ||
7 | Subject: Simple MIME | ||
8 | MIME-Version: 1.0 | ||
9 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" | ||
10 | Content-ID: <5082.1026510189.0@Mirddin.farlep.net> | ||
11 | Date: Sat, 13 Jul 2002 00:43:18 +0300 | ||
12 | From: Sergey Poznyakoff <gray@Mirddin.farlep.net> | ||
13 | X-Envelope-Date: Sat Jul 13 00:43:18 2002 | ||
14 | X-Envelope-Sender: gray@Mirddin.farlep.net | ||
15 | |||
16 | ------- =_aaaaaaaaaa0 | ||
17 | Content-Type: text/plain; name="msg.1"; charset="us-ascii" | ||
18 | Content-ID: <5082.1026510189.1@Mirddin.farlep.net> | ||
19 | Content-Description: How doth | ||
20 | |||
21 | How doth the little crocodile | ||
22 | Improve his shining tail, | ||
23 | And pour the waters of the Nile | ||
24 | On every golden scale! | ||
25 | |||
26 | `How cheerfully he seems to grin, | ||
27 | How neatly spread his claws, | ||
28 | And welcome little fishes in | ||
29 | With gently smiling jaws! | ||
30 | |||
31 | ------- =_aaaaaaaaaa0 | ||
32 | Content-Type: application/octet-stream; name="msg.21" | ||
33 | Content-ID: <5082.1026510189.2@Mirddin.farlep.net> | ||
34 | Content-Description: Father William Part I | ||
35 | Content-Transfer-Encoding: base64 | ||
36 | |||
37 | YFlvdSBhcmUgb2xkLCBGYXRoZXIgV2lsbGlhbSwnIHRoZSB5b3VuZyBtYW4gc2FpZCwKYEFuZCB5 | ||
38 | b3VyIGhhaXIgaGFzIGJlY29tZSB2ZXJ5IHdoaXRlOwpBbmQgeWV0IHlvdSBpbmNlc3NhbnRseSBz | ||
39 | dGFuZCBvbiB5b3VyIGhlYWQtLQpEbyB5b3UgdGhpbmssIGF0IHlvdXIgYWdlLCBpdCBpcyByaWdo | ||
40 | dD8nCgpgSW4gbXkgeW91dGgsJyBGYXRoZXIgV2lsbGlhbSByZXBsaWVkIHRvIGhpcyBzb24sCmBJ | ||
41 | IGZlYXJlZCBpdCBtaWdodCBpbmp1cmUgdGhlIGJyYWluOwpCdXQsIG5vdyB0aGF0IEknbSBwZXJm | ||
42 | ZWN0bHkgc3VyZSBJIGhhdmUgbm9uZSwKV2h5LCBJIGRvIGl0IGFnYWluIGFuZCBhZ2Fpbi4nCgo= | ||
43 | |||
44 | ------- =_aaaaaaaaaa0-- |
1 | Organization: Mailutils-tests | ||
2 | Received: from Mirddin.farlep.net (localhost [127.0.0.1]) | ||
3 | by Mirddin.farlep.net with ESMTP id g6CLowb05126 | ||
4 | for <gray@mirddin.farlep.net>; Sat, 13 Jul 2002 00:50:58 +0300 | ||
5 | Message-Id: <200207122150.g6CLowb05126@Mirddin.farlep.net> | ||
6 | To: Foo Bar <foobar@nonexistent.net> | ||
7 | Subject: Nested MIME | ||
8 | MIME-Version: 1.0 | ||
9 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" | ||
10 | Content-ID: <5122.1026510654.1@Mirddin.farlep.net> | ||
11 | Date: Sat, 13 Jul 2002 00:50:58 +0300 | ||
12 | From: Sergey Poznyakoff <gray@Mirddin.farlep.net> | ||
13 | X-Envelope-Date: Sat Jul 13 00:50:58 2002 | ||
14 | X-Envelope-Sender: gray@Mirddin.farlep.net | ||
15 | |||
16 | ------- =_aaaaaaaaaa0 | ||
17 | Content-Type: text/plain; name="msg.21"; charset="us-ascii" | ||
18 | Content-ID: <5122.1026510654.2@Mirddin.farlep.net> | ||
19 | Content-Description: Father William Part I | ||
20 | |||
21 | `You are old, Father William,' the young man said, | ||
22 | `And your hair has become very white; | ||
23 | And yet you incessantly stand on your head-- | ||
24 | Do you think, at your age, it is right?' | ||
25 | |||
26 | `In my youth,' Father William replied to his son, | ||
27 | `I feared it might injure the brain; | ||
28 | But, now that I'm perfectly sure I have none, | ||
29 | Why, I do it again and again.' | ||
30 | |||
31 | |||
32 | ------- =_aaaaaaaaaa0 | ||
33 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1" | ||
34 | Content-ID: <5122.1026510654.3@Mirddin.farlep.net> | ||
35 | |||
36 | ------- =_aaaaaaaaaa1 | ||
37 | Content-Type: application/octet-stream; name="msg.22" | ||
38 | Content-ID: <5122.1026510654.4@Mirddin.farlep.net> | ||
39 | Content-Description: Father William Part II | ||
40 | Content-Transfer-Encoding: base64 | ||
41 | |||
42 | YFlvdSBhcmUgb2xkLCcgc2FpZCB0aGUgeW91dGgsIGBhcyBJIG1lbnRpb25lZCBiZWZvcmUsCkFu | ||
43 | ZCBoYXZlIGdyb3duIG1vc3QgdW5jb21tb25seSBmYXQ7CllldCB5b3UgdHVybmVkIGEgYmFjay1z | ||
44 | b21lcnNhdWx0IGluIGF0IHRoZSBkb29yLS0KUHJheSwgd2hhdCBpcyB0aGUgcmVhc29uIG9mIHRo | ||
45 | YXQ/JwoKYEluIG15IHlvdXRoLCcgc2FpZCB0aGUgc2FnZSwgYXMgaGUgc2hvb2sgaGlzIGdyZXkg | ||
46 | bG9ja3MsCmBJIGtlcHQgYWxsIG15IGxpbWJzIHZlcnkgc3VwcGxlCkJ5IHRoZSB1c2Ugb2YgdGhp | ||
47 | cyBvaW50bWVudC0tb25lIHNoaWxsaW5nIHRoZSBib3gtLQpBbGxvdyBtZSB0byBzZWxsIHlvdSBh | ||
48 | IGNvdXBsZT8nCg== | ||
49 | |||
50 | ------- =_aaaaaaaaaa1 | ||
51 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa2" | ||
52 | Content-ID: <5122.1026510654.5@Mirddin.farlep.net> | ||
53 | |||
54 | ------- =_aaaaaaaaaa2 | ||
55 | Content-Type: application/octet-stream; name="msg.23" | ||
56 | Content-ID: <5122.1026510654.6@Mirddin.farlep.net> | ||
57 | Content-Description: Father William Part III | ||
58 | Content-Transfer-Encoding: base64 | ||
59 | |||
60 | YFlvdSBhcmUgb2xkLCcgc2FpZCB0aGUgeW91dGgsIGBhbmQgeW91ciBqYXdzIGFyZSB0b28gd2Vh | ||
61 | awpGb3IgYW55dGhpbmcgdG91Z2hlciB0aGFuIHN1ZXQ7CllldCB5b3UgZmluaXNoZWQgdGhlIGdv | ||
62 | b3NlLCB3aXRoIHRoZSBib25lcyBhbmQgdGhlIGJlYWstLQpQcmF5IGhvdyBkaWQgeW91IG1hbmFn | ||
63 | ZSB0byBkbyBpdD8nCgpgSW4gbXkgeW91dGgsJyBzYWlkIGhpcyBmYXRoZXIsIGBJIHRvb2sgdG8g | ||
64 | dGhlIGxhdywKQW5kIGFyZ3VlZCBlYWNoIGNhc2Ugd2l0aCBteSB3aWZlOwpBbmQgdGhlIG11c2N1 | ||
65 | bGFyIHN0cmVuZ3RoLCB3aGljaCBpdCBnYXZlIHRvIG15IGphdywKSGFzIGxhc3RlZCB0aGUgcmVz | ||
66 | dCBvZiBteSBsaWZlLicK | ||
67 | |||
68 | ------- =_aaaaaaaaaa2 | ||
69 | Content-Type: application/octet-stream; name="msg.24" | ||
70 | Content-ID: <5122.1026510654.7@Mirddin.farlep.net> | ||
71 | Content-Description: Father William Part IV | ||
72 | Content-Transfer-Encoding: base64 | ||
73 | |||
74 | YFlvdSBhcmUgb2xkLCcgc2FpZCB0aGUgeW91dGgsIGBvbmUgd291bGQgaGFyZGx5IHN1cHBvc2UK | ||
75 | VGhhdCB5b3VyIGV5ZSB3YXMgYXMgc3RlYWR5IGFzIGV2ZXI7CllldCB5b3UgYmFsYW5jZWQgYW4g | ||
76 | ZWVsIG9uIHRoZSBlbmQgb2YgeW91ciBub3NlLS0KV2hhdCBtYWRlIHlvdSBzbyBhd2Z1bGx5IGNs | ||
77 | ZXZlcj8nCgpgSSBoYXZlIGFuc3dlcmVkIHRocmVlIHF1ZXN0aW9ucywgYW5kIHRoYXQgaXMgZW5v | ||
78 | dWdoLCcKU2FpZCBoaXMgZmF0aGVyOyBgZG9uJ3QgZ2l2ZSB5b3Vyc2VsZiBhaXJzIQpEbyB5b3Ug | ||
79 | dGhpbmsgSSBjYW4gbGlzdGVuIGFsbCBkYXkgdG8gc3VjaCBzdHVmZj8KQmUgb2ZmLCBvciBJJ2xs | ||
80 | IGtpY2sgeW91IGRvd24gc3RhaXJzIScK | ||
81 | |||
82 | ------- =_aaaaaaaaaa2-- | ||
83 | |||
84 | ------- =_aaaaaaaaaa1-- | ||
85 | |||
86 | ------- =_aaaaaaaaaa0-- |
1 | Organization: Mailutils-tests | ||
2 | Received: from Mirddin.farlep.net (localhost [127.0.0.1]) | ||
3 | by Mirddin.farlep.net with ESMTP id g6CLhIb05086 | ||
4 | for <gray@mirddin.farlep.net>; Sat, 13 Jul 2002 00:43:18 +0300 | ||
5 | Message-Id: <200207122143.g6CLhIb05086@Mirddin.farlep.net> | ||
6 | To: Foo Bar <foobar@nonexistent.net> | ||
7 | Subject: Empty MIME Parts | ||
8 | MIME-Version: 1.0 | ||
9 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" | ||
10 | Content-ID: <5082.1026510189.0@Mirddin.farlep.net> | ||
11 | Date: Sat, 13 Jul 2002 00:43:18 +0300 | ||
12 | From: Sergey Poznyakoff <gray@Mirddin.farlep.net> | ||
13 | X-Envelope-Date: Sat Jul 13 00:43:18 2002 | ||
14 | X-Envelope-Sender: gray@Mirddin.farlep.net | ||
15 | |||
16 | ------- =_aaaaaaaaaa0 | ||
17 | Content-Type: text/plain; name="empty"; charset="us-ascii" | ||
18 | Content-ID: <5082.1026510189.1@Mirddin.farlep.net> | ||
19 | Content-Description: Empty part | ||
20 | |||
21 | |||
22 | ------- =_aaaaaaaaaa0 | ||
23 | Content-Type: text/plain; name="single.line"; charset="us-ascii" | ||
24 | Content-ID: <5082.1026510189.2@Mirddin.farlep.net> | ||
25 | Content-Description: Single line part | ||
26 | |||
27 | |||
28 | |||
29 | ------- =_aaaaaaaaaa0-- |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3301 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:06 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:01 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3301@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Invitation | ||
9 | X-IMAPbase: 0 1 | ||
10 | X-Envelope-Date: Mon Jul 29 22:00:08 2002 | ||
11 | X-Envelope-Sender: hare@wonder.land | ||
12 | |||
13 | Have some wine |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3302 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:07 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:02 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3302@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:09 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I don't see any wine |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3303 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:08 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:03 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3303@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:10 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | There isn't any |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3304 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:09 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:04 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3304@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:11 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Then it wasn't very civil of you to offer it |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3305 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:10 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:05 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3305@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:12 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | It wasn't very civil of you to sit down without being invited |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3306 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:11 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:06 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3306@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:13 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I didn't know it was YOUR table, it's laid for a | ||
13 | great many more than three. |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3307 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:12 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:07 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3307@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Personal remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:14 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Your hair wants cutting |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3308 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:13 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:08 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3308@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Personal remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:15 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | You should learn not to make personal remarks, it's very rude. |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3309 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:14 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:09 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3309@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Riddle (was Re: Personal remark) | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:16 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Why is a raven like a writing-desk? |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3310 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:15 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:10 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3310@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:17 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I believe I can guess that |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3311 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:16 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:11 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3311@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:18 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Do you mean that you think you can find out the answer to it? |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3312 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:17 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:12 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3312@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:19 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Exactly so |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3313 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:18 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:13 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3313@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Be specific (was Re: Riddle) | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:20 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Then you should say what you mean |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3314 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:19 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:14 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3314@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:21 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I do, at least--at least I mean what | ||
13 | I say--that's the same thing, you know. |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3315 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:20 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:15 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3315@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:22 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Not the same thing a bit! You might just | ||
13 | as well say that "I see what I eat" is the same thing as "I eat | ||
14 | what I see"! |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3316 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:21 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:16 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3316@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:23 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | You might just as well say, that "I | ||
13 | like what I get" is the same thing as "I get what I like"! |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3317 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:22 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:17 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292200.3317@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:24 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | You might just as well say, who seemed to | ||
13 | be talking in his sleep, `that "I breathe when I sleep" is the | ||
14 | same thing as "I sleep when I breathe"! |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3318 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:00:23 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:18 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3318@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:25 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | It IS the same thing with you |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3319 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:24 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:19 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3319@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:26 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | What day of the month is it? |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3320 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:25 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:20 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3320@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:27 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | The fourth. |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3321 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:26 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:21 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3321@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:28 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Two days wrong! I told you butter wouldn't suit the works! |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3322 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:27 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:22 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3322@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:29 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | It was the BEST butter |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3323 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:28 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:23 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3323@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:30 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Yes, but some crumbs must have got in as well, | ||
13 | you shouldn't have put it in with the bread-knife. |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3324 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:29 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:24 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3324@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:31 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | It was the BEST butter, you know. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3325 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:00:30 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:25 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3325@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Funny watch (was Re: Watch) | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:32 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | What a funny watch! It tells the day of the | ||
13 | month, and doesn't tell what o'clock it is! |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3326 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:31 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:26 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3326@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Funny watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:33 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Why should it? Does YOUR watch tell you what year it is? |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3327 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:32 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:27 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3327@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Funny watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:34 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Of course not, but that's because it stays the same year for such | ||
13 | a long time together. |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3328 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:33 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:28 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3328@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Funny watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:35 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Which is just the case with MINE |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3329 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:34 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:29 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3329@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Funny watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:36 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I don't quite understand you |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3330 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:00:35 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:30 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3330@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:37 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | The Dormouse is asleep again |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3331 | ||
3 | for nobody@wonder.land; Mon, 29 Jul 2002 22:00:36 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:31 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292200.3331@wonder.land> | ||
7 | To: Nobody at all <nobody@wonder.land> | ||
8 | Subject: Re: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:38 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Of course, of course; just what I was going to | ||
13 | remark myself. |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3332 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:37 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:32 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3332@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:39 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Have you guessed the riddle yet? |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3333 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:38 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:33 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3333@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:40 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | No, I give it up, what's the answer? |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3334 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:39 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:34 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3334@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:41 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | I haven't the slightest idea |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3335 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:40 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:35 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3335@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:42 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Nor I |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3336 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:00:41 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:36 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3336@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:43 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I think you might do something better with the time, than waste it in | ||
13 | asking riddles that have no answers. |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3337 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:42 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:37 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3337@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:44 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | If you knew Time as well as I do, you | ||
13 | wouldn't talk about wasting IT. It's HIM. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3338 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:43 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:38 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3338@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:45 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I don't know what you mean |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3339 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:44 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:39 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3339@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:46 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Of course you don't! I dare say you never even spoke to Time! |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3340 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:45 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:40 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3340@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:47 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Perhaps not, but I know I have to beat time when I learn music. |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3341 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:46 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:41 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3341@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:48 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Ah! that accounts for it. He won't stand | ||
13 | beating. Now, if you only kept on good terms with him, he'd do | ||
14 | almost anything you liked with the clock. For instance, suppose | ||
15 | it were nine o'clock in the morning, just time to begin lessons: | ||
16 | you'd only have to whisper a hint to Time, and round goes the | ||
17 | clock in a twinkling! Half-past one, time for dinner! |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3342 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:47 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:42 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3342@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Thought apart Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:49 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | I only wish it was |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3343 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:48 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:43 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3343@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:50 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | That would be grand, certainly, but then--I shouldn't be hungry for it, | ||
13 | you know. |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3344 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:49 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:44 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3344@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:51 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Not at first, perhaps, but you could keep | ||
13 | it to half-past one as long as you liked. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3345 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:50 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:45 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3345@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:52 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Is that the way YOU manage? |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3346 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:51 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:46 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3346@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:53 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Not I! We quarrelled last March--just before HE went mad, you know-- | ||
13 | it was at the great concert given by the Queen of Hearts, and I had | ||
14 | to sing | ||
15 | |||
16 | "Twinkle, twinkle, little bat! | ||
17 | How I wonder what you're at!" | ||
18 | |||
19 | You know the song, perhaps? |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3347 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:52 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:47 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3347@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:54 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I've heard something like it |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3348 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:53 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:48 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3348@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:55 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | It goes on, you know in this way:-- | ||
13 | |||
14 | "Up above the world you fly, | ||
15 | Like a tea-tray in the sky. | ||
16 | Twinkle, twinkle--"' |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3349 | ||
3 | for nobody@wonder.land; Mon, 29 Jul 2002 22:00:54 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:49 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292200.3349@wonder.land> | ||
7 | To: Nobody at all <nobody@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:56 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Twinkle, twinkle, twinkle, twinkle... |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3350 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:55 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:50 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3350@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:57 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Well, I'd hardly finished the first verse, when the Queen jumped up | ||
13 | and bawled out, "He's murdering the time! Off with his head!" |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3351 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:56 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:51 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3351@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:58 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | How dreadfully savage! |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3352 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:57 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:52 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3352@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:59 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | And ever since that, he won't do a thing I ask! It's always six o'clock now. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3353 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:58 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:53 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3353@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: A guess (was Re: Discussing Time) | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:00 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Is that the reason so | ||
13 | many tea-things are put out here? |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3354 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:59 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:54 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3354@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: A guess | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:01 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Yes, that's it. It's always | ||
13 | tea-time, and we've no time to wash the things between whiles. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3355 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:01:00 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:55 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3355@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: A guess | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:02 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Then you keep moving round, I suppose? |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3356 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:01 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:56 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3356@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: A guess | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:03 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Exactly so, as the things get used up. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3357 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:01:02 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:57 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3357@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: A guess | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:04 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | But what happens when you come to the beginning again? |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3358 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:03 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:58 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3358@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Request for a story (was Re: A guess) | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:05 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Suppose we change the subject, I'm getting tired of this. | ||
13 | I vote the young lady tells us a story. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3359 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:01:04 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:59 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3359@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:06 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I'm afraid I don't know one |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3360 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:05 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:00 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3360@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Cc: Dormouse <dormouse@wonder.land> | ||
9 | Subject: Re: Request for a story | ||
10 | X-Envelope-Date: Mon Jul 29 22:01:07 2002 | ||
11 | X-Envelope-Sender: hatter@wonder.land | ||
12 | |||
13 | Then the Dormouse shall! | ||
14 | Wake up, Dormouse! |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3361 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:06 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:01 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3361@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:08 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | I wasn't asleep. I heard every word you fellows | ||
13 | were saying. |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3362 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:07 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:02 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292201.3362@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:09 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Tell us a story! |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3363 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:08 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:03 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3363@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:10 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Yes, please do! |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3364 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:09 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:04 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3364@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:11 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | And be quick about it, or you'll be asleep | ||
13 | again before it's done. |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3365 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:10 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:05 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3365@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Story (was Re: Request for a story) | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:12 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Once upon a time there were three little sisters, and their names | ||
13 | were Elsie, | ||
14 | Lacie, and Tillie; and they lived at the bottom of a well-- |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3366 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:11 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:06 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3366@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:13 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | What did they live on? |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3367 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:12 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:07 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3367@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:14 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | They lived on treacle |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3368 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:13 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:08 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3368@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:15 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | They couldn't have done that, you know, they'd have been ill |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3369 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:14 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:09 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3369@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:16 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | So they were, VERY ill. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3370 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:15 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:10 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3370@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:17 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | But why did they live at the bottom of a well? |
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3371 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:16 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:11 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292201.3371@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:18 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Take some more tea |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3372 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:01:17 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:12 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3372@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:19 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I've had nothing yet, so | ||
13 | I can't take more. |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3373 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:18 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:13 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3373@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:20 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | You mean you can't take LESS, it's very | ||
13 | easy to take MORE than nothing. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3374 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:01:19 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:14 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3374@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Personal remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:21 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Nobody asked YOUR opinion |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3375 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:20 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:15 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3375@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Personal remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:22 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Who's making personal remarks now? |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3376 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:21 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:16 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3376@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:23 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Why did they live at the | ||
13 | bottom of a well? |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3377 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:22 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:17 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3377@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:24 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | It was a treacle-well. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3378 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:23 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:18 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3378@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:25 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | There's no such thing! |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3379 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:24 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:19 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3379@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:26 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | If you can't be civil, you'd better finish the | ||
13 | story for yourself. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3380 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:25 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:20 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3380@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:27 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | No, please go on! I won't interrupt | ||
13 | again. I dare say there may be ONE. |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3381 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:26 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:21 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3381@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:28 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | One, indeed! And so these three little sisters--they | ||
13 | were learning to draw, you know-- |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3382 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:27 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:22 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3382@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:29 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | What did they draw? |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3383 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:28 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:23 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3383@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:30 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Treacle. |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3384 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:29 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:24 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3384@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Let's move | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:31 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | I want a clean cup, let's all move | ||
13 | one place on. |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3385 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:30 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:25 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3385@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:32 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | But I don't understand. Where did they draw | ||
13 | the treacle from? |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3386 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:31 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:26 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3386@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:33 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | You can draw water out of a water-well, so | ||
13 | I should think you could draw treacle out of a treacle-well--eh, | ||
14 | stupid? |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3387 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:32 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:27 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3387@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:34 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | But they were IN the well |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3388 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:33 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:28 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3388@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:35 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Of course they were -- well in |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3389 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:34 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:29 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3389@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:36 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | They were learning to draw, and they drew | ||
13 | all manner of things--everything that begins with an M-- |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3390 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:35 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:30 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3390@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:37 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Why with an M? |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3391 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:36 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:31 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3391@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:38 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Why not? |
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3392 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:37 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:32 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3392@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:39 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | --that begins with an | ||
13 | M, such as mouse-traps, and the moon, and memory, and muchness-- | ||
14 | you know you say things are "much of a muchness" --did you ever | ||
15 | see such a thing as a drawing of a muchness? |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3393 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:38 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:33 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3393@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:40 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Really, now you ask me, I don't think-- |
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3394 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:39 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:34 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3394@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Rude remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:41 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Then you shouldn't talk |
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3395 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:40 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:35 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3395@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Thoughts | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:42 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | At any rate I'll never go THERE again! It's the stupidest tea-party I | ||
13 | ever was at in all my life! |
testsuite/mh/mbox1/1
0 → 100644
1 | Received: (from foobar@nonexistent.net) | ||
2 | by nonexistent.net id fBSKI8N04906 | ||
3 | for bar@dontmailme.org; Fri, 28 Dec 2001 22:18:08 +0200 | ||
4 | Date: Fri, 28 Dec 2001 22:18:08 +0200 | ||
5 | From: Foo Bar <foobar@nonexistent.net> | ||
6 | Message-Id: <200112282018.fBSKI8N04906@nonexistent.net> | ||
7 | To: Bar <bar@dontmailme.org> | ||
8 | Subject: Jabberwocky | ||
9 | X-IMAPbase: 0 1 | ||
10 | X-Envelope-Date: Fri Dec 28 22:18:09 2001 | ||
11 | X-Envelope-Sender: foobar@nonexistent.net | ||
12 | |||
13 | `Twas brillig, and the slithy toves | ||
14 | Did gyre and gimble in the wabe; | ||
15 | All mimsy were the borogoves, | ||
16 | And the mome raths outgrabe. | ||
17 | |||
18 | `Beware the Jabberwock, my son! | ||
19 | The jaws that bite, the claws that catch! | ||
20 | Beware the Jujub bird, and shun | ||
21 | The frumious Bandersnatch!' | ||
22 | |||
23 | He took his vorpal sword in hand: | ||
24 | Long time the manxome foe he sought -- | ||
25 | So rested he by the Tumtum gree, | ||
26 | And stood awhile in thought. | ||
27 | |||
28 | And as in uffish thought he stood, | ||
29 | The Jabberwock, with eyes of flame, | ||
30 | Came whiffling through the tulgey wook, | ||
31 | And burbled as it came! | ||
32 | |||
33 | One, two! One, two! And through and through | ||
34 | The vorpal blade went snicker-snack! | ||
35 | He left it dead, and with its head | ||
36 | He went galumphing back. | ||
37 | |||
38 | `And has thou slain the Jabberwock? | ||
39 | Come to my arms, my beamish boy! | ||
40 | O frabjous day! Calloh! Callay! | ||
41 | He chortled in his joy. | ||
42 | |||
43 | `Twas brillig, and the slithy toves | ||
44 | Did gyre and gimble in the wabe; | ||
45 | All mimsy were the borogoves, | ||
46 | And the mome raths outgrabe. | ||
47 |
testsuite/mh/mbox1/2
0 → 100644
1 | Received: (from bar@dontmailme.org) | ||
2 | by dontmailme.org id fERKR9N16790 | ||
3 | for foobar@nonexistent.net; Fri, 28 Dec 2001 22:18:08 +0200 | ||
4 | Date: Fri, 28 Dec 2001 23:28:08 +0200 | ||
5 | From: Bar <bar@dontmailme.org> | ||
6 | To: Foo Bar <foobar@nonexistent.net> | ||
7 | Message-Id: <200112232808.fERKR9N16790@dontmailme.org> | ||
8 | Subject: Re: Jabberwocky | ||
9 | X-Envelope-Date: Fri Dec 28 23:28:09 2001 | ||
10 | X-Envelope-Sender: bar@dontmailme.org | ||
11 | |||
12 | It seems very pretty, but it's *rather* hard to understand!' | ||
13 | Somehow it seems to fill my head with ideas -- only I don't | ||
14 | exactly know what they are! However, SOMEBODY killed SOMETHING: | ||
15 | that's clear, at any rate... |
testsuite/mh/mbox1/3
0 → 100644
1 | Organization: Mailutils-tests | ||
2 | Received: from Mirddin.farlep.net (localhost [127.0.0.1]) | ||
3 | by Mirddin.farlep.net with ESMTP id g6CLhIb05086 | ||
4 | for <gray@mirddin.farlep.net>; Sat, 13 Jul 2002 00:43:18 +0300 | ||
5 | Message-Id: <200207122143.g6CLhIb05086@Mirddin.farlep.net> | ||
6 | To: Foo Bar <foobar@nonexistent.net> | ||
7 | Subject: Simple MIME | ||
8 | MIME-Version: 1.0 | ||
9 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" | ||
10 | Content-ID: <5082.1026510189.0@Mirddin.farlep.net> | ||
11 | Date: Sat, 13 Jul 2002 00:43:18 +0300 | ||
12 | From: Sergey Poznyakoff <gray@Mirddin.farlep.net> | ||
13 | X-Envelope-Date: Sat Jul 13 00:43:18 2002 | ||
14 | X-Envelope-Sender: gray@Mirddin.farlep.net | ||
15 | |||
16 | ------- =_aaaaaaaaaa0 | ||
17 | Content-Type: text/plain; name="msg.1"; charset="us-ascii" | ||
18 | Content-ID: <5082.1026510189.1@Mirddin.farlep.net> | ||
19 | Content-Description: How doth | ||
20 | |||
21 | How doth the little crocodile | ||
22 | Improve his shining tail, | ||
23 | And pour the waters of the Nile | ||
24 | On every golden scale! | ||
25 | |||
26 | `How cheerfully he seems to grin, | ||
27 | How neatly spread his claws, | ||
28 | And welcome little fishes in | ||
29 | With gently smiling jaws! | ||
30 | |||
31 | ------- =_aaaaaaaaaa0 | ||
32 | Content-Type: application/octet-stream; name="msg.21" | ||
33 | Content-ID: <5082.1026510189.2@Mirddin.farlep.net> | ||
34 | Content-Description: Father William Part I | ||
35 | Content-Transfer-Encoding: base64 | ||
36 | |||
37 | YFlvdSBhcmUgb2xkLCBGYXRoZXIgV2lsbGlhbSwnIHRoZSB5b3VuZyBtYW4gc2FpZCwKYEFuZCB5 | ||
38 | b3VyIGhhaXIgaGFzIGJlY29tZSB2ZXJ5IHdoaXRlOwpBbmQgeWV0IHlvdSBpbmNlc3NhbnRseSBz | ||
39 | dGFuZCBvbiB5b3VyIGhlYWQtLQpEbyB5b3UgdGhpbmssIGF0IHlvdXIgYWdlLCBpdCBpcyByaWdo | ||
40 | dD8nCgpgSW4gbXkgeW91dGgsJyBGYXRoZXIgV2lsbGlhbSByZXBsaWVkIHRvIGhpcyBzb24sCmBJ | ||
41 | IGZlYXJlZCBpdCBtaWdodCBpbmp1cmUgdGhlIGJyYWluOwpCdXQsIG5vdyB0aGF0IEknbSBwZXJm | ||
42 | ZWN0bHkgc3VyZSBJIGhhdmUgbm9uZSwKV2h5LCBJIGRvIGl0IGFnYWluIGFuZCBhZ2Fpbi4nCgo= | ||
43 | |||
44 | ------- =_aaaaaaaaaa0-- |
testsuite/mh/mbox1/4
0 → 100644
1 | Organization: Mailutils-tests | ||
2 | Received: from Mirddin.farlep.net (localhost [127.0.0.1]) | ||
3 | by Mirddin.farlep.net with ESMTP id g6CLowb05126 | ||
4 | for <gray@mirddin.farlep.net>; Sat, 13 Jul 2002 00:50:58 +0300 | ||
5 | Message-Id: <200207122150.g6CLowb05126@Mirddin.farlep.net> | ||
6 | To: Foo Bar <foobar@nonexistent.net> | ||
7 | Subject: Nested MIME | ||
8 | MIME-Version: 1.0 | ||
9 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" | ||
10 | Content-ID: <5122.1026510654.1@Mirddin.farlep.net> | ||
11 | Date: Sat, 13 Jul 2002 00:50:58 +0300 | ||
12 | From: Sergey Poznyakoff <gray@Mirddin.farlep.net> | ||
13 | X-Envelope-Date: Sat Jul 13 00:50:58 2002 | ||
14 | X-Envelope-Sender: gray@Mirddin.farlep.net | ||
15 | |||
16 | ------- =_aaaaaaaaaa0 | ||
17 | Content-Type: text/plain; name="msg.21"; charset="us-ascii" | ||
18 | Content-ID: <5122.1026510654.2@Mirddin.farlep.net> | ||
19 | Content-Description: Father William Part I | ||
20 | |||
21 | `You are old, Father William,' the young man said, | ||
22 | `And your hair has become very white; | ||
23 | And yet you incessantly stand on your head-- | ||
24 | Do you think, at your age, it is right?' | ||
25 | |||
26 | `In my youth,' Father William replied to his son, | ||
27 | `I feared it might injure the brain; | ||
28 | But, now that I'm perfectly sure I have none, | ||
29 | Why, I do it again and again.' | ||
30 | |||
31 | |||
32 | ------- =_aaaaaaaaaa0 | ||
33 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1" | ||
34 | Content-ID: <5122.1026510654.3@Mirddin.farlep.net> | ||
35 | |||
36 | ------- =_aaaaaaaaaa1 | ||
37 | Content-Type: application/octet-stream; name="msg.22" | ||
38 | Content-ID: <5122.1026510654.4@Mirddin.farlep.net> | ||
39 | Content-Description: Father William Part II | ||
40 | Content-Transfer-Encoding: base64 | ||
41 | |||
42 | YFlvdSBhcmUgb2xkLCcgc2FpZCB0aGUgeW91dGgsIGBhcyBJIG1lbnRpb25lZCBiZWZvcmUsCkFu | ||
43 | ZCBoYXZlIGdyb3duIG1vc3QgdW5jb21tb25seSBmYXQ7CllldCB5b3UgdHVybmVkIGEgYmFjay1z | ||
44 | b21lcnNhdWx0IGluIGF0IHRoZSBkb29yLS0KUHJheSwgd2hhdCBpcyB0aGUgcmVhc29uIG9mIHRo | ||
45 | YXQ/JwoKYEluIG15IHlvdXRoLCcgc2FpZCB0aGUgc2FnZSwgYXMgaGUgc2hvb2sgaGlzIGdyZXkg | ||
46 | bG9ja3MsCmBJIGtlcHQgYWxsIG15IGxpbWJzIHZlcnkgc3VwcGxlCkJ5IHRoZSB1c2Ugb2YgdGhp | ||
47 | cyBvaW50bWVudC0tb25lIHNoaWxsaW5nIHRoZSBib3gtLQpBbGxvdyBtZSB0byBzZWxsIHlvdSBh | ||
48 | IGNvdXBsZT8nCg== | ||
49 | |||
50 | ------- =_aaaaaaaaaa1 | ||
51 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa2" | ||
52 | Content-ID: <5122.1026510654.5@Mirddin.farlep.net> | ||
53 | |||
54 | ------- =_aaaaaaaaaa2 | ||
55 | Content-Type: application/octet-stream; name="msg.23" | ||
56 | Content-ID: <5122.1026510654.6@Mirddin.farlep.net> | ||
57 | Content-Description: Father William Part III | ||
58 | Content-Transfer-Encoding: base64 | ||
59 | |||
60 | YFlvdSBhcmUgb2xkLCcgc2FpZCB0aGUgeW91dGgsIGBhbmQgeW91ciBqYXdzIGFyZSB0b28gd2Vh | ||
61 | awpGb3IgYW55dGhpbmcgdG91Z2hlciB0aGFuIHN1ZXQ7CllldCB5b3UgZmluaXNoZWQgdGhlIGdv | ||
62 | b3NlLCB3aXRoIHRoZSBib25lcyBhbmQgdGhlIGJlYWstLQpQcmF5IGhvdyBkaWQgeW91IG1hbmFn | ||
63 | ZSB0byBkbyBpdD8nCgpgSW4gbXkgeW91dGgsJyBzYWlkIGhpcyBmYXRoZXIsIGBJIHRvb2sgdG8g | ||
64 | dGhlIGxhdywKQW5kIGFyZ3VlZCBlYWNoIGNhc2Ugd2l0aCBteSB3aWZlOwpBbmQgdGhlIG11c2N1 | ||
65 | bGFyIHN0cmVuZ3RoLCB3aGljaCBpdCBnYXZlIHRvIG15IGphdywKSGFzIGxhc3RlZCB0aGUgcmVz | ||
66 | dCBvZiBteSBsaWZlLicK | ||
67 | |||
68 | ------- =_aaaaaaaaaa2 | ||
69 | Content-Type: application/octet-stream; name="msg.24" | ||
70 | Content-ID: <5122.1026510654.7@Mirddin.farlep.net> | ||
71 | Content-Description: Father William Part IV | ||
72 | Content-Transfer-Encoding: base64 | ||
73 | |||
74 | YFlvdSBhcmUgb2xkLCcgc2FpZCB0aGUgeW91dGgsIGBvbmUgd291bGQgaGFyZGx5IHN1cHBvc2UK | ||
75 | VGhhdCB5b3VyIGV5ZSB3YXMgYXMgc3RlYWR5IGFzIGV2ZXI7CllldCB5b3UgYmFsYW5jZWQgYW4g | ||
76 | ZWVsIG9uIHRoZSBlbmQgb2YgeW91ciBub3NlLS0KV2hhdCBtYWRlIHlvdSBzbyBhd2Z1bGx5IGNs | ||
77 | ZXZlcj8nCgpgSSBoYXZlIGFuc3dlcmVkIHRocmVlIHF1ZXN0aW9ucywgYW5kIHRoYXQgaXMgZW5v | ||
78 | dWdoLCcKU2FpZCBoaXMgZmF0aGVyOyBgZG9uJ3QgZ2l2ZSB5b3Vyc2VsZiBhaXJzIQpEbyB5b3Ug | ||
79 | dGhpbmsgSSBjYW4gbGlzdGVuIGFsbCBkYXkgdG8gc3VjaCBzdHVmZj8KQmUgb2ZmLCBvciBJJ2xs | ||
80 | IGtpY2sgeW91IGRvd24gc3RhaXJzIScK | ||
81 | |||
82 | ------- =_aaaaaaaaaa2-- | ||
83 | |||
84 | ------- =_aaaaaaaaaa1-- | ||
85 | |||
86 | ------- =_aaaaaaaaaa0-- |
testsuite/mh/mbox1/5
0 → 100644
1 | Organization: Mailutils-tests | ||
2 | Received: from Mirddin.farlep.net (localhost [127.0.0.1]) | ||
3 | by Mirddin.farlep.net with ESMTP id g6CLhIb05086 | ||
4 | for <gray@mirddin.farlep.net>; Sat, 13 Jul 2002 00:43:18 +0300 | ||
5 | Message-Id: <200207122143.g6CLhIb05086@Mirddin.farlep.net> | ||
6 | To: Foo Bar <foobar@nonexistent.net> | ||
7 | Subject: Empty MIME Parts | ||
8 | MIME-Version: 1.0 | ||
9 | Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" | ||
10 | Content-ID: <5082.1026510189.0@Mirddin.farlep.net> | ||
11 | Date: Sat, 13 Jul 2002 00:43:18 +0300 | ||
12 | From: Sergey Poznyakoff <gray@Mirddin.farlep.net> | ||
13 | X-Envelope-Date: Sat Jul 13 00:43:18 2002 | ||
14 | X-Envelope-Sender: gray@Mirddin.farlep.net | ||
15 | |||
16 | ------- =_aaaaaaaaaa0 | ||
17 | Content-Type: text/plain; name="empty"; charset="us-ascii" | ||
18 | Content-ID: <5082.1026510189.1@Mirddin.farlep.net> | ||
19 | Content-Description: Empty part | ||
20 | |||
21 | |||
22 | ------- =_aaaaaaaaaa0 | ||
23 | Content-Type: text/plain; name="single.line"; charset="us-ascii" | ||
24 | Content-ID: <5082.1026510189.2@Mirddin.farlep.net> | ||
25 | Content-Description: Single line part | ||
26 | |||
27 | |||
28 | |||
29 | ------- =_aaaaaaaaaa0-- |
testsuite/mh/teaparty/1
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3301 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:06 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:01 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3301@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Invitation | ||
9 | X-IMAPbase: 0 1 | ||
10 | X-Envelope-Date: Mon Jul 29 22:00:08 2002 | ||
11 | X-Envelope-Sender: hare@wonder.land | ||
12 | |||
13 | Have some wine |
testsuite/mh/teaparty/10
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3310 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:15 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:10 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3310@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:17 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I believe I can guess that |
testsuite/mh/teaparty/11
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3311 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:16 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:11 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3311@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:18 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Do you mean that you think you can find out the answer to it? |
testsuite/mh/teaparty/12
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3312 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:17 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:12 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3312@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:19 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Exactly so |
testsuite/mh/teaparty/13
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3313 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:18 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:13 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3313@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Be specific (was Re: Riddle) | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:20 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Then you should say what you mean |
testsuite/mh/teaparty/14
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3314 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:19 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:14 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3314@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:21 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I do, at least--at least I mean what | ||
13 | I say--that's the same thing, you know. |
testsuite/mh/teaparty/15
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3315 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:20 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:15 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3315@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:22 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Not the same thing a bit! You might just | ||
13 | as well say that "I see what I eat" is the same thing as "I eat | ||
14 | what I see"! |
testsuite/mh/teaparty/16
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3316 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:21 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:16 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3316@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:23 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | You might just as well say, that "I | ||
13 | like what I get" is the same thing as "I get what I like"! |
testsuite/mh/teaparty/17
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3317 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:22 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:17 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292200.3317@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:24 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | You might just as well say, who seemed to | ||
13 | be talking in his sleep, `that "I breathe when I sleep" is the | ||
14 | same thing as "I sleep when I breathe"! |
testsuite/mh/teaparty/18
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3318 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:00:23 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:18 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3318@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Be specific | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:25 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | It IS the same thing with you |
testsuite/mh/teaparty/19
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3319 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:24 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:19 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3319@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:26 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | What day of the month is it? |
testsuite/mh/teaparty/2
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3302 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:07 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:02 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3302@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:09 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I don't see any wine |
testsuite/mh/teaparty/20
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3320 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:25 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:20 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3320@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:27 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | The fourth. |
testsuite/mh/teaparty/21
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3321 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:26 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:21 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3321@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:28 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Two days wrong! I told you butter wouldn't suit the works! |
testsuite/mh/teaparty/22
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3322 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:27 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:22 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3322@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:29 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | It was the BEST butter |
testsuite/mh/teaparty/23
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3323 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:28 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:23 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3323@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:30 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Yes, but some crumbs must have got in as well, | ||
13 | you shouldn't have put it in with the bread-knife. |
testsuite/mh/teaparty/24
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3324 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:29 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:24 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3324@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:31 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | It was the BEST butter, you know. |
testsuite/mh/teaparty/25
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3325 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:00:30 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:25 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3325@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Funny watch (was Re: Watch) | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:32 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | What a funny watch! It tells the day of the | ||
13 | month, and doesn't tell what o'clock it is! |
testsuite/mh/teaparty/26
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3326 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:31 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:26 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3326@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Funny watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:33 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Why should it? Does YOUR watch tell you what year it is? |
testsuite/mh/teaparty/27
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3327 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:32 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:27 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3327@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Funny watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:34 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Of course not, but that's because it stays the same year for such | ||
13 | a long time together. |
testsuite/mh/teaparty/28
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3328 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:33 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:28 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3328@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Funny watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:35 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Which is just the case with MINE |
testsuite/mh/teaparty/29
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3329 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:34 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:29 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3329@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Funny watch | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:36 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I don't quite understand you |
testsuite/mh/teaparty/3
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3303 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:08 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:03 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3303@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:10 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | There isn't any |
testsuite/mh/teaparty/30
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3330 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:00:35 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:30 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3330@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:37 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | The Dormouse is asleep again |
testsuite/mh/teaparty/31
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3331 | ||
3 | for nobody@wonder.land; Mon, 29 Jul 2002 22:00:36 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:31 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292200.3331@wonder.land> | ||
7 | To: Nobody at all <nobody@wonder.land> | ||
8 | Subject: Re: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:38 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Of course, of course; just what I was going to | ||
13 | remark myself. |
testsuite/mh/teaparty/32
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3332 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:37 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:32 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3332@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:39 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Have you guessed the riddle yet? |
testsuite/mh/teaparty/33
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3333 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:38 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:33 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3333@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:40 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | No, I give it up, what's the answer? |
testsuite/mh/teaparty/34
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3334 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:39 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:34 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3334@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:41 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | I haven't the slightest idea |
testsuite/mh/teaparty/35
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3335 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:40 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:35 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3335@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:42 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Nor I |
testsuite/mh/teaparty/36
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3336 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:00:41 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:36 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3336@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Re: Riddle | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:43 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I think you might do something better with the time, than waste it in | ||
13 | asking riddles that have no answers. |
testsuite/mh/teaparty/37
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3337 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:42 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:37 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3337@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:44 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | If you knew Time as well as I do, you | ||
13 | wouldn't talk about wasting IT. It's HIM. |
testsuite/mh/teaparty/38
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3338 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:43 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:38 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3338@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:45 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I don't know what you mean |
testsuite/mh/teaparty/39
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3339 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:44 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:39 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3339@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:46 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Of course you don't! I dare say you never even spoke to Time! |
testsuite/mh/teaparty/4
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3304 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:09 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:04 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3304@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:11 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Then it wasn't very civil of you to offer it |
testsuite/mh/teaparty/40
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3340 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:45 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:40 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3340@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:47 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Perhaps not, but I know I have to beat time when I learn music. |
testsuite/mh/teaparty/41
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3341 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:46 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:41 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3341@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:48 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Ah! that accounts for it. He won't stand | ||
13 | beating. Now, if you only kept on good terms with him, he'd do | ||
14 | almost anything you liked with the clock. For instance, suppose | ||
15 | it were nine o'clock in the morning, just time to begin lessons: | ||
16 | you'd only have to whisper a hint to Time, and round goes the | ||
17 | clock in a twinkling! Half-past one, time for dinner! |
testsuite/mh/teaparty/42
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3342 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:47 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:42 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3342@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Thought apart Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:49 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | I only wish it was |
testsuite/mh/teaparty/43
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3343 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:48 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:43 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3343@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:50 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | That would be grand, certainly, but then--I shouldn't be hungry for it, | ||
13 | you know. |
testsuite/mh/teaparty/44
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3344 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:49 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:44 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3344@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:51 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Not at first, perhaps, but you could keep | ||
13 | it to half-past one as long as you liked. |
testsuite/mh/teaparty/45
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3345 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:50 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:45 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3345@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:52 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Is that the way YOU manage? |
testsuite/mh/teaparty/46
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3346 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:51 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:46 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3346@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:53 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Not I! We quarrelled last March--just before HE went mad, you know-- | ||
13 | it was at the great concert given by the Queen of Hearts, and I had | ||
14 | to sing | ||
15 | |||
16 | "Twinkle, twinkle, little bat! | ||
17 | How I wonder what you're at!" | ||
18 | |||
19 | You know the song, perhaps? |
testsuite/mh/teaparty/47
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3347 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:52 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:47 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3347@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:54 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I've heard something like it |
testsuite/mh/teaparty/48
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3348 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:53 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:48 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3348@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:55 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | It goes on, you know in this way:-- | ||
13 | |||
14 | "Up above the world you fly, | ||
15 | Like a tea-tray in the sky. | ||
16 | Twinkle, twinkle--"' |
testsuite/mh/teaparty/49
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3349 | ||
3 | for nobody@wonder.land; Mon, 29 Jul 2002 22:00:54 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:49 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292200.3349@wonder.land> | ||
7 | To: Nobody at all <nobody@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:56 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Twinkle, twinkle, twinkle, twinkle... |
testsuite/mh/teaparty/5
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3305 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:10 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:05 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3305@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:12 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | It wasn't very civil of you to sit down without being invited |
testsuite/mh/teaparty/50
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3350 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:55 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:50 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3350@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:57 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Well, I'd hardly finished the first verse, when the Queen jumped up | ||
13 | and bawled out, "He's murdering the time! Off with his head!" |
testsuite/mh/teaparty/51
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3351 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:56 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:51 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3351@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:58 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | How dreadfully savage! |
testsuite/mh/teaparty/52
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3352 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:57 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:52 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3352@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Discussing Time | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:59 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | And ever since that, he won't do a thing I ask! It's always six o'clock now. |
testsuite/mh/teaparty/53
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3353 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:00:58 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:53 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3353@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: A guess (was Re: Discussing Time) | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:00 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Is that the reason so | ||
13 | many tea-things are put out here? |
testsuite/mh/teaparty/54
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3354 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:59 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:54 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3354@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: A guess | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:01 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Yes, that's it. It's always | ||
13 | tea-time, and we've no time to wash the things between whiles. |
testsuite/mh/teaparty/55
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3355 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:01:00 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:55 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3355@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: A guess | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:02 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Then you keep moving round, I suppose? |
testsuite/mh/teaparty/56
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3356 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:01 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:56 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292200.3356@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: A guess | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:03 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Exactly so, as the things get used up. |
testsuite/mh/teaparty/57
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3357 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:01:02 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:57 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3357@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Re: A guess | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:04 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | But what happens when you come to the beginning again? |
testsuite/mh/teaparty/58
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3358 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:03 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:58 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3358@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Request for a story (was Re: A guess) | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:05 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Suppose we change the subject, I'm getting tired of this. | ||
13 | I vote the young lady tells us a story. |
testsuite/mh/teaparty/59
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3359 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:01:04 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:59 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3359@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:06 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I'm afraid I don't know one |
testsuite/mh/teaparty/6
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3306 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:11 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:06 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3306@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Invitation | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:13 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I didn't know it was YOUR table, it's laid for a | ||
13 | great many more than three. |
testsuite/mh/teaparty/60
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3360 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:05 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:00 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3360@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Cc: Dormouse <dormouse@wonder.land> | ||
9 | Subject: Re: Request for a story | ||
10 | X-Envelope-Date: Mon Jul 29 22:01:07 2002 | ||
11 | X-Envelope-Sender: hatter@wonder.land | ||
12 | |||
13 | Then the Dormouse shall! | ||
14 | Wake up, Dormouse! |
testsuite/mh/teaparty/61
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3361 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:06 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:01 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3361@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:08 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | I wasn't asleep. I heard every word you fellows | ||
13 | were saying. |
testsuite/mh/teaparty/62
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3362 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:07 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:02 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292201.3362@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:09 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Tell us a story! |
testsuite/mh/teaparty/63
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3363 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:08 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:03 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3363@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:10 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Yes, please do! |
testsuite/mh/teaparty/64
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3364 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:09 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:04 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3364@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Request for a story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:11 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | And be quick about it, or you'll be asleep | ||
13 | again before it's done. |
testsuite/mh/teaparty/65
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3365 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:10 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:05 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3365@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Story (was Re: Request for a story) | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:12 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Once upon a time there were three little sisters, and their names | ||
13 | were Elsie, | ||
14 | Lacie, and Tillie; and they lived at the bottom of a well-- |
testsuite/mh/teaparty/66
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3366 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:11 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:06 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3366@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:13 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | What did they live on? |
testsuite/mh/teaparty/67
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3367 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:12 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:07 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3367@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:14 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | They lived on treacle |
testsuite/mh/teaparty/68
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3368 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:13 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:08 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3368@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:15 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | They couldn't have done that, you know, they'd have been ill |
testsuite/mh/teaparty/69
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3369 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:14 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:09 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3369@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:16 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | So they were, VERY ill. |
testsuite/mh/teaparty/7
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3307 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:12 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:07 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3307@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Personal remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:14 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Your hair wants cutting |
testsuite/mh/teaparty/70
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3370 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:15 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:10 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3370@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:17 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | But why did they live at the bottom of a well? |
testsuite/mh/teaparty/71
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3371 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:16 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:11 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292201.3371@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:18 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Take some more tea |
testsuite/mh/teaparty/72
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3372 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:01:17 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:12 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3372@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:19 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | I've had nothing yet, so | ||
13 | I can't take more. |
testsuite/mh/teaparty/73
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3373 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:18 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:13 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3373@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:20 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | You mean you can't take LESS, it's very | ||
13 | easy to take MORE than nothing. |
testsuite/mh/teaparty/74
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3374 | ||
3 | for hatter@wonder.land; Mon, 29 Jul 2002 22:01:19 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:14 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3374@wonder.land> | ||
7 | To: Hatter <hatter@wonder.land> | ||
8 | Subject: Personal remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:21 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Nobody asked YOUR opinion |
testsuite/mh/teaparty/75
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3375 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:20 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:15 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3375@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Personal remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:22 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Who's making personal remarks now? |
testsuite/mh/teaparty/76
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3376 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:21 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:16 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3376@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:23 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Why did they live at the | ||
13 | bottom of a well? |
testsuite/mh/teaparty/77
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3377 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:22 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:17 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3377@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:24 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | It was a treacle-well. |
testsuite/mh/teaparty/78
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3378 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:23 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:18 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3378@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:25 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | There's no such thing! |
testsuite/mh/teaparty/79
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3379 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:24 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:19 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3379@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:26 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | If you can't be civil, you'd better finish the | ||
13 | story for yourself. |
testsuite/mh/teaparty/8
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3308 | ||
3 | for hare@wonder.land; Mon, 29 Jul 2002 22:00:13 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:08 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292200.3308@wonder.land> | ||
7 | To: March Hare <hare@wonder.land> | ||
8 | Subject: Re: Personal remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:15 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | You should learn not to make personal remarks, it's very rude. |
testsuite/mh/teaparty/80
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3380 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:25 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:20 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3380@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:27 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | No, please go on! I won't interrupt | ||
13 | again. I dare say there may be ONE. |
testsuite/mh/teaparty/81
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3381 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:26 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:21 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3381@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:28 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | One, indeed! And so these three little sisters--they | ||
13 | were learning to draw, you know-- |
testsuite/mh/teaparty/82
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3382 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:27 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:22 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3382@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:29 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | What did they draw? |
testsuite/mh/teaparty/83
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3383 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:28 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:23 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3383@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:30 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Treacle. |
testsuite/mh/teaparty/84
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3384 | ||
3 | for tea.party@wonder.land; Mon, 29 Jul 2002 22:01:29 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:24 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3384@wonder.land> | ||
7 | To: Mad Tea Party <tea.party@wonder.land> | ||
8 | Subject: Let's move | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:31 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | I want a clean cup, let's all move | ||
13 | one place on. |
testsuite/mh/teaparty/85
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3385 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:30 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:25 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3385@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:32 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | But I don't understand. Where did they draw | ||
13 | the treacle from? |
testsuite/mh/teaparty/86
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3386 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:31 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:26 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3386@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:33 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | You can draw water out of a water-well, so | ||
13 | I should think you could draw treacle out of a treacle-well--eh, | ||
14 | stupid? |
testsuite/mh/teaparty/87
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3387 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:32 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:27 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3387@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:34 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | But they were IN the well |
testsuite/mh/teaparty/88
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3388 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:33 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:28 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3388@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:35 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Of course they were -- well in |
testsuite/mh/teaparty/89
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3389 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:34 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:29 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3389@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:36 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | They were learning to draw, and they drew | ||
13 | all manner of things--everything that begins with an M-- |
testsuite/mh/teaparty/9
0 → 100644
1 | Received: (from hare@wonder.land) | ||
2 | by wonder.land id 3309 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:00:14 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:00:09 +0100 | ||
5 | From: March Hare <hare@wonder.land> | ||
6 | Message-Id: <200207292200.3309@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Riddle (was Re: Personal remark) | ||
9 | X-Envelope-Date: Mon Jul 29 22:00:16 2002 | ||
10 | X-Envelope-Sender: hare@wonder.land | ||
11 | |||
12 | Why is a raven like a writing-desk? |
testsuite/mh/teaparty/90
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3390 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:35 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:30 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3390@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:37 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Why with an M? |
testsuite/mh/teaparty/91
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3391 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:36 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:31 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3391@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:38 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | Why not? |
testsuite/mh/teaparty/92
0 → 100644
1 | Received: (from dormouse@wonder.land) | ||
2 | by wonder.land id 3392 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:37 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:32 +0100 | ||
5 | From: Dormouse <dormouse@wonder.land> | ||
6 | Message-Id: <200207292201.3392@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:39 2002 | ||
10 | X-Envelope-Sender: dormouse@wonder.land | ||
11 | |||
12 | --that begins with an | ||
13 | M, such as mouse-traps, and the moon, and memory, and muchness-- | ||
14 | you know you say things are "much of a muchness" --did you ever | ||
15 | see such a thing as a drawing of a muchness? |
testsuite/mh/teaparty/93
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3393 | ||
3 | for dormouse@wonder.land; Mon, 29 Jul 2002 22:01:38 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:33 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3393@wonder.land> | ||
7 | To: Dormouse <dormouse@wonder.land> | ||
8 | Subject: Re: Story | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:40 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | Really, now you ask me, I don't think-- |
testsuite/mh/teaparty/94
0 → 100644
1 | Received: (from hatter@wonder.land) | ||
2 | by wonder.land id 3394 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:39 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:34 +0100 | ||
5 | From: Hatter <hatter@wonder.land> | ||
6 | Message-Id: <200207292201.3394@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Rude remark | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:41 2002 | ||
10 | X-Envelope-Sender: hatter@wonder.land | ||
11 | |||
12 | Then you shouldn't talk |
testsuite/mh/teaparty/95
0 → 100644
1 | Received: (from alice@wonder.land) | ||
2 | by wonder.land id 3395 | ||
3 | for alice@wonder.land; Mon, 29 Jul 2002 22:01:40 +0100 | ||
4 | Date: Mon, 29 Jul 2002 22:01:35 +0100 | ||
5 | From: Alice <alice@wonder.land> | ||
6 | Message-Id: <200207292201.3395@wonder.land> | ||
7 | To: Alice <alice@wonder.land> | ||
8 | Subject: Thoughts | ||
9 | X-Envelope-Date: Mon Jul 29 22:01:42 2002 | ||
10 | X-Envelope-Sender: alice@wonder.land | ||
11 | |||
12 | At any rate I'll never go THERE again! It's the stupidest tea-party I | ||
13 | ever was at in all my life! |
-
Please register or sign in to post a comment