summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2002-08-20 20:27:39 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2002-08-20 20:27:39 +0000
commita32f555d435f9e8b619bcd9cfea1a006a0db89e1 (patch)
tree5e017e4f563f1ec3ce791a9908f8a483ff16ff3e /testsuite
parentdd5b9ea03094dc1886ee1482afb25403cf3d7e3f (diff)
downloadmailutils-a32f555d435f9e8b619bcd9cfea1a006a0db89e1.tar.gz
mailutils-a32f555d435f9e8b619bcd9cfea1a006a0db89e1.tar.bz2
Moved from mail/testsuite
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/Makefile.am28
-rw-r--r--testsuite/etc/DISTFILES1
-rw-r--r--testsuite/etc/mail.rc2
-rw-r--r--testsuite/folder/DISTFILES2
-rw-r--r--testsuite/folder/one12
-rw-r--r--testsuite/folder/two12
-rwxr-xr-xtestsuite/makespool58
-rw-r--r--testsuite/spool/DISTFILES3
-rw-r--r--testsuite/spool/mbox14
-rw-r--r--testsuite/spool/mbox1191
-rw-r--r--testsuite/spool/teaparty.mbox1196
11 files changed, 1519 insertions, 0 deletions
diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am
new file mode 100644
index 000000000..8ee33f136
--- /dev/null
+++ b/testsuite/Makefile.am
@@ -0,0 +1,28 @@
+EXTRA_DIST = makespool
+test_dirs = lib etc spool folder
+
+dist-hook:
+ here=`cd $(top_builddir)/$(subdir) && pwd`; \
+ srcdir=`cd $(srcdir) && pwd`; \
+ distdir=`cd $(distdir) && pwd`; \
+ for dir in $(test_dirs); \
+ do \
+ cd $$srcdir;\
+ mkdir $$distdir/$$dir;\
+ cd $$dir;\
+ for file in DISTFILES `cat DISTFILES`; do \
+ d=$$srcdir/$$dir; \
+ if test -d $$d/$$file; then \
+ cp -pr $$d/$$file $$distdir/$$dir/$$file; \
+ else \
+ test -f $$distdir/$$dir/$$file \
+ || cp -p $$d/$$file $$distdir/$$dir/$$file || exit; \
+ fi; \
+ done;\
+ done;\
+ cd $$here
+
+DISTCLEANFILES=*.exp *.log *.sum
+
+distclean-local:
+ -rm -rf data
diff --git a/testsuite/etc/DISTFILES b/testsuite/etc/DISTFILES
new file mode 100644
index 000000000..77631860f
--- /dev/null
+++ b/testsuite/etc/DISTFILES
@@ -0,0 +1 @@
+mail.rc
diff --git a/testsuite/etc/mail.rc b/testsuite/etc/mail.rc
new file mode 100644
index 000000000..d9b095b8a
--- /dev/null
+++ b/testsuite/etc/mail.rc
@@ -0,0 +1,2 @@
+set quiet nocrt
+set screen=10 columns=80
diff --git a/testsuite/folder/DISTFILES b/testsuite/folder/DISTFILES
new file mode 100644
index 000000000..814f4a422
--- /dev/null
+++ b/testsuite/folder/DISTFILES
@@ -0,0 +1,2 @@
+one
+two
diff --git a/testsuite/folder/one b/testsuite/folder/one
new file mode 100644
index 000000000..939973a5b
--- /dev/null
+++ b/testsuite/folder/one
@@ -0,0 +1,12 @@
+From foobar@nonexistent.net Fri Dec 28 22:18:09 2001
+Received: (from foobar@nonexistent.net)
+ by nonexistent.net id fBSKI8N04906
+ for bar@dontmailme.org; Fri, 28 Dec 2001 22:18:08 +0200
+Date: Fri, 28 Dec 2001 22:18:08 +0200
+From: Foo Bar <foobar@nonexistent.net>
+Message-Id: <200112282018.fBSKI8N04906@nonexistent.net>
+To: Bar <bar@dontmailme.org>
+Subject: Mailbox 1
+
+This is the first folder mailbox.
+
diff --git a/testsuite/folder/two b/testsuite/folder/two
new file mode 100644
index 000000000..07592d232
--- /dev/null
+++ b/testsuite/folder/two
@@ -0,0 +1,12 @@
+From foobar@nonexistent.net Fri Dec 28 22:18:09 2001
+Received: (from foobar@nonexistent.net)
+ by nonexistent.net id fBSKI8N04906
+ for bar@dontmailme.org; Fri, 28 Dec 2001 22:18:08 +0200
+Date: Fri, 28 Dec 2001 22:18:08 +0200
+From: Foo Bar <foobar@nonexistent.net>
+Message-Id: <200112282018.fBSKI8N04906@nonexistent.net>
+To: Bar <bar@dontmailme.org>
+Subject: Mailbox 2
+
+This is the second folder mailbox
+
diff --git a/testsuite/makespool b/testsuite/makespool
new file mode 100755
index 000000000..58a796362
--- /dev/null
+++ b/testsuite/makespool
@@ -0,0 +1,58 @@
+#! /bin/sh
+# GNU mailutils - a suite of utilities for electronic mail
+# Copyright (C) 2002 Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+if [ "$1" = "-r" ]; then
+ shift
+ rm -rf $*
+ exit 0
+fi
+
+mkdirhier() {
+ dir=""
+ for d in `echo $1|sed 's,/, ,g'`
+ do
+ dir="$dir/$d"
+ test -d $dir || mkdir $dir
+ done
+}
+
+while [ $# -gt 0 ]
+do
+ SRCDIR=${1:?}
+ DSTDIR=${2:?}
+ shift 2
+
+ if [ ! -d $SRCDIR ]; then
+ echo "$SRCDIR not a directory" >&2
+ exit 1
+ fi
+ if [ ! -r $SRCDIR/DISTFILES ]; then
+ echo "$SRCDIR/DISTFILES does not exist" >&2
+ exit 1
+ fi
+ mkdirhier $DSTDIR
+ chmod -R u+w $DSTDIR
+ rm -rf $DSTDIR/*
+
+ cat $SRCDIR/DISTFILES |
+ while read NAME
+ do
+ cp $SRCDIR/$NAME $DSTDIR/$NAME
+ chmod u+w $DSTDIR/$NAME
+ done
+done
diff --git a/testsuite/spool/DISTFILES b/testsuite/spool/DISTFILES
new file mode 100644
index 000000000..c540eabd5
--- /dev/null
+++ b/testsuite/spool/DISTFILES
@@ -0,0 +1,3 @@
+mbox1
+mbox
+teaparty.mbox
diff --git a/testsuite/spool/mbox b/testsuite/spool/mbox
new file mode 100644
index 000000000..9238e20f0
--- /dev/null
+++ b/testsuite/spool/mbox
@@ -0,0 +1,14 @@
+From gray@Mirddin.farlep.net Tue Jul 16 12:11:35 2002
+Organization: Farlep-Internet
+Received: from Mirddin.farlep.net (localhost [127.0.0.1])
+ by Mirddin.farlep.net with ESMTP id g6G9BZb00791
+ for <gray@mirddin.farlep.net>; Tue, 16 Jul 2002 12:11:35 +0300
+Message-Id: <200207160911.g6G9BZb00791@Mirddin.farlep.net>
+To: To: Bar <bar@dontmailme.org>
+Subject: MBOX
+Date: Tue, 16 Jul 2002 12:11:35 +0300
+From: Sergey Poznyakoff <gray@Mirddin.farlep.net>
+
+
+This is a sample user's mbox.
+
diff --git a/testsuite/spool/mbox1 b/testsuite/spool/mbox1
new file mode 100644
index 000000000..6ea461a9f
--- /dev/null
+++ b/testsuite/spool/mbox1
@@ -0,0 +1,191 @@
+From foobar@nonexistent.net Fri Dec 28 22:18:09 2001
+Received: (from foobar@nonexistent.net)
+ by nonexistent.net id fBSKI8N04906
+ for bar@dontmailme.org; Fri, 28 Dec 2001 22:18:08 +0200
+Date: Fri, 28 Dec 2001 22:18:08 +0200
+From: Foo Bar <foobar@nonexistent.net>
+Message-Id: <200112282018.fBSKI8N04906@nonexistent.net>
+To: Bar <bar@dontmailme.org>
+Subject: Jabberwocky
+
+`Twas brillig, and the slithy toves
+Did gyre and gimble in the wabe;
+All mimsy were the borogoves,
+And the mome raths outgrabe.
+
+`Beware the Jabberwock, my son!
+The jaws that bite, the claws that catch!
+Beware the Jujub bird, and shun
+The frumious Bandersnatch!'
+
+He took his vorpal sword in hand:
+Long time the manxome foe he sought --
+So rested he by the Tumtum gree,
+And stood awhile in thought.
+
+And as in uffish thought he stood,
+The Jabberwock, with eyes of flame,
+Came whiffling through the tulgey wook,
+And burbled as it came!
+
+One, two! One, two! And through and through
+The vorpal blade went snicker-snack!
+He left it dead, and with its head
+He went galumphing back.
+
+`And has thou slain the Jabberwock?
+Come to my arms, my beamish boy!
+O frabjous day! Calloh! Callay!
+He chortled in his joy.
+
+`Twas brillig, and the slithy toves
+Did gyre and gimble in the wabe;
+All mimsy were the borogoves,
+And the mome raths outgrabe.
+
+
+From bar@dontmailme.org Fri Dec 28 23:28:09 2001
+Received: (from bar@dontmailme.org)
+ by dontmailme.org id fERKR9N16790
+ for foobar@nonexistent.net; Fri, 28 Dec 2001 22:18:08 +0200
+Date: Fri, 28 Dec 2001 23:28:08 +0200
+From: Bar <bar@dontmailme.org>
+To: Foo Bar <foobar@nonexistent.net>
+Message-Id: <200112232808.fERKR9N16790@dontmailme.org>
+Subject: Re: Jabberwocky
+
+It seems very pretty, but it's *rather* hard to understand!'
+Somehow it seems to fill my head with ideas -- only I don't
+exactly know what they are! However, SOMEBODY killed SOMETHING:
+that's clear, at any rate...
+
+From gray@Mirddin.farlep.net Sat Jul 13 00:43:18 2002
+Organization: Farlep-Internet
+Received: from Mirddin.farlep.net (localhost [127.0.0.1])
+ by Mirddin.farlep.net with ESMTP id g6CLhIb05086
+ for <gray@mirddin.farlep.net>; Sat, 13 Jul 2002 00:43:18 +0300
+Message-Id: <200207122143.g6CLhIb05086@Mirddin.farlep.net>
+To: Foo Bar <foobar@nonexistent.net>
+Subject: Simple MIME
+MIME-Version: 1.0
+Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0"
+Content-ID: <5082.1026510189.0@Mirddin.farlep.net>
+Date: Sat, 13 Jul 2002 00:43:18 +0300
+From: Sergey Poznyakoff <gray@Mirddin.farlep.net>
+
+------- =_aaaaaaaaaa0
+Content-Type: text/plain; name="msg.1"; charset="us-ascii"
+Content-ID: <5082.1026510189.1@Mirddin.farlep.net>
+Content-Description: How doth
+
+How doth the little crocodile
+Improve his shining tail,
+And pour the waters of the Nile
+On every golden scale!
+
+`How cheerfully he seems to grin,
+How neatly spread his claws,
+And welcome little fishes in
+With gently smiling jaws!
+
+------- =_aaaaaaaaaa0
+Content-Type: application/octet-stream; name="msg.21"
+Content-ID: <5082.1026510189.2@Mirddin.farlep.net>
+Content-Description: Father William Part I
+Content-Transfer-Encoding: base64
+
+YFlvdSBhcmUgb2xkLCBGYXRoZXIgV2lsbGlhbSwnIHRoZSB5b3VuZyBtYW4gc2FpZCwKYEFuZCB5
+b3VyIGhhaXIgaGFzIGJlY29tZSB2ZXJ5IHdoaXRlOwpBbmQgeWV0IHlvdSBpbmNlc3NhbnRseSBz
+dGFuZCBvbiB5b3VyIGhlYWQtLQpEbyB5b3UgdGhpbmssIGF0IHlvdXIgYWdlLCBpdCBpcyByaWdo
+dD8nCgpgSW4gbXkgeW91dGgsJyBGYXRoZXIgV2lsbGlhbSByZXBsaWVkIHRvIGhpcyBzb24sCmBJ
+IGZlYXJlZCBpdCBtaWdodCBpbmp1cmUgdGhlIGJyYWluOwpCdXQsIG5vdyB0aGF0IEknbSBwZXJm
+ZWN0bHkgc3VyZSBJIGhhdmUgbm9uZSwKV2h5LCBJIGRvIGl0IGFnYWluIGFuZCBhZ2Fpbi4nCgo=
+
+------- =_aaaaaaaaaa0--
+
+From gray@Mirddin.farlep.net Sat Jul 13 00:50:58 2002
+Organization: Farlep-Internet
+Received: from Mirddin.farlep.net (localhost [127.0.0.1])
+ by Mirddin.farlep.net with ESMTP id g6CLowb05126
+ for <gray@mirddin.farlep.net>; Sat, 13 Jul 2002 00:50:58 +0300
+Message-Id: <200207122150.g6CLowb05126@Mirddin.farlep.net>
+To: Foo Bar <foobar@nonexistent.net>
+Subject: Nested MIME
+MIME-Version: 1.0
+Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0"
+Content-ID: <5122.1026510654.1@Mirddin.farlep.net>
+Date: Sat, 13 Jul 2002 00:50:58 +0300
+From: Sergey Poznyakoff <gray@Mirddin.farlep.net>
+
+------- =_aaaaaaaaaa0
+Content-Type: text/plain; name="msg.21"; charset="us-ascii"
+Content-ID: <5122.1026510654.2@Mirddin.farlep.net>
+Content-Description: Father William Part I
+
+`You are old, Father William,' the young man said,
+`And your hair has become very white;
+And yet you incessantly stand on your head--
+Do you think, at your age, it is right?'
+
+`In my youth,' Father William replied to his son,
+`I feared it might injure the brain;
+But, now that I'm perfectly sure I have none,
+Why, I do it again and again.'
+
+
+------- =_aaaaaaaaaa0
+Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1"
+Content-ID: <5122.1026510654.3@Mirddin.farlep.net>
+
+------- =_aaaaaaaaaa1
+Content-Type: application/octet-stream; name="msg.22"
+Content-ID: <5122.1026510654.4@Mirddin.farlep.net>
+Content-Description: Father William Part II
+Content-Transfer-Encoding: base64
+
+YFlvdSBhcmUgb2xkLCcgc2FpZCB0aGUgeW91dGgsIGBhcyBJIG1lbnRpb25lZCBiZWZvcmUsCkFu
+ZCBoYXZlIGdyb3duIG1vc3QgdW5jb21tb25seSBmYXQ7CllldCB5b3UgdHVybmVkIGEgYmFjay1z
+b21lcnNhdWx0IGluIGF0IHRoZSBkb29yLS0KUHJheSwgd2hhdCBpcyB0aGUgcmVhc29uIG9mIHRo
+YXQ/JwoKYEluIG15IHlvdXRoLCcgc2FpZCB0aGUgc2FnZSwgYXMgaGUgc2hvb2sgaGlzIGdyZXkg
+bG9ja3MsCmBJIGtlcHQgYWxsIG15IGxpbWJzIHZlcnkgc3VwcGxlCkJ5IHRoZSB1c2Ugb2YgdGhp
+cyBvaW50bWVudC0tb25lIHNoaWxsaW5nIHRoZSBib3gtLQpBbGxvdyBtZSB0byBzZWxsIHlvdSBh
+IGNvdXBsZT8nCg==
+
+------- =_aaaaaaaaaa1
+Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa2"
+Content-ID: <5122.1026510654.5@Mirddin.farlep.net>
+
+------- =_aaaaaaaaaa2
+Content-Type: application/octet-stream; name="msg.23"
+Content-ID: <5122.1026510654.6@Mirddin.farlep.net>
+Content-Description: Father William Part III
+Content-Transfer-Encoding: base64
+
+YFlvdSBhcmUgb2xkLCcgc2FpZCB0aGUgeW91dGgsIGBhbmQgeW91ciBqYXdzIGFyZSB0b28gd2Vh
+awpGb3IgYW55dGhpbmcgdG91Z2hlciB0aGFuIHN1ZXQ7CllldCB5b3UgZmluaXNoZWQgdGhlIGdv
+b3NlLCB3aXRoIHRoZSBib25lcyBhbmQgdGhlIGJlYWstLQpQcmF5IGhvdyBkaWQgeW91IG1hbmFn
+ZSB0byBkbyBpdD8nCgpgSW4gbXkgeW91dGgsJyBzYWlkIGhpcyBmYXRoZXIsIGBJIHRvb2sgdG8g
+dGhlIGxhdywKQW5kIGFyZ3VlZCBlYWNoIGNhc2Ugd2l0aCBteSB3aWZlOwpBbmQgdGhlIG11c2N1
+bGFyIHN0cmVuZ3RoLCB3aGljaCBpdCBnYXZlIHRvIG15IGphdywKSGFzIGxhc3RlZCB0aGUgcmVz
+dCBvZiBteSBsaWZlLicK
+
+------- =_aaaaaaaaaa2
+Content-Type: application/octet-stream; name="msg.24"
+Content-ID: <5122.1026510654.7@Mirddin.farlep.net>
+Content-Description: Father William Part IV
+Content-Transfer-Encoding: base64
+
+YFlvdSBhcmUgb2xkLCcgc2FpZCB0aGUgeW91dGgsIGBvbmUgd291bGQgaGFyZGx5IHN1cHBvc2UK
+VGhhdCB5b3VyIGV5ZSB3YXMgYXMgc3RlYWR5IGFzIGV2ZXI7CllldCB5b3UgYmFsYW5jZWQgYW4g
+ZWVsIG9uIHRoZSBlbmQgb2YgeW91ciBub3NlLS0KV2hhdCBtYWRlIHlvdSBzbyBhd2Z1bGx5IGNs
+ZXZlcj8nCgpgSSBoYXZlIGFuc3dlcmVkIHRocmVlIHF1ZXN0aW9ucywgYW5kIHRoYXQgaXMgZW5v
+dWdoLCcKU2FpZCBoaXMgZmF0aGVyOyBgZG9uJ3QgZ2l2ZSB5b3Vyc2VsZiBhaXJzIQpEbyB5b3Ug
+dGhpbmsgSSBjYW4gbGlzdGVuIGFsbCBkYXkgdG8gc3VjaCBzdHVmZj8KQmUgb2ZmLCBvciBJJ2xs
+IGtpY2sgeW91IGRvd24gc3RhaXJzIScK
+
+------- =_aaaaaaaaaa2--
+
+------- =_aaaaaaaaaa1--
+
+------- =_aaaaaaaaaa0--
+
diff --git a/testsuite/spool/teaparty.mbox b/testsuite/spool/teaparty.mbox
new file mode 100644
index 000000000..3534e5f7b
--- /dev/null
+++ b/testsuite/spool/teaparty.mbox
@@ -0,0 +1,1196 @@
+From hare@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d91
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Invitation
+
+Have some wine
+
+From alice@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d91
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Re: Invitation
+
+I don't see any wine
+
+From hare@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d91
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Invitation
+
+There isn't any
+
+From alice@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d91
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Re: Invitation
+
+Then it wasn't very civil of you to offer it
+
+From hare@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d91
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Invitation
+
+It wasn't very civil of you to sit down without being invited
+
+From alice@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d91
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Re: Invitation
+
+I didn't know it was YOUR table, it's laid for a
+great many more than three.
+
+From hare@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d91
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Personal remark
+
+Your hair wants cutting
+
+From alice@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d91
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Re: Personal remark
+
+You should learn not to make personal remarks, it's very rude.
+
+From hare@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d91
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Riddle (was Re: Personal remark)
+
+Why is a raven like a writing-desk?
+
+From alice@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d91
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Re: Riddle
+
+I believe I can guess that
+
+From hare@wonder.land Sun Jul 21 20:46:09 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d91
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:09 EEST
+Date: Sun, 21 Jul 2002 23:46:09 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d91@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Riddle
+
+Do you mean that you think you can find out the answer to it?
+
+From alice@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d92
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Re: Riddle
+
+Exactly so
+
+From hare@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d92
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Be specific (was Re: Riddle)
+
+Then you should say what you mean
+
+From alice@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d92
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Re: Be specific
+
+I do, at least--at least I mean what
+I say--that's the same thing, you know.
+
+From hatter@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d92
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Be specific
+
+Not the same thing a bit! You might just
+as well say that "I see what I eat" is the same thing as "I eat
+what I see"!
+
+From hare@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d92
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Be specific
+
+You might just as well say, that "I
+like what I get" is the same thing as "I get what I like"!
+
+From dormouse@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from dormouse@wonder.land)
+ by wonder.land id 3d3b1d92
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: Dormouse <dormouse@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Be specific
+
+You might just as well say, who seemed to
+be talking in his sleep, `that "I breathe when I sleep" is the
+same thing as "I sleep when I breathe"!
+
+From hatter@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d92
+ for dormouse@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: Dormouse <dormouse@wonder.land>
+Subject: Re: Be specific
+
+It IS the same thing with you
+
+From hatter@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d92
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Watch
+
+What day of the month is it?
+
+From alice@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d92
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Watch
+
+The fourth.
+
+From hatter@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d92
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Re: Watch
+
+Two days wrong! I told you butter wouldn't suit the works!
+
+From hare@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d92
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Watch
+
+It was the BEST butter
+
+From hatter@wonder.land Sun Jul 21 20:46:10 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d92
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:10 EEST
+Date: Sun, 21 Jul 2002 23:46:10 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d92@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Re: Watch
+
+Yes, but some crumbs must have got in as well,
+you shouldn't have put it in with the bread-knife.
+
+From hare@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d93
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Watch
+
+It was the BEST butter, you know.
+
+From alice@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d93
+ for tea.party@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Mad Tea Party <tea.party@wonder.land>
+Subject: Funny watch (was Re: Watch)
+
+What a funny watch! It tells the day of the
+month, and doesn't tell what o'clock it is!
+
+From hatter@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d93
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Funny watch
+
+Why should it? Does YOUR watch tell you what year it is?
+
+From alice@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d93
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Funny watch
+
+Of course not, but that's because it stays the same year for such
+a long time together.
+
+From hatter@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d93
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Funny watch
+
+Which is just the case with MINE
+
+From alice@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d93
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Funny watch
+
+I don't quite understand you
+
+From hatter@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d93
+ for tea.party@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Mad Tea Party <tea.party@wonder.land>
+Subject: Remark
+
+The Dormouse is asleep again
+
+From dormouse@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from dormouse@wonder.land)
+ by wonder.land id 3d3b1d93
+ for nobody@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Dormouse <dormouse@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Nobody at all <nobody@wonder.land>
+Subject: Re: Remark
+
+Of course, of course; just what I was going to
+remark myself.
+
+From hatter@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d93
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Riddle
+
+Have you guessed the riddle yet?
+
+From alice@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d93
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Riddle
+
+No, I give it up, what's the answer?
+
+From hatter@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d93
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Riddle
+
+I haven't the slightest idea
+
+From hare@wonder.land Sun Jul 21 20:46:11 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d93
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:11 EEST
+Date: Sun, 21 Jul 2002 23:46:11 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d93@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Riddle
+
+Nor I
+
+From alice@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d94
+ for tea.party@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: Mad Tea Party <tea.party@wonder.land>
+Subject: Re: Riddle
+
+I think you might do something better with the time, than waste it in
+asking riddles that have no answers.
+
+From hatter@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d94
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Discussing Time
+
+If you knew Time as well as I do, you
+wouldn't talk about wasting IT. It's HIM.
+
+From alice@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d94
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Discussing Time
+
+I don't know what you mean
+
+From hatter@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d94
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Discussing Time
+
+Of course you don't! I dare say you never even spoke to Time!
+
+From alice@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d94
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Discussing Time
+
+Perhaps not, but I know I have to beat time when I learn music.
+
+From hatter@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d94
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Discussing Time
+
+Ah! that accounts for it. He won't stand
+beating. Now, if you only kept on good terms with him, he'd do
+almost anything you liked with the clock. For instance, suppose
+it were nine o'clock in the morning, just time to begin lessons:
+you'd only have to whisper a hint to Time, and round goes the
+clock in a twinkling! Half-past one, time for dinner!
+
+From hare@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from hare@wonder.land)
+ by wonder.land id 3d3b1d94
+ for hare@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: March Hare <hare@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: March Hare <hare@wonder.land>
+Subject: Thought apart Re: Discussing Time
+
+I only wish it was
+
+From alice@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d94
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Discussing Time
+
+That would be grand, certainly, but then--I shouldn't be hungry for it,
+you know.
+
+From hatter@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d94
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: Alice <alice@wonder.land>
+Subject: Re: Discussing Time
+
+Not at first, perhaps, but you could keep
+it to half-past one as long as you liked.
+
+From alice@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from alice@wonder.land)
+ by wonder.land id 3d3b1d94
+ for hatter@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Alice <alice@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: Hatter <hatter@wonder.land>
+Subject: Re: Discussing Time
+
+Is that the way YOU manage?
+
+From hatter@wonder.land Sun Jul 21 20:46:12 2002
+Received: (from hatter@wonder.land)
+ by wonder.land id 3d3b1d94
+ for alice@wonder.land; Sun, 21 Jul 2002 23:46:12 EEST
+Date: Sun, 21 Jul 2002 23:46:12 EEST
+From: Hatter <hatter@wonder.land>
+Message-Id: <200207212346.3d3b1d94@wonder.land>
+To: