mirror of
https://git.sr.ht/~rjarry/aerc
synced 2025-12-12 20:36:12 +01:00
lib: vendor-in the jwz library
The maintainer of this library has gone AWOL. We are depending on a patch that has never been merged. Let's vendor the library to avoid future issues. This patch has been made with the following steps: git clone https://github.com/konimarti/jwz lib/jwz git -C lib/jwz checkout fix-missing-messages mv lib/jwz/test/testdata/ham lib/jwz/testdata sed -i 's#test/testdata#testdata#' lib/jwz/jwz_test.go rm -rf lib/jwz/.* lib/jwz/docs lib/jwz/examples lib/jwz/test sed -i 's#github.com/gatherstars-com/jwz#git.sr.ht/~rjarry/aerc/lib/jwz#' \ lib/threadbuilder.go go mod tidy git add --intent-to-add lib/jwz make fmt Along with some manual adjustments to fix the linter warnings. Also, to make the patch smaller, I only kept 93 test emails from the test data fixture. Changelog-changed: The JWZ library used for threading is now vendored. Signed-off-by: Robin Jarry <robin@jarry.cc> Reviewed-by: Moritz Poldrack <moritz@poldrack.dev>
This commit is contained in:
@@ -12,6 +12,7 @@ skip =
|
||||
.env,
|
||||
contrib/aerc.desktop,
|
||||
filters/vectors/*,
|
||||
lib/jwz/testdata/*,
|
||||
tags,
|
||||
ignore-words-list =
|
||||
DeVault,
|
||||
|
||||
@@ -58,7 +58,7 @@ fmt:
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
@contrib/check-whitespace `git ls-files ':!:filters/vectors'` && \
|
||||
@contrib/check-whitespace `git ls-files ':!:filters/vectors' ':!:lib/jwz/testdata'` && \
|
||||
echo white space ok.
|
||||
@contrib/check-docs && echo docs ok.
|
||||
@$(GO) run mvdan.cc/gofumpt@$(gofumpt_tag) -d . | grep ^ \
|
||||
|
||||
3
go.mod
3
go.mod
@@ -22,7 +22,6 @@ require (
|
||||
github.com/emersion/go-smtp v0.22.0
|
||||
github.com/fsnotify/fsevents v0.2.0
|
||||
github.com/fsnotify/fsnotify v1.9.0
|
||||
github.com/gatherstars-com/jwz v1.4.0
|
||||
github.com/go-ini/ini v1.67.0
|
||||
github.com/lithammer/fuzzysearch v1.1.8
|
||||
github.com/mattn/go-isatty v0.0.20
|
||||
@@ -57,5 +56,3 @@ require (
|
||||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||
)
|
||||
|
||||
replace github.com/gatherstars-com/jwz => github.com/konimarti/jwz v0.0.0-20241106152221-81c07e9284c3
|
||||
|
||||
32
go.sum
32
go.sum
@@ -10,8 +10,6 @@ github.com/ProtonMail/go-crypto v1.3.0/go.mod h1:9whxjD8Rbs29b4XWbB8irEcE8KHMqaR
|
||||
github.com/arran4/golang-ical v0.3.2 h1:MGNjcXJFSuCXmYX/RpZhR2HDCYoFuK8vTPFLEdFC3JY=
|
||||
github.com/arran4/golang-ical v0.3.2/go.mod h1:xblDGxxIUMWwFZk9dlECUlc1iXNV65LJZOTHLVwu8bo=
|
||||
github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
|
||||
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a h1:MISbI8sU/PSK/ztvmWKFcI7UGb5/HQT7B+i3a2myKgI=
|
||||
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a/go.mod h1:2GxOXOlEPAMFPfp014mK1SWq8G8BN8o7/dfYqJrVGn8=
|
||||
github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA=
|
||||
github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA=
|
||||
github.com/cloudflare/circl v1.6.1 h1:zqIqSPIndyBh1bjLVVDHMPpVKqp8Su/V+6MeDzzQBQ0=
|
||||
@@ -57,14 +55,8 @@ github.com/fsnotify/fsevents v0.2.0/go.mod h1:B3eEk39i4hz8y1zaWS/wPrAP4O6wkIl7HQ
|
||||
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
|
||||
github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k=
|
||||
github.com/fsnotify/fsnotify v1.9.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0=
|
||||
github.com/gdamore/encoding v1.0.0/go.mod h1:alR0ol34c49FCSBLjhosxzcPHQbf2trDkoo5dl+VrEg=
|
||||
github.com/gdamore/tcell/v2 v2.6.0/go.mod h1:be9omFATkdr0D9qewWW3d+MEvl5dha+Etb5y65J2H8Y=
|
||||
github.com/go-ini/ini v1.67.0 h1:z6ZrTEZqSWOTyH2FlglNbNgARyHG8oLW9gMELqKr06A=
|
||||
github.com/go-ini/ini v1.67.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8=
|
||||
github.com/go-test/deep v1.0.7/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8=
|
||||
github.com/gogs/chardet v0.0.0-20191104214054-4b6791f73a28/go.mod h1:Pcatq5tYkCW2Q6yrR2VRHlbHpZ/R4/7qyL1TCF7vl14=
|
||||
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f h1:3BSP1Tbs2djlpprl7wCLuiqMaUh5SJkkzI2gDs+FgLs=
|
||||
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f/go.mod h1:Pcatq5tYkCW2Q6yrR2VRHlbHpZ/R4/7qyL1TCF7vl14=
|
||||
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||
github.com/golang/snappy v1.0.0 h1:Oy607GVXHs7RtbggtPBnr2RmDArIsAefDwvrdWvRhGs=
|
||||
@@ -73,13 +65,6 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
|
||||
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
||||
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
|
||||
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
|
||||
github.com/jaytaylor/html2text v0.0.0-20200412013138-3577fbdbcff7/go.mod h1:CVKlgaMiht+LXvHG173ujK6JUhZXKb2u/BQtjPDIvyk=
|
||||
github.com/jaytaylor/html2text v0.0.0-20211105163654-bc68cce691ba h1:QFQpJdgbON7I0jr2hYW7Bs+XV0qjc3d5tZoDnRFnqTg=
|
||||
github.com/jaytaylor/html2text v0.0.0-20211105163654-bc68cce691ba/go.mod h1:CVKlgaMiht+LXvHG173ujK6JUhZXKb2u/BQtjPDIvyk=
|
||||
github.com/jhillyerd/enmime v0.11.0 h1:5EOSLh7l3eMODznfMCKVGQY74Qb95Yfuet6CYgquLfM=
|
||||
github.com/jhillyerd/enmime v0.11.0/go.mod h1:nw2aJ34YXWklLze+qEESgP+KNhU3fMQuiFsD/4soh3Q=
|
||||
github.com/konimarti/jwz v0.0.0-20241106152221-81c07e9284c3 h1:Xv6nolkO1+sI2yA9vbhz4tfm1PsnlZtciA6866JSqTA=
|
||||
github.com/konimarti/jwz v0.0.0-20241106152221-81c07e9284c3/go.mod h1:twtXjMamfC5/NRCTJ9vDiHGeDivORkTAvOMUX/qo0Ik=
|
||||
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
|
||||
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
|
||||
github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0=
|
||||
@@ -90,19 +75,13 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
|
||||
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
|
||||
github.com/lithammer/fuzzysearch v1.1.8 h1:/HIuJnjHuXS8bKaiTMeeDlW2/AyIWk2brx1V8LFgLN4=
|
||||
github.com/lithammer/fuzzysearch v1.1.8/go.mod h1:IdqeyBClc3FFqSzYq/MXESsS4S0FsZ5ajtkr5xPLts4=
|
||||
github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
|
||||
github.com/martinlindhe/base36 v1.0.0/go.mod h1:+AtEs8xrBpCeYgSLoY/aJ6Wf37jtBuR0s35750M27+8=
|
||||
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
|
||||
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
||||
github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
|
||||
github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=
|
||||
github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
|
||||
github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc=
|
||||
github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
|
||||
github.com/mattn/go-sixel v0.0.5 h1:55w2FR5ncuhKhXrM5ly1eiqMQfZsnAHIpYNGZX03Cv8=
|
||||
github.com/mattn/go-sixel v0.0.5/go.mod h1:h2Sss+DiUEHy0pUqcIB6PFXo5Cy8sTQEFr3a9/5ZLNw=
|
||||
github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=
|
||||
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
|
||||
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
|
||||
github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs=
|
||||
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
|
||||
@@ -114,11 +93,7 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
|
||||
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||
github.com/rivo/tview v0.0.0-20230226195229-47e7db7885b4/go.mod h1:nVwGv4MP47T0jvlk7KuTTjjuSmrGO4JF0iaiNt4bufE=
|
||||
github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||
github.com/rivo/uniseg v0.4.3/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
|
||||
github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
|
||||
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
|
||||
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
|
||||
github.com/riywo/loginshell v0.0.0-20200815045211-7d26008be1ab h1:ZjX6I48eZSFetPb41dHudEyVr5v953N15TsNZXlkcWY=
|
||||
@@ -128,12 +103,8 @@ github.com/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XF
|
||||
github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o=
|
||||
github.com/soniakeys/quant v1.0.0 h1:N1um9ktjbkZVcywBVAAYpZYSHxEfJGzshHCxx/DaI0Y=
|
||||
github.com/soniakeys/quant v1.0.0/go.mod h1:HI1k023QuVbD4H8i9YdfZP2munIHU4QpjsImz6Y6zds=
|
||||
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf h1:pvbZ0lM0XWPBqUKqFU8cmavspvIl9nulOYwdy6IFRRo=
|
||||
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf/go.mod h1:RJID2RhlZKId02nZ62WenDCkgHFerpIOmW0iT7GKmXM=
|
||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
|
||||
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||
github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE=
|
||||
@@ -158,7 +129,6 @@ golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v
|
||||
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
|
||||
golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY=
|
||||
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
|
||||
golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
|
||||
golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
|
||||
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
|
||||
golang.org/x/net v0.40.0 h1:79Xs7wF06Gbdcg4kdCCIQArK11Z1hr5POQ6+fIYHNuY=
|
||||
@@ -198,7 +168,6 @@ golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
|
||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||
golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ=
|
||||
golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
|
||||
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
|
||||
golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
|
||||
@@ -224,6 +193,5 @@ gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMy
|
||||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=
|
||||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
|
||||
gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
|
||||
661
lib/jwz/jwz.go
Normal file
661
lib/jwz/jwz.go
Normal file
@@ -0,0 +1,661 @@
|
||||
// Package jwz is an implementation of the email threading algorithm created by Jamie Zawinski and explained by him
|
||||
// at: https://www.jwz.org/doc/threading.html
|
||||
//
|
||||
// This package was created by cribbing from the code at:
|
||||
//
|
||||
// https://www.jwz.org/doc/threading.html#:~:text=grendel-1999-05-14.tar.gz
|
||||
//
|
||||
// from the Java source code in view/Threader.java - it contains no ham and cheese sandwiches.
|
||||
//
|
||||
// The code, interface etc. was obviously adapted in to Go form, though where possible, the code reflects the
|
||||
// original Java if it is not too ungolike.
|
||||
//
|
||||
// Author: Jim Idle - jimi@idle.ws / jimi@gatherstars.com
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
// See the LICENSE file, sit down, have a scone.
|
||||
|
||||
package jwz
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
// Threader arranges a set of messages into a thread hierarchy, by references.
|
||||
type Threader struct {
|
||||
rootNode *threadContainer
|
||||
idTable map[string]*threadContainer
|
||||
bogusIDCount int
|
||||
}
|
||||
|
||||
// NewThreader returns an instance of the Threader struct, that is ready to attack
|
||||
// your Threadable
|
||||
//
|
||||
//goland:noinspection GoUnusedExportedFunction
|
||||
func NewThreader() *Threader {
|
||||
t := &Threader{
|
||||
idTable: make(map[string]*threadContainer),
|
||||
}
|
||||
return t
|
||||
}
|
||||
|
||||
// Thread will create a threadable organized so that the root node
|
||||
// is the original reference, creating dummy placeholders for the emails
|
||||
// we don't have yet
|
||||
func (t *Threader) Thread(threadable Threadable) (Threadable, error) {
|
||||
if threadable == nil {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
// Build a thread container from this single email
|
||||
//
|
||||
if !threadable.IsDummy() {
|
||||
if err := t.buildContainer(threadable); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
} else {
|
||||
return nil, errors.New("cannot thread a single email with a dummy root")
|
||||
}
|
||||
|
||||
var err error
|
||||
|
||||
// Organize the root set from what we have
|
||||
//
|
||||
t.rootNode, err = t.findRootSet()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// We no longer need the map - probably no real need to blank it here, but the original Java code did that,
|
||||
// and it won't harm to let the GC reclaim this in case our caller keeps the *Threader around for some reason
|
||||
//
|
||||
t.idTable = nil
|
||||
|
||||
// We do this to avoid flipping the input order each time through.
|
||||
//
|
||||
t.rootNode.reverseChildren()
|
||||
|
||||
// There should not be a next in the root of a conversation thread
|
||||
//
|
||||
if t.rootNode.next != nil {
|
||||
return nil, fmt.Errorf("root node contains a next and should not: %#v", t.rootNode)
|
||||
}
|
||||
|
||||
// Because the result of this function is a tree that does actually contain dummies for missing references
|
||||
// we need to add a dummy threadable for any node that does not yet have one. Then we can flush the chain
|
||||
// of containers in to the threadable
|
||||
//
|
||||
t.rootNode.fillDummy(threadable)
|
||||
|
||||
var result Threadable
|
||||
if t.rootNode.child != nil {
|
||||
result = t.rootNode.child.threadable
|
||||
}
|
||||
|
||||
// Flush the tree structure of each element of the root set down into
|
||||
// their underlying Threadables
|
||||
//
|
||||
_ = t.rootNode.flush()
|
||||
t.rootNode = nil
|
||||
|
||||
return result, nil
|
||||
}
|
||||
|
||||
// ThreadSlice will thread the set of messages contained within threadableSlice.
|
||||
// The Threadable returned is the new first element of the root set.
|
||||
func (t *Threader) ThreadSlice(threadableSlice []Threadable) (Threadable, error) {
|
||||
if len(threadableSlice) == 0 {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
// Iterate all the Threadable represented by the root and build the
|
||||
// threadContainer from them
|
||||
//
|
||||
for _, nt := range threadableSlice {
|
||||
if !nt.IsDummy() {
|
||||
if err := t.buildContainer(nt); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
}
|
||||
return t.threadRoot()
|
||||
}
|
||||
|
||||
// ThreadRoot will thread the set of messages provided by ThreadableRoot.
|
||||
// The Threadable returned is the new first element of the root set.
|
||||
func (t *Threader) ThreadRoot(threadableRoot ThreadableRoot) (Threadable, error) {
|
||||
if threadableRoot == nil {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
// Iterate all the Threadable represented by the root and build the
|
||||
// threadContainer from them
|
||||
//
|
||||
for threadableRoot.Next() {
|
||||
nt := threadableRoot.Get()
|
||||
if !nt.IsDummy() {
|
||||
if err := t.buildContainer(nt); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
}
|
||||
return t.threadRoot()
|
||||
}
|
||||
|
||||
func (t *Threader) threadRoot() (Threadable, error) {
|
||||
var err error
|
||||
|
||||
// Organize the root set from what we have
|
||||
//
|
||||
t.rootNode, err = t.findRootSet()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// We no longer need the map - probably no real need to blank it here, but the original Java code did that,
|
||||
// and it won't harm to let the GC reclaim this in case our caller keeps the *Threader around for some reason
|
||||
//
|
||||
t.idTable = nil
|
||||
|
||||
// Get rid of any empty containers. They should no longer needed
|
||||
//
|
||||
t.pruneEmptyContainers(t.rootNode)
|
||||
|
||||
// We do this so to avoid flipping the input order each time through.
|
||||
//
|
||||
t.rootNode.reverseChildren()
|
||||
|
||||
// We might need to sort on subjects, so let's process them
|
||||
//
|
||||
t.gatherSubjects()
|
||||
|
||||
// There should not be a next in the root of a conversation thread
|
||||
//
|
||||
if t.rootNode.next != nil {
|
||||
return nil, fmt.Errorf("root node contains a next and should not: %#v", t.rootNode)
|
||||
}
|
||||
|
||||
for r := t.rootNode.child; r != nil; r = r.next {
|
||||
// If this direct child of the root node has no threadable in it,
|
||||
// manufacture a dummy container to bind its children together.
|
||||
// Note that these dummies can only ever occur as elements of
|
||||
// the root set.
|
||||
//
|
||||
if r.threadable == nil {
|
||||
r.threadable = r.child.threadable.MakeDummy(r.forID)
|
||||
}
|
||||
}
|
||||
|
||||
var result Threadable
|
||||
if t.rootNode.child != nil {
|
||||
result = t.rootNode.child.threadable
|
||||
}
|
||||
|
||||
// Flush the tree structure of each element of the root set down into
|
||||
// their underlying Threadables
|
||||
//
|
||||
_ = t.rootNode.flush()
|
||||
t.rootNode = nil
|
||||
|
||||
return result, nil
|
||||
}
|
||||
|
||||
// buildContainer() does three things:
|
||||
//
|
||||
// - It walks the tree of Threadable, and wraps each in a
|
||||
// threadContainer object.
|
||||
// - It indexes each threadContainer object in the idTable, under
|
||||
// the message ID of the contained Threadable.
|
||||
// - For each of the references within Threadable, it ensures that there
|
||||
// is a threadContainer in the table (an empty one, if necessary.)
|
||||
func (t *Threader) buildContainer(threadable Threadable) error {
|
||||
var present bool
|
||||
|
||||
// See if we already have a container for this threadable
|
||||
//
|
||||
id := threadable.MessageThreadID()
|
||||
tid := id
|
||||
|
||||
c, present := t.idTable[id]
|
||||
if present {
|
||||
// There is already a ThreadContainer in the table for this ID.
|
||||
// Under normal circumstances, there will be no IThreadable in it
|
||||
// (since it was a forward reference from a References field.)
|
||||
//
|
||||
// If there is already a threadable in it, then that means there
|
||||
// are two IThreadables with the same ID. Generate a new ID for
|
||||
// this one, sigh... This ID is only used to cause the two entries
|
||||
// in the hash table to not stomp each other.
|
||||
//
|
||||
if c.threadable != nil {
|
||||
id = fmt.Sprintf("<Bogus-id:%d>", t.bogusIDCount)
|
||||
t.bogusIDCount++
|
||||
c = nil
|
||||
} else {
|
||||
c.threadable = threadable
|
||||
}
|
||||
}
|
||||
|
||||
// Create a ThreadContainer for this Threadable, and store it in
|
||||
// the map
|
||||
//
|
||||
if c == nil {
|
||||
c = &threadContainer{forID: tid}
|
||||
c.threadable = threadable
|
||||
c.forID = tid
|
||||
t.idTable[id] = c
|
||||
}
|
||||
|
||||
// Create ThreadContainers for each of the references which don't
|
||||
// have them. Link each of the referenced messages together in the
|
||||
// order implied by the references field, unless they are already
|
||||
// linked.
|
||||
//
|
||||
var parentRef, ref *threadContainer
|
||||
|
||||
// Iterate through the references field of the threadable and see if we
|
||||
// already have a reference to them in our map. Create one if not
|
||||
//
|
||||
refs := threadable.MessageThreadReferences()
|
||||
for _, refString := range refs {
|
||||
|
||||
ref, present = t.idTable[refString]
|
||||
if !present {
|
||||
|
||||
ref = &threadContainer{forID: refString}
|
||||
|
||||
t.idTable[refString] = ref
|
||||
}
|
||||
|
||||
// If we have references A B C D, make D be a child of C, etc.,
|
||||
// except if they have parents already.
|
||||
//
|
||||
if parentRef != nil && // there is a parent
|
||||
ref.parent == nil && // don't have a parent already
|
||||
parentRef != ref && // not a tight loop
|
||||
!ref.findChild(parentRef) && // already linked
|
||||
!parentRef.findChild(ref) { // not a wide loop
|
||||
|
||||
// Ok, link it into the parent's child list.
|
||||
//
|
||||
ref.parent = parentRef
|
||||
ref.next = parentRef.child
|
||||
parentRef.child = ref
|
||||
}
|
||||
parentRef = ref
|
||||
}
|
||||
|
||||
// At this point `parentRef' is set to the container of the last element
|
||||
// in the references field. Make that be the parent of this container,
|
||||
// unless doing so would introduce a circularity.
|
||||
//
|
||||
if parentRef != nil &&
|
||||
(parentRef == c ||
|
||||
c.findChild(parentRef)) {
|
||||
parentRef = nil
|
||||
}
|
||||
|
||||
if c.parent != nil {
|
||||
|
||||
// If it has a parent already, that's there because we saw this message
|
||||
// in a references field, and presumed a parent based on the other
|
||||
// entries in that field. Now that we have the actual message, we can
|
||||
// be more definitive, so throw away the old parent and use this new one.
|
||||
// Find this container in the parent's child-list, and unlink it.
|
||||
//
|
||||
// Note that this could cause this message to now have no parent, if it
|
||||
// has no references field, but some message referred to it as the
|
||||
// non-first element of its references. (Which would have been some
|
||||
// kind of lie...)
|
||||
//
|
||||
var rest, prev *threadContainer
|
||||
for prev, rest = nil, c.parent.child; rest != nil; {
|
||||
if rest == c {
|
||||
break
|
||||
}
|
||||
prev = rest
|
||||
rest = rest.next
|
||||
}
|
||||
|
||||
if rest == nil {
|
||||
return fmt.Errorf("didn't find %#v in parent %#v", c, c.parent)
|
||||
}
|
||||
|
||||
if prev == nil {
|
||||
c.parent.child = c.next
|
||||
} else {
|
||||
prev.next = c.next
|
||||
}
|
||||
|
||||
c.next = nil
|
||||
c.parent = nil
|
||||
}
|
||||
|
||||
// If we have a parent, link c into the parent's child list.
|
||||
//
|
||||
if parentRef != nil {
|
||||
c.parent = parentRef
|
||||
c.next = parentRef.child
|
||||
parentRef.child = c
|
||||
}
|
||||
|
||||
// No error
|
||||
//
|
||||
return nil
|
||||
}
|
||||
|
||||
// findRootSet finds the root set of the threadContainers, and returns a root node.
|
||||
//
|
||||
// NB: A container is in the root set if it has no parents.
|
||||
func (t *Threader) findRootSet() (*threadContainer, error) {
|
||||
root := &threadContainer{}
|
||||
for _, c := range t.idTable {
|
||||
if c.parent == nil {
|
||||
if c.next != nil {
|
||||
return nil, fmt.Errorf("container has no parent, but has a next value: %#v", c.next)
|
||||
}
|
||||
c.next = root.child
|
||||
root.child = c
|
||||
}
|
||||
}
|
||||
return root, nil
|
||||
}
|
||||
|
||||
// Walk through the threads and discard any empty container objects.
|
||||
// After calling this, there will only be any empty container objects
|
||||
// at depth 0, and those will all have at least two kids.
|
||||
func (t *Threader) pruneEmptyContainers(parent *threadContainer) {
|
||||
var prev *threadContainer
|
||||
container := parent.child
|
||||
var next *threadContainer
|
||||
|
||||
if container != nil {
|
||||
next = container.next
|
||||
}
|
||||
|
||||
for container != nil {
|
||||
switch {
|
||||
case container.threadable == nil && container.child == nil:
|
||||
// This is an empty container with no kids. Nuke it.
|
||||
//
|
||||
// Normally such containers won't occur, but they can show up when
|
||||
// two messages have References lines that disagree. For example,
|
||||
// assuming A and B are messages, and 1, 2, and 3 are references for
|
||||
// messages we haven't seen:
|
||||
//
|
||||
// A has refs: 1 2 3
|
||||
// B has refs: 1 3
|
||||
//
|
||||
// There is ambiguity whether 3 is a child of 1 or 2. So,
|
||||
// depending on the processing order, we might end up with either
|
||||
//
|
||||
// -- 1
|
||||
// |-- 2
|
||||
// |-- 3
|
||||
// |-- A
|
||||
// |-- B
|
||||
// or
|
||||
// -- 1
|
||||
// |-- 2 <--- non-root childless container
|
||||
// |-- 3
|
||||
// |-- A
|
||||
// |-- B
|
||||
//
|
||||
if prev == nil {
|
||||
parent.child = container.next
|
||||
} else {
|
||||
prev.next = container.next
|
||||
}
|
||||
|
||||
// Set container to prev so that prev keeps its same value
|
||||
// the next time through the loop.
|
||||
//
|
||||
container = prev
|
||||
|
||||
case container.threadable == nil && // expired, and
|
||||
container.child != nil && // has kids, and
|
||||
(container.parent != nil || // not at root, or
|
||||
container.child.next == nil):
|
||||
|
||||
// Expired message with kids. Promote the kids to this level.
|
||||
// Don't do this if we would be promoting them to the root level,
|
||||
// unless there is only one kid.
|
||||
//
|
||||
var tail *threadContainer
|
||||
kids := container.child
|
||||
|
||||
// Remove this container from the list, replacing it with `kids'
|
||||
//
|
||||
if prev == nil {
|
||||
parent.child = kids
|
||||
} else {
|
||||
prev.next = kids
|
||||
}
|
||||
|
||||
// Make each child's parent be this level's parent.
|
||||
// Make the last child's next be this container's next
|
||||
// - splicing `kids' into the list in place of `container'
|
||||
//
|
||||
for tail = kids; tail.next != nil; tail = tail.next {
|
||||
tail.parent = container.parent
|
||||
}
|
||||
tail.parent = container.parent
|
||||
tail.next = container.next
|
||||
|
||||
// Since we've inserted items in the chain, `next' currently points
|
||||
// to the item after them (tail.next); reset that so that we process
|
||||
// the newly promoted items the very next time around.
|
||||
//
|
||||
next = kids
|
||||
|
||||
// Set container to prev so that prev keeps its same value
|
||||
// the next time through the loop.
|
||||
//
|
||||
container = prev
|
||||
|
||||
case container.child != nil:
|
||||
// A real message with kids.
|
||||
// Iterate over its children, and try to strip out the junk.
|
||||
//
|
||||
t.pruneEmptyContainers(container)
|
||||
}
|
||||
|
||||
// Set up for the next iteration
|
||||
//
|
||||
prev = container
|
||||
container = next
|
||||
if container == nil {
|
||||
next = nil
|
||||
} else {
|
||||
next = container.next
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// If any two members of the root set have the same subject, merge them.
|
||||
// This is so that messages which don't have References headers at all
|
||||
// still get threaded (to the extent possible, at least.)
|
||||
func (t *Threader) gatherSubjects() {
|
||||
var count int
|
||||
|
||||
subjTable := make(map[string]*threadContainer)
|
||||
|
||||
for c := t.rootNode.child; c != nil; c = c.next {
|
||||
|
||||
threadable := c.threadable
|
||||
|
||||
// If there is no threadable, this is a dummy node in the root set.
|
||||
// Only root set members may be dummies, and they always have at least
|
||||
// two kids. Take the first kid as representative of the subject.
|
||||
//
|
||||
if threadable == nil {
|
||||
threadable = c.child.threadable
|
||||
}
|
||||
|
||||
subj := threadable.SimplifiedSubject()
|
||||
if subj == "" {
|
||||
continue
|
||||
}
|
||||
|
||||
old := subjTable[subj]
|
||||
|
||||
// Add this container to the table if:
|
||||
// - There is no container in the table with this subject, or
|
||||
// - This one is a dummy container and the old one is not: the dummy
|
||||
// one is more interesting as a root, so put it in the table instead.
|
||||
// - The container in the table has a "Re:" version of this subject,
|
||||
// and this container has a non-"Re:" version of this subject.
|
||||
// The non-re version is the more interesting of the two.
|
||||
//
|
||||
if old == nil ||
|
||||
(c.threadable == nil && old.threadable != nil) ||
|
||||
(old.threadable != nil && old.threadable.SubjectIsReply() &&
|
||||
c.threadable != nil && !c.threadable.SubjectIsReply()) {
|
||||
subjTable[subj] = c
|
||||
count++
|
||||
}
|
||||
}
|
||||
|
||||
// We are done if the table is empty
|
||||
//
|
||||
if count == 0 {
|
||||
return
|
||||
}
|
||||
|
||||
// The subj_table is now populated with one entry for each subject which
|
||||
// occurs in the root set. Now iterate over the root set, and gather
|
||||
// together the difference.
|
||||
//
|
||||
var prev, c, rest *threadContainer
|
||||
|
||||
prev = nil
|
||||
c = t.rootNode.child
|
||||
rest = c.next
|
||||
|
||||
for c != nil {
|
||||
|
||||
threadable := c.threadable
|
||||
|
||||
// might be a dummy -- see above
|
||||
//
|
||||
if threadable == nil {
|
||||
threadable = c.child.threadable
|
||||
}
|
||||
|
||||
subj := threadable.SimplifiedSubject()
|
||||
|
||||
// Don't thread together all subject-less messages; let them dangle.
|
||||
//
|
||||
if subj != "" {
|
||||
|
||||
old := subjTable[subj]
|
||||
|
||||
if old != c { // Avoid processing ourselves
|
||||
|
||||
// Ok, so now we have found another container in the root set with
|
||||
// the same subject. There are a few possibilities:
|
||||
//
|
||||
// - If both are dummies, append one's children to the other, and remove
|
||||
// the now-empty container.
|
||||
//
|
||||
// - If one container is a dummy and the other is not, make the non-dummy
|
||||
// one be a child of the dummy, and a sibling of the other "real"
|
||||
// messages with the same subject (the dummy's children.)
|
||||
//
|
||||
// - If that container is a non-dummy, and that message's subject does
|
||||
// not begin with "Re:", but *this* message's subject does, then
|
||||
// make this be a child of the other.
|
||||
//
|
||||
// - If that container is a non-dummy, and that message's subject begins
|
||||
// with "Re:", but *this* message's subject does *not*, then make that
|
||||
// be a child of this one -- they were mis-ordered. (This happens
|
||||
// somewhat implicitly, since if there are two messages, one with Re:
|
||||
// and one without, the one without will be in the hash table,
|
||||
// regardless of the order in which they were seen.)
|
||||
//
|
||||
// - Otherwise, make a new dummy container and make both messages be a
|
||||
// child of it. This catches the both-are-replies and neither-are-
|
||||
// replies cases, and makes them be siblings instead of asserting a
|
||||
// hierarchical relationship which might not be true.
|
||||
//
|
||||
// (People who reply to a message without using "Re:" and without using
|
||||
// a References line will break this slightly. Those people suck.)
|
||||
//
|
||||
// (It has occurred to me that taking the date or message number into
|
||||
// account would be one way of resolving some ambiguous cases,
|
||||
// but that's not altogether straightforward either.)
|
||||
// JI: You cannot rely on the clock settings being correct on a server/client that sent a message
|
||||
//
|
||||
|
||||
// Remove the "second" message from the root set.
|
||||
if prev == nil {
|
||||
t.rootNode.child = c.next
|
||||
} else {
|
||||
prev.next = c.next
|
||||
}
|
||||
c.next = nil
|
||||
|
||||
switch {
|
||||
case old.threadable == nil && c.threadable == nil:
|
||||
// They're both dummies; merge them.
|
||||
//
|
||||
var tail *threadContainer
|
||||
for tail = old.child; tail != nil && tail.next != nil; tail = tail.next {
|
||||
}
|
||||
|
||||
tail.next = c.child
|
||||
for tail = c.child; tail != nil; tail = tail.next {
|
||||
tail.parent = old
|
||||
}
|
||||
c.child = nil
|
||||
|
||||
case old.threadable == nil || // old is empty, or
|
||||
(c.threadable != nil &&
|
||||
c.threadable.SubjectIsReply() && // c has Re, and
|
||||
!old.threadable.SubjectIsReply()): // old does not.
|
||||
|
||||
// Make this message be a child of the other.
|
||||
c.parent = old
|
||||
c.next = old.child
|
||||
old.child = c
|
||||
|
||||
default:
|
||||
// Make the old and new messages be children of a new dummy container.
|
||||
// We do this by creating a new container object for old->msg and
|
||||
// transforming the old container into a dummy (by merely emptying it),
|
||||
// so that the table still points to the one that is at depth 0
|
||||
// instead of depth 1.
|
||||
//
|
||||
newC := &threadContainer{}
|
||||
|
||||
newC.threadable = old.threadable
|
||||
newC.child = old.child
|
||||
for tail := newC.child; tail != nil; tail = tail.next {
|
||||
tail.parent = newC
|
||||
}
|
||||
|
||||
old.threadable = nil
|
||||
old.child = nil
|
||||
|
||||
c.parent = old
|
||||
newC.parent = old
|
||||
|
||||
// old is now a dummy; make it have exactly two kids, c and newC.
|
||||
//
|
||||
old.child = c
|
||||
c.next = newC
|
||||
}
|
||||
|
||||
// we've done a merge, so keep the same `prev' next time around.
|
||||
//
|
||||
c = prev
|
||||
}
|
||||
}
|
||||
prev = c
|
||||
c = rest
|
||||
if rest != nil {
|
||||
rest = rest.next
|
||||
}
|
||||
}
|
||||
}
|
||||
419
lib/jwz/jwz_test.go
Normal file
419
lib/jwz/jwz_test.go
Normal file
@@ -0,0 +1,419 @@
|
||||
// Author: Jim Idle - jimi@idle.ws / jimi@gatherstars.com
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package jwz
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io/fs"
|
||||
"log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"regexp"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
_ "github.com/emersion/go-message/charset"
|
||||
"github.com/emersion/go-message/mail"
|
||||
)
|
||||
|
||||
// Where we are going to store the emails. We know that the test data is of a fair size, so we tell the slice that
|
||||
// in advance
|
||||
var Emails = make([]Threadable, 0, 93)
|
||||
|
||||
// ls -1 testdata | wc -l
|
||||
const MessageNumber = 93
|
||||
|
||||
// TestMain sets up everything for the other test(s). It essentially parses a largish set of publicly available
|
||||
// Emails in to a structure that can then be used to perform email threading testing.
|
||||
func TestMain(m *testing.M) {
|
||||
// Parse all the emails in the test directory
|
||||
//
|
||||
loadEmails()
|
||||
|
||||
// OK, we have a fairly large email set all parsed, so now we can let the real tests run
|
||||
//
|
||||
os.Exit(m.Run())
|
||||
}
|
||||
|
||||
func loadEmails() {
|
||||
_ = filepath.WalkDir("testdata", func(path string, d fs.DirEntry, err error) error {
|
||||
if err != nil {
|
||||
log.Printf("cannot process directory/file %s because: %#v", path, err)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
if d.IsDir() {
|
||||
// Skip any directory entries, including the base test data dir
|
||||
//
|
||||
return nil
|
||||
}
|
||||
|
||||
// We only look at files that have an eml extension
|
||||
//
|
||||
if !strings.HasSuffix(path, ".eml") {
|
||||
return nil
|
||||
}
|
||||
|
||||
f, e := os.Open(path)
|
||||
if e != nil {
|
||||
return err
|
||||
}
|
||||
r, e1 := mail.CreateReader(f)
|
||||
_ = f.Close()
|
||||
if e1 != nil {
|
||||
log.Printf("cannot parse email file error = %v", e1)
|
||||
return nil
|
||||
}
|
||||
|
||||
// All is good, so let's accumulate the email
|
||||
//
|
||||
email := NewEmail(r.Header)
|
||||
Emails = append(Emails, email)
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
// EmailRoot is a structure that implements the ThreadableRoot interface. I have not used ThreadableRoot
|
||||
// here, but this is what it needs to look like if your input structure is not just a slice of Threadable
|
||||
type EmailRoot struct {
|
||||
// This is some structure of the emails you want to thread, that you know how to traverse
|
||||
//
|
||||
emails []Threadable
|
||||
|
||||
// You need some sort of position holder, which in this silly example is an index in the struct
|
||||
//
|
||||
position int
|
||||
}
|
||||
|
||||
// Next sets the internal cursor to the next available Threadable
|
||||
func (e *EmailRoot) Next() bool {
|
||||
e.position = e.position + 1
|
||||
if e.position < len(e.emails) {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// Get returns the Threadable at the current internal cursor position
|
||||
func (e *EmailRoot) Get() Threadable {
|
||||
return e.emails[e.position]
|
||||
}
|
||||
|
||||
// NewThreadableRoot returns a struct instance that can be traversed using the ThreadableRoot interface
|
||||
func NewThreadableRoot(emails []Threadable) ThreadableRoot {
|
||||
tr := &EmailRoot{
|
||||
emails: emails,
|
||||
position: -1,
|
||||
}
|
||||
return tr
|
||||
}
|
||||
|
||||
// Email is structure that implements the Threadable interface - this is what a user of this
|
||||
// package needs to do.
|
||||
type Email struct {
|
||||
header mail.Header
|
||||
next Threadable
|
||||
parent Threadable
|
||||
child Threadable
|
||||
dummy bool
|
||||
forID string
|
||||
}
|
||||
|
||||
func (e *Email) GetNext() Threadable {
|
||||
return e.next
|
||||
}
|
||||
|
||||
func (e *Email) GetChild() Threadable {
|
||||
return e.child
|
||||
}
|
||||
|
||||
// GetParent the parent Threadable of this node, if any
|
||||
func (e *Email) GetParent() Threadable {
|
||||
return e.parent
|
||||
}
|
||||
|
||||
// GetDate extracts the timestamp from the envelope contained in the supplied Threadable
|
||||
func (e *Email) GetDate() time.Time {
|
||||
// We can have dummies because we are likely to have parsed a set of emails with incomplete threads,
|
||||
// where the start of the thread or sub thread was referenced, but we did not get to parse it, at least yet.
|
||||
// This means it will be a placeholder as the root for the thread, so we can use the time of the child as the
|
||||
// time of this email.
|
||||
//
|
||||
if e.IsDummy() {
|
||||
if e.GetChild() != nil {
|
||||
return e.GetChild().GetDate()
|
||||
}
|
||||
|
||||
// Protect against having nothing in the children that knows what time it is. So, back to the
|
||||
// beginning of time according to Unix
|
||||
//
|
||||
return time.Unix(0, 0)
|
||||
}
|
||||
d, err := e.header.Date()
|
||||
if err != nil {
|
||||
return time.Unix(0, 0)
|
||||
}
|
||||
return d
|
||||
}
|
||||
|
||||
var idre = regexp.MustCompile("<.*?>")
|
||||
|
||||
func (e *Email) MessageThreadID() string {
|
||||
if e.dummy {
|
||||
return e.forID
|
||||
}
|
||||
ref := e.header.Get("Message-Id")
|
||||
refs := idre.FindAllString(ref, -1)
|
||||
if len(refs) > 0 {
|
||||
return refs[0]
|
||||
}
|
||||
return "<bogus-id-in-email>"
|
||||
}
|
||||
|
||||
func (e *Email) MessageThreadReferences() []string {
|
||||
if e.dummy {
|
||||
return nil
|
||||
}
|
||||
|
||||
// This should be a nicely formatted field that has unique IDs enclosed within <>, and each of those should be
|
||||
// space separated. However, it isn't as simple as this because all sorts of garbage mail clients have been programmed
|
||||
// over the years by people who did not understand what the References field was (I'm looking at you
|
||||
// Comcast, for instance). We can get things like:
|
||||
//
|
||||
// 1) References: Your message of Friday... <actual-ID> (Some garbage the programmer thought might be useful)
|
||||
// 2) References: me@mydomain.com (This isn't even a reference, it is the sender's email)
|
||||
// 3) References: <ref-1><ref-2><ref-3> (Either a pure bug, or they misread the spec)
|
||||
//
|
||||
// Further to this, we also need to filter out the following:
|
||||
//
|
||||
// 4) References: <this message-id> (The client author places this email as the first in the
|
||||
// reference chain)
|
||||
// 5) References: <ref-1><ref-2><ref-1> A pure bug somewhere in the chain repeats a reference
|
||||
//
|
||||
// The RFC has now been cleaned up to exactly specify this field, but we have to assume there are still
|
||||
// 20 year old email clients out there and cater for them. Especially when we are testing with ancient
|
||||
// public email bodies.
|
||||
//
|
||||
ref := e.header.Get("References")
|
||||
|
||||
// Find all the correctly delimited references, which takes care of 1) and 3)
|
||||
//
|
||||
rawRefs := idre.FindAllString(ref, -1)
|
||||
|
||||
// Find the message Id, so we can take care of 4)
|
||||
//
|
||||
m := e.MessageThreadID()
|
||||
|
||||
// Find the From address, so we can deal with 2). Even though ignoring this would be harmless in that we would just
|
||||
// think it is an email we never saw, it is wrong not to deal with here. We can avoid the clutter in the database
|
||||
// by filtering them out.
|
||||
//
|
||||
fa, _ := e.header.AddressList("From")
|
||||
|
||||
// Make a set, so we can remove duplicates and deal with 5)
|
||||
//
|
||||
set := make(map[string]any)
|
||||
|
||||
// This will be our final return set, after de-fucking the references
|
||||
//
|
||||
refs := make([]string, 0, len(rawRefs))
|
||||
|
||||
// Now we range through the references that the email has given us and make sure that the reference does
|
||||
// not run afoul of 2), 4) or 5)
|
||||
//
|
||||
for _, r := range rawRefs {
|
||||
// 2) and 5)
|
||||
//
|
||||
if _, repeated := set[r]; r != m && !repeated {
|
||||
|
||||
set[r] = nil
|
||||
|
||||
// Technically, From: can have more than one sender (back in the day before email lists
|
||||
// got sorted), we will never see this in practice, but, in for a pound, in for a penny
|
||||
//
|
||||
var found bool = false
|
||||
for _, f := range fa {
|
||||
if r == "<"+f.Address+">" {
|
||||
found = true
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
if !found {
|
||||
// If we got thorough all of those checks, then Phew! Made it!
|
||||
//
|
||||
refs = append(refs, r)
|
||||
}
|
||||
}
|
||||
}
|
||||
return refs
|
||||
}
|
||||
|
||||
var re = regexp.MustCompile("[Rr][Ee][ \t]*:[ \t]*")
|
||||
|
||||
func (e *Email) SimplifiedSubject() string {
|
||||
if e.dummy {
|
||||
return ""
|
||||
}
|
||||
subj := e.header.Get("Subject")
|
||||
subj = re.ReplaceAllString(subj, "")
|
||||
return subj
|
||||
}
|
||||
|
||||
func (e *Email) Subject() string {
|
||||
if e.dummy {
|
||||
if e.child != nil {
|
||||
return e.child.Subject() + " :: node synthesized by https://gatherstars.com/"
|
||||
}
|
||||
|
||||
return fmt.Sprintf("Placeholder %s - manufactured by https://gatherstars.com/", e.forID)
|
||||
}
|
||||
|
||||
// Add in the date for a bit of extra information
|
||||
//
|
||||
var sb strings.Builder
|
||||
t := e.GetDate()
|
||||
sb.WriteString(t.UTC().String())
|
||||
sb.WriteString(" : ")
|
||||
sb.WriteString(strings.Trim(e.header.Get("Subject"), " "))
|
||||
return sb.String()
|
||||
}
|
||||
|
||||
func (e *Email) SubjectIsReply() bool {
|
||||
subj := e.header.Get("Subject")
|
||||
return re.MatchString(subj)
|
||||
}
|
||||
|
||||
func (e *Email) SetNext(next Threadable) {
|
||||
e.next = next
|
||||
}
|
||||
|
||||
func (e *Email) SetChild(kid Threadable) {
|
||||
e.child = kid
|
||||
if kid != nil {
|
||||
kid.SetParent(e)
|
||||
}
|
||||
}
|
||||
|
||||
// SetParent allows us to add or change the parent Threadable of this node
|
||||
func (e *Email) SetParent(parent Threadable) {
|
||||
e.parent = parent
|
||||
}
|
||||
|
||||
func (e *Email) MakeDummy(forID string) Threadable {
|
||||
return &Email{
|
||||
dummy: true,
|
||||
forID: forID,
|
||||
}
|
||||
}
|
||||
|
||||
func (e *Email) IsDummy() bool {
|
||||
return e.dummy
|
||||
}
|
||||
|
||||
func NewEmail(header mail.Header) Threadable {
|
||||
e := &Email{
|
||||
header: header,
|
||||
dummy: false,
|
||||
}
|
||||
return e
|
||||
}
|
||||
|
||||
func ExampleThreader_ThreadSlice() {
|
||||
// Emails := loadEmails() - your function to load emails into a slice
|
||||
//
|
||||
|
||||
// Create a threader and thread using the slice of Threadable in the slice called Emails
|
||||
//
|
||||
threader := NewThreader()
|
||||
sliceRoot, err := threader.ThreadSlice(Emails)
|
||||
if err != nil {
|
||||
fmt.Printf("func ThreadSlice() error = %#v", err)
|
||||
return
|
||||
}
|
||||
|
||||
// Make sure that number we got back, not including dummies, is the same as we sent in
|
||||
//
|
||||
var nc int
|
||||
Count(sliceRoot, &nc)
|
||||
if nc != MessageNumber {
|
||||
fmt.Printf("expected %d emails after threading, but got %d back", MessageNumber, nc)
|
||||
} else {
|
||||
fmt.Printf("There are %d test emails", nc)
|
||||
}
|
||||
// Output: There are 93 test emails
|
||||
}
|
||||
|
||||
func TestThreader_ThreadSlice(t1 *testing.T) {
|
||||
// Emails := loadEmails() - your function to load emails into a slice
|
||||
//
|
||||
|
||||
// Create a threader and thread using the slice of Threadable in the slice called Emails
|
||||
//
|
||||
threader := NewThreader()
|
||||
sliceRoot, err := threader.ThreadSlice(Emails)
|
||||
if err != nil {
|
||||
t1.Errorf("func ThreadSlice() error = %#v", err)
|
||||
}
|
||||
|
||||
// Make sure that number we got back, not including dummies, is the same as we sent in
|
||||
//
|
||||
var nc int
|
||||
Count(sliceRoot, &nc)
|
||||
if nc != MessageNumber {
|
||||
t1.Errorf("expected %d emails after threading, but got %d back", MessageNumber, nc)
|
||||
}
|
||||
}
|
||||
|
||||
func ExampleThreader_ThreadRoot() {
|
||||
// Emails := loadEmails() - your function to load emails into a slice
|
||||
//
|
||||
|
||||
// Create a threader and thread using the slice of Threadable in the slice called Emails
|
||||
//
|
||||
tr := NewThreadableRoot(Emails)
|
||||
threader := NewThreader()
|
||||
treeRoot, err := threader.ThreadRoot(tr)
|
||||
if err != nil {
|
||||
fmt.Printf("func ThreadRoot() error = %#v", err)
|
||||
}
|
||||
if treeRoot == nil {
|
||||
fmt.Printf("received no output from the threading algorithm")
|
||||
}
|
||||
// Make sure that number we got back, not including dummies, is the same as we sent in
|
||||
//
|
||||
var nc int
|
||||
Count(treeRoot, &nc)
|
||||
if nc != MessageNumber {
|
||||
fmt.Printf("expected %d emails after threading, but got %d back", MessageNumber, nc)
|
||||
} else {
|
||||
fmt.Printf("There are %d test emails", nc)
|
||||
}
|
||||
// Output: There are 93 test emails
|
||||
}
|
||||
|
||||
func TestThreader_ThreadRoot(t1 *testing.T) {
|
||||
// Emails := loadEmails() - your function to load emails into a slice
|
||||
//
|
||||
|
||||
// Create a threader and thread using the ThreadableRootInterface to traverse the emails
|
||||
//
|
||||
tr := NewThreadableRoot(Emails)
|
||||
threader := NewThreader()
|
||||
treeRoot, err := threader.ThreadRoot(tr)
|
||||
if err != nil {
|
||||
t1.Errorf("ThreadRoot() error = %#v", err)
|
||||
}
|
||||
if treeRoot == nil {
|
||||
t1.Errorf("received no output from the threading algorithm")
|
||||
}
|
||||
// Make sure that number we got back, not including dummies, is the same as we sent in
|
||||
//
|
||||
var nc int
|
||||
Count(treeRoot, &nc)
|
||||
if nc != MessageNumber {
|
||||
t1.Errorf("expected %d emails after threading, but got %d back", MessageNumber, nc)
|
||||
}
|
||||
}
|
||||
73
lib/jwz/testdata/0002.b3120c4bcbf3101e661161ee7efcb8bf.eml
vendored
Normal file
73
lib/jwz/testdata/0002.b3120c4bcbf3101e661161ee7efcb8bf.eml
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
From: Steve_Burt@cursor-system.com Thu Aug 22 12:46:39 2002
|
||||
Return-Path: <Steve_Burt@cursor-system.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id BE12E43C34
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 07:46:38 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 12:46:38 +0100 (IST)
|
||||
Received: from n20.grp.scd.yahoo.com (n20.grp.scd.yahoo.com
|
||||
[66.218.66.76]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7MBkTZ05087 for <zzzz@example.com>; Thu, 22 Aug 2002 12:46:29 +0100
|
||||
X-Egroups-Return: sentto-2242572-52726-1030016790-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.67.196] by n20.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 11:46:30 -0000
|
||||
X-Sender: steve.burt@cursor-system.com
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 11:46:29 -0000
|
||||
Received: (qmail 11764 invoked from network); 22 Aug 2002 11:46:29 -0000
|
||||
Received: from unknown (66.218.66.217) by m3.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 11:46:29 -0000
|
||||
Received: from unknown (HELO mailgateway.cursor-system.com) (62.189.7.27)
|
||||
by mta2.grp.scd.yahoo.com with SMTP; 22 Aug 2002 11:46:29 -0000
|
||||
Received: from exchange1.cps.local (unverified) by
|
||||
mailgateway.cursor-system.com (Content Technologies SMTPRS 4.2.10) with
|
||||
ESMTP id <T5cde81f695ac1d100407d@mailgateway.cursor-system.com> for
|
||||
<forteana@yahoogroups.com>; Thu, 22 Aug 2002 13:14:10 +0100
|
||||
Received: by exchange1.cps.local with Internet Mail Service (5.5.2653.19)
|
||||
id <PXX6AT23>; Thu, 22 Aug 2002 12:46:27 +0100
|
||||
Message-Id: <5EC2AD6D2314D14FB64BDA287D25D9EF12B4F6@exchange1.cps.local>
|
||||
To: "'zzzzteana@yahoogroups.com'" <zzzzteana@yahoogroups.com>
|
||||
X-Mailer: Internet Mail Service (5.5.2653.19)
|
||||
X-Egroups-From: Steve Burt <steve.burt@cursor-system.com>
|
||||
From: Steve Burt <Steve_Burt@cursor-system.com>
|
||||
X-Yahoo-Profile: pyruse
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 12:46:18 +0100
|
||||
Subject: [zzzzteana] RE: Alexander
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
Martin A posted:
|
||||
Tassos Papadopoulos, the Greek sculptor behind the plan, judged that the
|
||||
limestone of Mount Kerdylio, 70 miles east of Salonika and not far from the
|
||||
Mount Athos monastic community, was ideal for the patriotic sculpture.
|
||||
|
||||
As well as Alexander's granite features, 240 ft high and 170 ft wide, a
|
||||
museum, a restored amphitheatre and car park for admiring crowds are
|
||||
planned
|
||||
---------------------
|
||||
So is this mountain limestone or granite?
|
||||
If it's limestone, it'll weather pretty fast.
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
82
lib/jwz/testdata/0003.acfc5ad94bbd27118a0d8685d18c89dd.eml
vendored
Normal file
82
lib/jwz/testdata/0003.acfc5ad94bbd27118a0d8685d18c89dd.eml
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
From: timc@2ubh.com Thu Aug 22 13:52:59 2002
|
||||
Return-Path: <timc@2ubh.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 0314547C66
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 08:52:58 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 13:52:59 +0100 (IST)
|
||||
Received: from n16.grp.scd.yahoo.com (n16.grp.scd.yahoo.com
|
||||
[66.218.66.71]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7MCrdZ07070 for <zzzz@example.com>; Thu, 22 Aug 2002 13:53:39 +0100
|
||||
X-Egroups-Return: sentto-2242572-52733-1030020820-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.67.198] by n16.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 12:53:40 -0000
|
||||
X-Sender: timc@2ubh.com
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 12:53:39 -0000
|
||||
Received: (qmail 76099 invoked from network); 22 Aug 2002 12:53:39 -0000
|
||||
Received: from unknown (66.218.66.218) by m5.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 12:53:39 -0000
|
||||
Received: from unknown (HELO rhenium.btinternet.com) (194.73.73.93) by
|
||||
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 12:53:39 -0000
|
||||
Received: from host217-36-23-185.in-addr.btopenworld.com ([217.36.23.185])
|
||||
by rhenium.btinternet.com with esmtp (Exim 3.22 #8) id 17hrT0-0004gj-00
|
||||
for forteana@yahoogroups.com; Thu, 22 Aug 2002 13:53:38 +0100
|
||||
X-Mailer: Microsoft Outlook Express Macintosh Edition - 4.5 (0410)
|
||||
To: zzzzteana <zzzzteana@yahoogroups.com>
|
||||
X-Priority: 3
|
||||
Message-Id: <E17hrT0-0004gj-00@rhenium.btinternet.com>
|
||||
From: "Tim Chapman" <timc@2ubh.com>
|
||||
X-Yahoo-Profile: tim2ubh
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 13:52:38 +0100
|
||||
Subject: [zzzzteana] Moscow bomber
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
Man Threatens Explosion In Moscow
|
||||
|
||||
Thursday August 22, 2002 1:40 PM
|
||||
MOSCOW (AP) - Security officers on Thursday seized an unidentified man who
|
||||
said he was armed with explosives and threatened to blow up his truck in
|
||||
front of Russia's Federal Security Services headquarters in Moscow, NTV
|
||||
television reported.
|
||||
The officers seized an automatic rifle the man was carrying, then the man
|
||||
got out of the truck and was taken into custody, NTV said. No other details
|
||||
were immediately available.
|
||||
The man had demanded talks with high government officials, the Interfax and
|
||||
ITAR-Tass news agencies said. Ekho Moskvy radio reported that he wanted to
|
||||
talk with Russian President Vladimir Putin.
|
||||
Police and security forces rushed to the Security Service building, within
|
||||
blocks of the Kremlin, Red Square and the Bolshoi Ballet, and surrounded the
|
||||
man, who claimed to have one and a half tons of explosives, the news
|
||||
agencies said. Negotiations continued for about one and a half hours outside
|
||||
the building, ITAR-Tass and Interfax reported, citing witnesses.
|
||||
The man later drove away from the building, under police escort, and drove
|
||||
to a street near Moscow's Olympic Penta Hotel, where authorities held
|
||||
further negotiations with him, the Moscow police press service said. The
|
||||
move appeared to be an attempt by security services to get him to a more
|
||||
secure location.
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
78
lib/jwz/testdata/0004.e8d5727378ddde5c3be181df593f1712.eml
vendored
Normal file
78
lib/jwz/testdata/0004.e8d5727378ddde5c3be181df593f1712.eml
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
From: irregulars-admin@tb.tf Thu Aug 22 14:23:39 2002
|
||||
Return-Path: <irregulars-admin@tb.tf>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 9DAE147C66
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 09:23:38 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:23:38 +0100 (IST)
|
||||
Received: from web.tb.tf (route-64-131-126-36.telocity.com
|
||||
[64.131.126.36]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7MDGOZ07922 for <zzzz-irr@example.com>; Thu, 22 Aug 2002 14:16:24 +0100
|
||||
Received: from web.tb.tf (localhost.localdomain [127.0.0.1]) by web.tb.tf
|
||||
(8.11.6/8.11.6) with ESMTP id g7MDP9I16418; Thu, 22 Aug 2002 09:25:09
|
||||
-0400
|
||||
Received: from red.harvee.home (red [192.168.25.1] (may be forged)) by
|
||||
web.tb.tf (8.11.6/8.11.6) with ESMTP id g7MDO4I16408 for
|
||||
<irregulars@tb.tf>; Thu, 22 Aug 2002 09:24:04 -0400
|
||||
Received: from prserv.net (out4.prserv.net [32.97.166.34]) by
|
||||
red.harvee.home (8.11.6/8.11.6) with ESMTP id g7MDFBD29237 for
|
||||
<irregulars@tb.tf>; Thu, 22 Aug 2002 09:15:12 -0400
|
||||
Received: from [209.202.248.109]
|
||||
(slip-32-103-249-10.ma.us.prserv.net[32.103.249.10]) by prserv.net (out4)
|
||||
with ESMTP id <2002082213150220405qu8jce>; Thu, 22 Aug 2002 13:15:07 +0000
|
||||
MIME-Version: 1.0
|
||||
X-Sender: @ (Unverified)
|
||||
Message-Id: <p04330137b98a941c58a8@[209.202.248.109]>
|
||||
To: undisclosed-recipient: ;
|
||||
From: Monty Solomon <monty@roscom.com>
|
||||
Content-Type: text/plain; charset="us-ascii"
|
||||
Subject: [IRR] Klez: The Virus That Won't Die
|
||||
Sender: irregulars-admin@tb.tf
|
||||
Errors-To: irregulars-admin@tb.tf
|
||||
X-Beenthere: irregulars@tb.tf
|
||||
X-Mailman-Version: 2.0.6
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:irregulars-request@tb.tf?subject=help>
|
||||
List-Post: <mailto:irregulars@tb.tf>
|
||||
List-Subscribe: <http://tb.tf/mailman/listinfo/irregulars>,
|
||||
<mailto:irregulars-request@tb.tf?subject=subscribe>
|
||||
List-Id: New home of the TBTF Irregulars mailing list <irregulars.tb.tf>
|
||||
List-Unsubscribe: <http://tb.tf/mailman/listinfo/irregulars>,
|
||||
<mailto:irregulars-request@tb.tf?subject=unsubscribe>
|
||||
List-Archive: <http://tb.tf/mailman/private/irregulars/>
|
||||
Date: Thu, 22 Aug 2002 09:15:25 -0400
|
||||
|
||||
Klez: The Virus That Won't Die
|
||||
|
||||
Already the most prolific virus ever, Klez continues to wreak havoc.
|
||||
|
||||
Andrew Brandt
|
||||
>>From the September 2002 issue of PC World magazine
|
||||
Posted Thursday, August 01, 2002
|
||||
|
||||
|
||||
The Klez worm is approaching its seventh month of wriggling across
|
||||
the Web, making it one of the most persistent viruses ever. And
|
||||
experts warn that it may be a harbinger of new viruses that use a
|
||||
combination of pernicious approaches to go from PC to PC.
|
||||
|
||||
Antivirus software makers Symantec and McAfee both report more than
|
||||
2000 new infections daily, with no sign of letup at press time. The
|
||||
British security firm MessageLabs estimates that 1 in every 300
|
||||
e-mail messages holds a variation of the Klez virus, and says that
|
||||
Klez has already surpassed last summer's SirCam as the most prolific
|
||||
virus ever.
|
||||
|
||||
And some newer Klez variants aren't merely nuisances--they can carry
|
||||
other viruses in them that corrupt your data.
|
||||
|
||||
...
|
||||
|
||||
http://www.pcworld.com/news/article/0,aid,103259,00.asp
|
||||
_______________________________________________
|
||||
Irregulars mailing list
|
||||
Irregulars@tb.tf
|
||||
http://tb.tf/mailman/listinfo/irregulars
|
||||
|
||||
106
lib/jwz/testdata/0005.8c3b9e9c0f3f183ddaf7592a11b99957.eml
vendored
Normal file
106
lib/jwz/testdata/0005.8c3b9e9c0f3f183ddaf7592a11b99957.eml
vendored
Normal file
@@ -0,0 +1,106 @@
|
||||
From: exmh-users-admin@redhat.com Thu Aug 22 14:44:07 2002
|
||||
Return-Path: <exmh-users-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 985B247C67
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 09:44:04 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:44:04 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MDgEZ08598 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 14:42:19 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id F26113EE9A; Thu, 22 Aug 2002
|
||||
09:42:15 -0400 (EDT)
|
||||
Delivered-To: exmh-users@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 4ACEF3F4A2
|
||||
for <exmh-users@listman.redhat.com>; Thu, 22 Aug 2002 09:38:03 -0400 (EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MDc0601591 for exmh-users@listman.redhat.com; Thu, 22 Aug 2002
|
||||
09:38:00 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MDc0Y01587 for
|
||||
<exmh-users@redhat.com>; Thu, 22 Aug 2002 09:38:00 -0400
|
||||
Received: from mta03bw.bigpond.com (mta03bw.bigpond.com [139.134.6.86]) by
|
||||
mx1.redhat.com (8.11.6/8.11.6) with SMTP id g7MDNVl14108 for
|
||||
<exmh-users@redhat.com>; Thu, 22 Aug 2002 09:23:31 -0400
|
||||
Received: from hobbit.linuxworks.com.au ([144.135.24.81]) by
|
||||
mta03bw.bigpond.com (Netscape Messaging Server 4.15 mta03bw May 23 2002
|
||||
23:53:28) with SMTP id H18Z7300.F6G for <exmh-users@redhat.com>;
|
||||
Thu, 22 Aug 2002 23:37:51 +1000
|
||||
Received: from CPE-203-51-220-31.qld.bigpond.net.au ([203.51.220.31]) by
|
||||
bwmam05.mailsvc.email.bigpond.com(MailRouter V3.0n 44/32989362);
|
||||
22 Aug 2002 23:37:51
|
||||
Received: (from tony@localhost) by hobbit.linuxworks.com.au
|
||||
(8.11.6/8.11.6) id g7MDaWX26868; Thu, 22 Aug 2002 23:36:32 +1000
|
||||
Message-Id: <200208221336.g7MDaWX26868@hobbit.linuxworks.com.au.nospam>
|
||||
To: Exmh Users Mailing List <exmh-users@example.com>
|
||||
From: Tony Nugent <tony@linuxworks.com.au>
|
||||
X-Face: ]IrGs{LrofDtGfsrG!As5=G'2HRr2zt:H>djXb5@v|Dr!jOelxzAZ`!}("]}]
|
||||
Q!)1w#X;)nLlb'XhSu,QL>;)L/l06wsI?rv-xy6%Y1e"BUiV%)mU;]f-5<#U6
|
||||
UthZ0QrF7\_p#q}*Cn}jd|XT~7P7ik]Q!2u%aTtvc;)zfH\:3f<[a:)M
|
||||
Organization: Linux Works for network
|
||||
X-Mailer: nmh-1.0.4 exmh-2.4
|
||||
X-Os: Linux-2.4 RedHat 7.2
|
||||
In-Reply-To: message-id <200208212046.g7LKkqf15798@mail.banirh.com> of Wed,
|
||||
Aug 21 15:46:52 2002
|
||||
Subject: Re: Insert signature
|
||||
X-Loop: exmh-users@example.com
|
||||
Sender: exmh-users-admin@example.com
|
||||
Errors-To: exmh-users-admin@example.com
|
||||
X-Beenthere: exmh-users@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
Reply-To: exmh-users@example.com
|
||||
List-Help: <mailto:exmh-users-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-users@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
||||
<mailto:exmh-users-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH users <exmh-users.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
||||
<mailto:exmh-users-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-users/>
|
||||
Date: Thu, 22 Aug 2002 23:36:32 +1000
|
||||
|
||||
On Wed Aug 21 2002 at 15:46, Ulises Ponce wrote:
|
||||
|
||||
> Hi!
|
||||
>
|
||||
> Is there a command to insert the signature using a combination of keys and not
|
||||
> to have sent the mail to insert it then?
|
||||
|
||||
I simply put it (them) into my (nmh) component files (components,
|
||||
replcomps, forwcomps and so on). That way you get them when you are
|
||||
editing your message. Also, by using comps files for specific
|
||||
folders you can alter your .sig per folder (and other tricks). See
|
||||
the docs for (n)mh for all the details.
|
||||
|
||||
There might (must?) also be a way to get sedit to do it, but I've
|
||||
been using gvim as my exmh message editor for a long time now. I
|
||||
load it with a command that loads some email-specific settings, eg,
|
||||
to "syntax" colour-highlight the headers and quoted parts of an
|
||||
email)... it would be possible to map some (vim) keys that would add
|
||||
a sig (or even give a selection of sigs to choose from).
|
||||
|
||||
And there are all sorts of ways to have randomly-chosen sigs...
|
||||
somewhere at rtfm.mit.edu... ok, here we go:
|
||||
rtfm.mit.edu/pub/usenet-by-group/news.answers/signature_finger_faq.
|
||||
(Warning... it's old, May 1995).
|
||||
|
||||
> Regards,
|
||||
> Ulises
|
||||
|
||||
Hope this helps.
|
||||
|
||||
Cheers
|
||||
Tony
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-users mailing list
|
||||
Exmh-users@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-users
|
||||
|
||||
77
lib/jwz/testdata/0006.ee8b0dba12856155222be180ba122058.eml
vendored
Normal file
77
lib/jwz/testdata/0006.ee8b0dba12856155222be180ba122058.eml
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
From: Stewart.Smith@ee.ed.ac.uk Thu Aug 22 14:44:26 2002
|
||||
Return-Path: <Stewart.Smith@ee.ed.ac.uk>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id EC69D47C66
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 09:44:25 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:44:25 +0100 (IST)
|
||||
Received: from n6.grp.scd.yahoo.com (n6.grp.scd.yahoo.com [66.218.66.90])
|
||||
by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id g7MDcOZ08504 for
|
||||
<zzzz@example.com>; Thu, 22 Aug 2002 14:38:25 +0100
|
||||
X-Egroups-Return: sentto-2242572-52736-1030023506-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.67.192] by n6.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 13:38:26 -0000
|
||||
X-Sender: Stewart.Smith@ee.ed.ac.uk
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 13:38:25 -0000
|
||||
Received: (qmail 48882 invoked from network); 22 Aug 2002 13:38:25 -0000
|
||||
Received: from unknown (66.218.66.218) by m10.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 13:38:25 -0000
|
||||
Received: from unknown (HELO postbox.ee.ed.ac.uk) (129.215.80.253) by
|
||||
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 13:38:24 -0000
|
||||
Received: from ee.ed.ac.uk (sxs@dunblane [129.215.34.86]) by
|
||||
postbox.ee.ed.ac.uk (8.11.0/8.11.0) with ESMTP id g7MDcNi28645 for
|
||||
<forteana@yahoogroups.com>; Thu, 22 Aug 2002 14:38:23 +0100 (BST)
|
||||
Message-Id: <3D64E94E.8060301@ee.ed.ac.uk>
|
||||
Organization: Scottish Microelectronics Centre
|
||||
User-Agent: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.1b) Gecko/20020628
|
||||
X-Accept-Language: en, en-us
|
||||
To: zzzzteana@yahoogroups.com
|
||||
References: <3D64F325.11319.61EA648@localhost>
|
||||
From: Stewart Smith <Stewart.Smith@ee.ed.ac.uk>
|
||||
X-Yahoo-Profile: stochasticus
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 14:38:22 +0100
|
||||
Subject: Re: [zzzzteana] Nothing like mama used to make
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
> in adding cream to spaghetti carbonara, which has the same effect on pasta as
|
||||
> making a pizza a deep-pie;
|
||||
|
||||
I just had to jump in here as Carbonara is one of my favourites to make and ask
|
||||
what the hell are you supposed to use instead of cream? I've never seen a
|
||||
recipe that hasn't used this. Personally I use low fat creme fraiche because it
|
||||
works quite nicely but the only time I've seen an supposedly authentic recipe
|
||||
for carbonara it was identical to mine (cream, eggs and lots of fresh parmesan)
|
||||
except for the creme fraiche.
|
||||
|
||||
Stew
|
||||
--
|
||||
Stewart Smith
|
||||
Scottish Microelectronics Centre, University of Edinburgh.
|
||||
http://www.ee.ed.ac.uk/~sxs/
|
||||
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
74
lib/jwz/testdata/0007.c75188382f64b090022fa3b095b020b0.eml
vendored
Normal file
74
lib/jwz/testdata/0007.c75188382f64b090022fa3b095b020b0.eml
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
From: martin@srv0.ems.ed.ac.uk Thu Aug 22 14:54:39 2002
|
||||
Return-Path: <martin@srv0.ems.ed.ac.uk>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 16FC743F99
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 09:54:38 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:54:39 +0100 (IST)
|
||||
Received: from n14.grp.scd.yahoo.com (n14.grp.scd.yahoo.com
|
||||
[66.218.66.69]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7MDoxZ08960 for <zzzz@example.com>; Thu, 22 Aug 2002 14:50:59 +0100
|
||||
X-Egroups-Return: sentto-2242572-52737-1030024261-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.66.95] by n14.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 13:51:01 -0000
|
||||
X-Sender: martin@srv0.ems.ed.ac.uk
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 13:51:00 -0000
|
||||
Received: (qmail 71894 invoked from network); 22 Aug 2002 13:51:00 -0000
|
||||
Received: from unknown (66.218.66.218) by m7.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 13:51:00 -0000
|
||||
Received: from unknown (HELO haymarket.ed.ac.uk) (129.215.128.53) by
|
||||
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 13:51:00 -0000
|
||||
Received: from srv0.ems.ed.ac.uk (srv0.ems.ed.ac.uk [129.215.117.0]) by
|
||||
haymarket.ed.ac.uk (8.11.6/8.11.6) with ESMTP id g7MDow310334 for
|
||||
<forteana@yahoogroups.com>; Thu, 22 Aug 2002 14:50:59 +0100 (BST)
|
||||
Received: from EMS-SRV0/SpoolDir by srv0.ems.ed.ac.uk (Mercury 1.44);
|
||||
22 Aug 02 14:50:58 +0000
|
||||
Received: from SpoolDir by EMS-SRV0 (Mercury 1.44); 22 Aug 02 14:50:31 +0000
|
||||
Organization: Management School
|
||||
To: zzzzteana@yahoogroups.com
|
||||
Message-Id: <3D64FA3C.13325.63A5960@localhost>
|
||||
Priority: normal
|
||||
In-Reply-To: <3D64E94E.8060301@ee.ed.ac.uk>
|
||||
X-Mailer: Pegasus Mail for Windows (v4.01)
|
||||
Content-Description: Mail message body
|
||||
From: "Martin Adamson" <martin@srv0.ems.ed.ac.uk>
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 14:50:31 +0100
|
||||
Subject: Re: [zzzzteana] Nothing like mama used to make
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
|
||||
> I just had to jump in here as Carbonara is one of my favourites to make and
|
||||
> ask
|
||||
> what the hell are you supposed to use instead of cream?
|
||||
|
||||
Isn't it just basically a mixture of beaten egg and bacon (or pancetta,
|
||||
really)? You mix in the raw egg to the cooked pasta and the heat of the pasta
|
||||
cooks the egg. That's my understanding.
|
||||
|
||||
Martin
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
88
lib/jwz/testdata/0008.20bc0b4ba2d99aae1c7098069f611a9b.eml
vendored
Normal file
88
lib/jwz/testdata/0008.20bc0b4ba2d99aae1c7098069f611a9b.eml
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
From: martin@srv0.ems.ed.ac.uk Thu Aug 22 14:54:40 2002
|
||||
Return-Path: <martin@srv0.ems.ed.ac.uk>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id E3D7B47C66
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 09:54:39 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:54:40 +0100 (IST)
|
||||
Received: from n11.grp.scd.yahoo.com (n11.grp.scd.yahoo.com
|
||||
[66.218.66.66]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7MDt8Z09193 for <zzzz@example.com>; Thu, 22 Aug 2002 14:55:10 +0100
|
||||
X-Egroups-Return: sentto-2242572-52738-1030024499-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.66.94] by n11.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 13:55:03 -0000
|
||||
X-Sender: martin@srv0.ems.ed.ac.uk
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 13:54:59 -0000
|
||||
Received: (qmail 43039 invoked from network); 22 Aug 2002 13:54:58 -0000
|
||||
Received: from unknown (66.218.66.216) by m1.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 13:54:58 -0000
|
||||
Received: from unknown (HELO haymarket.ed.ac.uk) (129.215.128.53) by
|
||||
mta1.grp.scd.yahoo.com with SMTP; 22 Aug 2002 13:54:58 -0000
|
||||
Received: from srv0.ems.ed.ac.uk (srv0.ems.ed.ac.uk [129.215.117.0]) by
|
||||
haymarket.ed.ac.uk (8.11.6/8.11.6) with ESMTP id g7MDsv311745 for
|
||||
<forteana@yahoogroups.com>; Thu, 22 Aug 2002 14:54:57 +0100 (BST)
|
||||
Received: from EMS-SRV0/SpoolDir by srv0.ems.ed.ac.uk (Mercury 1.44);
|
||||
22 Aug 02 14:54:56 +0000
|
||||
Received: from SpoolDir by EMS-SRV0 (Mercury 1.44); 22 Aug 02 14:54:29 +0000
|
||||
Organization: Management School
|
||||
To: zzzzteana@yahoogroups.com
|
||||
Message-Id: <3D64FB27.18538.63DEC17@localhost>
|
||||
Priority: normal
|
||||
X-Mailer: Pegasus Mail for Windows (v4.01)
|
||||
Content-Description: Mail message body
|
||||
From: "Martin Adamson" <martin@srv0.ems.ed.ac.uk>
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 14:54:25 +0100
|
||||
Subject: [zzzzteana] Playboy wants to go out with a bang
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=ISO-8859-1
|
||||
Content-Transfer-Encoding: 8bit
|
||||
X-MIME-Autoconverted: from quoted-printable to 8bit by dogma.slashnull.org
|
||||
id g7MDt8Z09193
|
||||
|
||||
The Scotsman - 22 August 2002
|
||||
|
||||
Playboy wants to go out with a bang
|
||||
|
||||
|
||||
AN AGEING Berlin playboy has come up with an unusual offer to lure women into
|
||||
his bed - by promising the last woman he sleeps with an inheritance of 250,000
|
||||
(<28>160,000).
|
||||
|
||||
Rolf Eden, 72, a Berlin disco owner famous for his countless sex partners,
|
||||
said he could imagine no better way to die than in the arms of an attractive
|
||||
young woman - preferably under 30.
|
||||
|
||||
"I put it all in my last will and testament - the last woman who sleeps with
|
||||
me gets all the money," Mr Eden told Bild newspaper.
|
||||
|
||||
"I want to pass away in the most beautiful moment of my life. First a lot of
|
||||
fun with a beautiful woman, then wild sex, a final orgasm - and it will all
|
||||
end with a heart attack and then I<>m gone."
|
||||
|
||||
Mr Eden, who is selling his nightclub this year, said applications should be
|
||||
sent in quickly because of his age. "It could end very soon," he said.
|
||||
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
85
lib/jwz/testdata/0009.435ae292d75abb1ca492dcc2d5cf1570.eml
vendored
Normal file
85
lib/jwz/testdata/0009.435ae292d75abb1ca492dcc2d5cf1570.eml
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
From: Stewart.Smith@ee.ed.ac.uk Thu Aug 22 15:05:07 2002
|
||||
Return-Path: <Stewart.Smith@ee.ed.ac.uk>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id EF86747C67
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 10:05:00 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 15:05:01 +0100 (IST)
|
||||
Received: from n34.grp.scd.yahoo.com (n34.grp.scd.yahoo.com
|
||||
[66.218.66.102]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7ME1MZ09279 for <zzzz@example.com>; Thu, 22 Aug 2002 15:01:22 +0100
|
||||
X-Egroups-Return: sentto-2242572-52739-1030024883-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.67.195] by n34.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 14:01:23 -0000
|
||||
X-Sender: Stewart.Smith@ee.ed.ac.uk
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 14:01:23 -0000
|
||||
Received: (qmail 45116 invoked from network); 22 Aug 2002 14:01:22 -0000
|
||||
Received: from unknown (66.218.66.218) by m2.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 14:01:22 -0000
|
||||
Received: from unknown (HELO postbox.ee.ed.ac.uk) (129.215.80.253) by
|
||||
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 14:01:22 -0000
|
||||
Received: from ee.ed.ac.uk (sxs@dunblane [129.215.34.86]) by
|
||||
postbox.ee.ed.ac.uk (8.11.0/8.11.0) with ESMTP id g7ME1Li02942 for
|
||||
<forteana@yahoogroups.com>; Thu, 22 Aug 2002 15:01:21 +0100 (BST)
|
||||
Message-Id: <3D64EEB0.2050502@ee.ed.ac.uk>
|
||||
Organization: Scottish Microelectronics Centre
|
||||
User-Agent: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.1b) Gecko/20020628
|
||||
X-Accept-Language: en, en-us
|
||||
To: zzzzteana@yahoogroups.com
|
||||
References: <3D64FA3C.13325.63A5960@localhost>
|
||||
From: Stewart Smith <Stewart.Smith@ee.ed.ac.uk>
|
||||
X-Yahoo-Profile: stochasticus
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 15:01:20 +0100
|
||||
Subject: Re: [zzzzteana] Nothing like mama used to make
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
Martin Adamson wrote:
|
||||
>
|
||||
> Isn't it just basically a mixture of beaten egg and bacon (or pancetta,
|
||||
> really)? You mix in the raw egg to the cooked pasta and the heat of the pasta
|
||||
> cooks the egg. That's my understanding.
|
||||
>
|
||||
|
||||
You're probably right, mine's just the same but with the cream added to the
|
||||
eggs. I guess I should try it without. Actually looking on the internet for a
|
||||
recipe I found this one from possibly one of the scariest people I've ever seen,
|
||||
and he's a US Congressman:
|
||||
<http://www.virtualcities.com/ons/me/gov/megvjb1.htm>
|
||||
|
||||
That's one of the worst non-smiles ever.
|
||||
|
||||
Stew
|
||||
ps. Apologies if any of the list's Maine residents voted for this man, you won't
|
||||
do it again once you've seen this pic.
|
||||
|
||||
--
|
||||
Stewart Smith
|
||||
Scottish Microelectronics Centre, University of Edinburgh.
|
||||
http://www.ee.ed.ac.uk/~sxs/
|
||||
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
176
lib/jwz/testdata/0010.4996141de3f21e858c22f88231a9f463.eml
vendored
Normal file
176
lib/jwz/testdata/0010.4996141de3f21e858c22f88231a9f463.eml
vendored
Normal file
@@ -0,0 +1,176 @@
|
||||
From: martin@srv0.ems.ed.ac.uk Thu Aug 22 15:05:07 2002
|
||||
Return-Path: <martin@srv0.ems.ed.ac.uk>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 7A0C347C68
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 10:05:03 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 15:05:03 +0100 (IST)
|
||||
Received: from n34.grp.scd.yahoo.com (n34.grp.scd.yahoo.com
|
||||
[66.218.66.102]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7ME1rZ09290 for <zzzz@example.com>; Thu, 22 Aug 2002 15:01:54 +0100
|
||||
X-Egroups-Return: sentto-2242572-52740-1030024915-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.67.194] by n34.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 14:01:55 -0000
|
||||
X-Sender: martin@srv0.ems.ed.ac.uk
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 14:01:55 -0000
|
||||
Received: (qmail 59494 invoked from network); 22 Aug 2002 14:01:55 -0000
|
||||
Received: from unknown (66.218.66.218) by m12.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 14:01:55 -0000
|
||||
Received: from unknown (HELO haymarket.ed.ac.uk) (129.215.128.53) by
|
||||
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 14:01:54 -0000
|
||||
Received: from srv0.ems.ed.ac.uk (srv0.ems.ed.ac.uk [129.215.117.0]) by
|
||||
haymarket.ed.ac.uk (8.11.6/8.11.6) with ESMTP id g7ME1r313981 for
|
||||
<forteana@yahoogroups.com>; Thu, 22 Aug 2002 15:01:53 +0100 (BST)
|
||||
Received: from EMS-SRV0/SpoolDir by srv0.ems.ed.ac.uk (Mercury 1.44);
|
||||
22 Aug 02 15:01:52 +0000
|
||||
Received: from SpoolDir by EMS-SRV0 (Mercury 1.44); 22 Aug 02 15:01:34 +0000
|
||||
Organization: Management School
|
||||
To: zzzzteana@yahoogroups.com
|
||||
Message-Id: <3D64FCD2.20705.6447320@localhost>
|
||||
Priority: normal
|
||||
X-Mailer: Pegasus Mail for Windows (v4.01)
|
||||
Content-Description: Mail message body
|
||||
From: "Martin Adamson" <martin@srv0.ems.ed.ac.uk>
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 15:01:33 +0100
|
||||
Subject: [zzzzteana] Meaningful sentences
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=ISO-8859-1
|
||||
Content-Transfer-Encoding: 8bit
|
||||
X-MIME-Autoconverted: from quoted-printable to 8bit by dogma.slashnull.org
|
||||
id g7ME1rZ09290
|
||||
|
||||
The Scotsman
|
||||
|
||||
Thu 22 Aug 2002
|
||||
|
||||
Meaningful sentences
|
||||
|
||||
Tracey Lawson
|
||||
|
||||
|
||||
If you ever wanted to look like "one of the most dangerous inmates in prison
|
||||
history", as one judge described Charles Bronson, now<6F>s your chance. Bronson -
|
||||
the serial hostage taker, not the movie star - has written a health and
|
||||
fitness guide in which he shares some of the secrets behind his legendary
|
||||
muscle power.
|
||||
|
||||
Solitary Fitness - a title which bears testament to the fact that Bronson, 48,
|
||||
has spent 24 of his 28 prison years in solitary confinement - explains how he
|
||||
has turned himself into a lean, mean, fitness machine while living 23 hours a
|
||||
day in a space just 12 feet by eight feet, on a diet of scrubs grub and at
|
||||
virtually no cost.
|
||||
|
||||
The book is aimed at those who want to get fabulously fit without spending a
|
||||
fortune on gym memberships, protein supplements or designer trainers, and
|
||||
starts with a fierce attack on some of the expensive myths churned out by the
|
||||
exercise industry.
|
||||
|
||||
"I pick up a fitness mag, I start to laugh and I wipe my arse with it," is the
|
||||
opening paragraph penned by Bronson. "It<49>s a joke and a big con and they call
|
||||
me a criminal!" You can<61>t help feeling he has a point.
|
||||
|
||||
This is not the first book that Bronson has written from behind bars, having
|
||||
already published Birdman Opens His Mind, which features drawings and poems
|
||||
created by Bronson while in prison. And he is not the first prisoner to
|
||||
discover creative expression while residing at Her Majesty<74>s pleasure.
|
||||
|
||||
Jimmy Boyle, the Scots sculptor and novelist, discovered his artistic talents
|
||||
when he was sent to Barlinnie Prison<6F>s famous special unit, which aimed to
|
||||
help inmates put their violent pasts behind them by teaching them how to
|
||||
express their emotions artistically. Boyle was sentenced to life for the
|
||||
murder of "Babs" Rooney in 1967. Once released, he moved to Edinburgh where he
|
||||
has become a respected artist. His first novel, Hero of the Underworld, was
|
||||
published in 1999 and his autobiography, A Sense of Freedom, was made into an
|
||||
award-winning film.
|
||||
|
||||
Hugh Collins was jailed for life in 1977 for the murder of William Mooney in
|
||||
Glasgow, and in his first year in Barlinnie prison stabbed three prison
|
||||
officers, earning him an extra seven-year sentence. But, after being
|
||||
transferred to the same unit that Boyle attended, he learned to sculpt and
|
||||
developed an interest in art. He later published Autobiography of a Murderer,
|
||||
a frank account of Glasgow<6F>s criminal culture in the 1960s, which received
|
||||
critical praise.
|
||||
|
||||
And Lord Archer doesn<73>t seem to have had trouble continuing to write the books
|
||||
that have made him millions while in jail. He recently signed a three-book
|
||||
deal with Macmillan publishers worth a reported <20>10 million, and is no doubt
|
||||
scribbling away as we speak.
|
||||
|
||||
So why is it that men like Collins, Bronson and Boyle, who can be so
|
||||
destructive towards society on the outside, can become so creative once stuck
|
||||
on the inside? Steve Richards, Bronson<6F>s publisher, has published many books
|
||||
about criminal figures and believes the roots of this phenomenon are both
|
||||
pragmatic and profound.
|
||||
|
||||
He says: "Prison is sometimes the first time some criminals will ever have
|
||||
known a stable environment, and this can be the first time they have the
|
||||
chance to focus on their creative skills.
|
||||
|
||||
"It may also be the first time that they have really had the chance of an
|
||||
education, if their early years have been hard. It could be the first time
|
||||
anyone has offered them the chance to explore their creative talents."
|
||||
|
||||
However, Richards believes the reasons are also deeper than that. He says:
|
||||
"Once they are behind bars, the cold light of day hits them, and they examine
|
||||
the very essence of who they are.
|
||||
|
||||
"They ask themselves, am I a man who wants to be remembered for violence? Or
|
||||
am I a man who can contribute to society, who can be remembered for something
|
||||
good?"
|
||||
|
||||
Bronson - who was born Michael Gordon Peterson, but changed his name to that
|
||||
of the Hollywood star of the Death Wish films - has, so far, been remembered
|
||||
mainly for things bad. He was originally jailed for seven years for armed
|
||||
robbery in 1974, and has had a series of sentences added to his original term
|
||||
over the years as a result of attacking people in prison. In 2000 he was
|
||||
jailed for life after being convicted of holding a teacher hostage for nearly
|
||||
two days during a jail siege.
|
||||
|
||||
Standing five feet ten and a half inches tall and weighing 210lbs, he is
|
||||
renowned for his strength. He has bent metal cell doors with his bare hands
|
||||
and does up to 3,000 - yes, 3,000 - press-ups a day. As he puts it: "I can hit
|
||||
a man 20 times in four seconds, I can push 132 press ups in 60 seconds."
|
||||
|
||||
But judging by our current obsession with health and exercise, Solitary
|
||||
Fitness might be the book which will see Bronson<6F>s face sitting on every
|
||||
coffee table in the land. He might be the man to give us the dream body which
|
||||
so many so-called fitness gurus promise but fail to motivate us into. Because
|
||||
Bronson has learned to use words as powerfully as he can use his fists.
|
||||
|
||||
"All this crap about high-protein drinks, pills, diets, it<69>s just a load of
|
||||
bollocks and a multi-million-pound racket," he writes, in what can only be
|
||||
described as a refreshingly honest style. "We can all be fat lazy bastards,
|
||||
it<69>s our choice, I<>m sick of hearing and reading about excuses, if you stuff
|
||||
your face with shit you become shit, that<61>s logical to me."
|
||||
|
||||
As motivational mantras go, that might be just the kick up the, er, backside
|
||||
we all needed.
|
||||
|
||||
|
||||
Solitary Fitness by Charles Bronson is published by Mirage Publishing and will
|
||||
be available in bookstores from October at <20>7.99
|
||||
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
70
lib/jwz/testdata/0012.d354b2d2f24d1036caf1374dd94f4c94.eml
vendored
Normal file
70
lib/jwz/testdata/0012.d354b2d2f24d1036caf1374dd94f4c94.eml
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
From: spamassassin-talk-admin@lists.sourceforge.net Thu Aug 22 15:25:29 2002
|
||||
Return-Path: <spamassassin-talk-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id B48D543F99
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 10:25:28 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 15:25:28 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7MEI8Z09886 for <zzzz-sa@example.com>; Thu, 22 Aug 2002 15:18:08 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17hskl-0002W7-00; Thu,
|
||||
22 Aug 2002 07:16:03 -0700
|
||||
Received: from mail-gr-oh.networksonline.com ([65.163.204.6]) by
|
||||
usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id
|
||||
17hskN-0008Ox-00 for <spamassassin-talk@lists.sourceforge.net>;
|
||||
Thu, 22 Aug 2002 07:15:39 -0700
|
||||
Received: from mordor (mordor.networksonline.com [65.163.204.19]) by
|
||||
mail-gr-oh.networksonline.com (Postfix) with SMTP id C06C537794 for
|
||||
<spamassassin-talk@lists.sourceforge.net>; Thu, 22 Aug 2002 10:13:48 -0400
|
||||
(EDT)
|
||||
Message-Id: <001001c249e6$863c4e00$13cca341@networksonline.com>
|
||||
From: "NOI Administrator" <admin@networksonline.com>
|
||||
To: <spamassassin-talk@example.sourceforge.net>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Priority: 3
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4133.2400
|
||||
Subject: [SAtalk] SA CGI Configurator Scripts
|
||||
Sender: spamassassin-talk-admin@example.sourceforge.net
|
||||
Errors-To: spamassassin-talk-admin@example.sourceforge.net
|
||||
X-Beenthere: spamassassin-talk@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:spamassassin-talk-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:spamassassin-talk@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-talk>,
|
||||
<mailto:spamassassin-talk-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: Talk about SpamAssassin <spamassassin-talk.example.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-talk>,
|
||||
<mailto:spamassassin-talk-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=spamassassin-talk>
|
||||
X-Original-Date: Thu, 22 Aug 2002 10:16:36 -0400
|
||||
Date: Thu, 22 Aug 2002 10:16:36 -0400
|
||||
|
||||
I have been trying to research via SA mirrors and search engines if a canned
|
||||
script exists giving clients access to their user_prefs options via a
|
||||
web-based CGI interface. Numerous ISPs provide this feature to clients, but
|
||||
so far I can find nothing. Our configuration uses Amavis-Postfix and ClamAV
|
||||
for virus filtering and Procmail with SpamAssassin for spam filtering. I
|
||||
would prefer not to have to write a script myself, but will appreciate any
|
||||
suggestions.
|
||||
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by: OSDN - Tired of that same old
|
||||
cell phone? Get a new here for FREE!
|
||||
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
|
||||
_______________________________________________
|
||||
Spamassassin-talk mailing list
|
||||
Spamassassin-talk@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk
|
||||
|
||||
72
lib/jwz/testdata/0013.ff597adee000d073ae72200b0af00cd1.eml
vendored
Normal file
72
lib/jwz/testdata/0013.ff597adee000d073ae72200b0af00cd1.eml
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
From: spamassassin-devel-admin@lists.sourceforge.net Thu Aug 22 15:25:29 2002
|
||||
Return-Path: <spamassassin-devel-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id AE2D043F9B
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 10:25:29 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 15:25:29 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7MENlZ09984 for <zzzz@example.com>; Thu, 22 Aug 2002 15:23:47 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17hsof-00042r-00; Thu,
|
||||
22 Aug 2002 07:20:05 -0700
|
||||
Received: from vivi.uptime.at ([62.116.87.11] helo=mail.uptime.at) by
|
||||
usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id
|
||||
17hsoM-0000Ge-00 for <spamassassin-devel@lists.sourceforge.net>;
|
||||
Thu, 22 Aug 2002 07:19:47 -0700
|
||||
Received: from [192.168.0.4] (chello062178142216.4.14.vie.surfer.at
|
||||
[62.178.142.216]) (authenticated bits=0) by mail.uptime.at (8.12.5/8.12.5)
|
||||
with ESMTP id g7MEI7Vp022036 for
|
||||
<spamassassin-devel@lists.sourceforge.net>; Thu, 22 Aug 2002 16:18:07
|
||||
+0200
|
||||
User-Agent: Microsoft-Entourage/10.0.0.1309
|
||||
From: David H=?ISO-8859-1?B?9g==?=hn <dh@uptime.at>
|
||||
To: <spamassassin-devel@example.sourceforge.net>
|
||||
Message-Id: <B98ABFA4.1F87%dh@uptime.at>
|
||||
MIME-Version: 1.0
|
||||
X-Trusted: YES
|
||||
X-From-Laptop: YES
|
||||
Content-Type: text/plain; charset="US-ASCII"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Mailscanner: Nothing found, baby
|
||||
Subject: [SAdev] Interesting approach to Spam handling..
|
||||
Sender: spamassassin-devel-admin@example.sourceforge.net
|
||||
Errors-To: spamassassin-devel-admin@example.sourceforge.net
|
||||
X-Beenthere: spamassassin-devel@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:spamassassin-devel-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:spamassassin-devel@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
||||
<mailto:spamassassin-devel-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: SpamAssassin Developers <spamassassin-devel.example.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
||||
<mailto:spamassassin-devel-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=spamassassin-devel>
|
||||
X-Original-Date: Thu, 22 Aug 2002 16:19:48 +0200
|
||||
Date: Thu, 22 Aug 2002 16:19:48 +0200
|
||||
|
||||
Hello, have you seen and discussed this article and his approach?
|
||||
|
||||
Thank you
|
||||
|
||||
http://www.paulgraham.com/spam.html
|
||||
-- "Hell, there are no rules here-- we're trying to accomplish something."
|
||||
-- Thomas Alva Edison
|
||||
|
||||
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by: OSDN - Tired of that same old
|
||||
cell phone? Get a new here for FREE!
|
||||
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
|
||||
_______________________________________________
|
||||
Spamassassin-devel mailing list
|
||||
Spamassassin-devel@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/spamassassin-devel
|
||||
|
||||
68
lib/jwz/testdata/0015.a9ff8d7550759f6ab62cc200bdf156e7.eml
vendored
Normal file
68
lib/jwz/testdata/0015.a9ff8d7550759f6ab62cc200bdf156e7.eml
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
From: spamassassin-devel-admin@lists.sourceforge.net Thu Aug 22 16:06:55 2002
|
||||
Return-Path: <spamassassin-devel-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 6B14047C66
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 11:06:53 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 16:06:53 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7MF4sZ11366 for <zzzz@example.com>; Thu, 22 Aug 2002 16:04:54 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17htRL-0005ql-00; Thu,
|
||||
22 Aug 2002 08:00:03 -0700
|
||||
Received: from www.ctyme.com ([209.237.228.10] helo=darwin.ctyme.com) by
|
||||
usw-sf-list1.sourceforge.net with esmtp (Cipher TLSv1:DES-CBC3-SHA:168)
|
||||
(Exim 3.31-VA-mm2 #1 (Debian)) id 17htQZ-0001jw-00 for
|
||||
<spamassassin-devel@lists.sourceforge.net>; Thu, 22 Aug 2002 07:59:15
|
||||
-0700
|
||||
Received: from m206-56.dsl.tsoft.com ([198.144.206.56] helo=perkel.com) by
|
||||
darwin.ctyme.com with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id
|
||||
17htRO-0003Mw-00 for spamassassin-devel@lists.sourceforge.net;
|
||||
Thu, 22 Aug 2002 08:00:06 -0700
|
||||
Message-Id: <3D64FC22.4040409@perkel.com>
|
||||
From: Marc Perkel <marc@perkel.com>
|
||||
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1b)
|
||||
Gecko/20020721
|
||||
X-Accept-Language: en-us, en
|
||||
MIME-Version: 1.0
|
||||
To: spamassassin-devel@example.sourceforge.net
|
||||
Content-Type: text/plain; charset=us-ascii; format=flowed
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Subject: [SAdev] Party in San Francisco tonight
|
||||
Sender: spamassassin-devel-admin@example.sourceforge.net
|
||||
Errors-To: spamassassin-devel-admin@example.sourceforge.net
|
||||
X-Beenthere: spamassassin-devel@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:spamassassin-devel-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:spamassassin-devel@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
||||
<mailto:spamassassin-devel-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: SpamAssassin Developers <spamassassin-devel.example.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
||||
<mailto:spamassassin-devel-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=spamassassin-devel>
|
||||
X-Original-Date: Thu, 22 Aug 2002 07:58:42 -0700
|
||||
Date: Thu, 22 Aug 2002 07:58:42 -0700
|
||||
|
||||
I don't know how make of you are in the Bay Area but EFF is having a benifit
|
||||
party ast the DNA Lounge in San Francisco tonight. Wil Weaton (Wesley Crussher
|
||||
from star Trek TNG) will fight Barney the Dinasour.
|
||||
|
||||
Come on by if you're not doing anything.
|
||||
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by: OSDN - Tired of that same old
|
||||
cell phone? Get a new here for FREE!
|
||||
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
|
||||
_______________________________________________
|
||||
Spamassassin-devel mailing list
|
||||
Spamassassin-devel@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/spamassassin-devel
|
||||
|
||||
79
lib/jwz/testdata/0016.d82758030e304d41fb3f4ebbb7d9dd91.eml
vendored
Normal file
79
lib/jwz/testdata/0016.d82758030e304d41fb3f4ebbb7d9dd91.eml
vendored
Normal file
@@ -0,0 +1,79 @@
|
||||
From: spamassassin-devel-admin@lists.sourceforge.net Thu Aug 22 16:27:25 2002
|
||||
Return-Path: <spamassassin-devel-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id DF2DD43F9B
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 11:27:24 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 16:27:24 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7MFJHZ11964 for <zzzz@example.com>; Thu, 22 Aug 2002 16:19:17 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17htfq-0001G0-00; Thu,
|
||||
22 Aug 2002 08:15:02 -0700
|
||||
Received: from www.ctyme.com ([209.237.228.10] helo=darwin.ctyme.com) by
|
||||
usw-sf-list1.sourceforge.net with esmtp (Cipher TLSv1:DES-CBC3-SHA:168)
|
||||
(Exim 3.31-VA-mm2 #1 (Debian)) id 17htfa-0006Zq-00 for
|
||||
<spamassassin-devel@lists.sourceforge.net>; Thu, 22 Aug 2002 08:14:47
|
||||
-0700
|
||||
Received: from m206-56.dsl.tsoft.com ([198.144.206.56] helo=perkel.com) by
|
||||
darwin.ctyme.com with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id
|
||||
17htgP-0004te-00; Thu, 22 Aug 2002 08:15:37 -0700
|
||||
Message-Id: <3D64FFC4.5010908@perkel.com>
|
||||
From: Marc Perkel <marc@perkel.com>
|
||||
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1b)
|
||||
Gecko/20020721
|
||||
X-Accept-Language: en-us, en
|
||||
MIME-Version: 1.0
|
||||
To: Theo Van Dinter <felicity@kluge.net>
|
||||
Cc: spamassassin-devel@example.sourceforge.net
|
||||
Subject: Re: [SAdev] Live Rule Updates after Release ???
|
||||
References: <3D64F4E8.7040000@perkel.com> <20020822151134.GD6369@kluge.net>
|
||||
Content-Type: text/plain; charset=us-ascii; format=flowed
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Sender: spamassassin-devel-admin@example.sourceforge.net
|
||||
Errors-To: spamassassin-devel-admin@example.sourceforge.net
|
||||
X-Beenthere: spamassassin-devel@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:spamassassin-devel-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:spamassassin-devel@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
||||
<mailto:spamassassin-devel-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: SpamAssassin Developers <spamassassin-devel.example.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
||||
<mailto:spamassassin-devel-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=spamassassin-devel>
|
||||
X-Original-Date: Thu, 22 Aug 2002 08:14:12 -0700
|
||||
Date: Thu, 22 Aug 2002 08:14:12 -0700
|
||||
|
||||
Yes - great minds think alike. But even withput eval rules it would be very
|
||||
useful. It would allow us to respond quickly to spammer's tricks.
|
||||
|
||||
Theo Van Dinter wrote:
|
||||
> On Thu, Aug 22, 2002 at 07:27:52AM -0700, Marc Perkel wrote:
|
||||
>
|
||||
>>Has anyone though of the idea of live updates of rules after release? The
|
||||
>>idea being that the user can run a cron job once a week or so and get the
|
||||
>>new default rule set. This would allow us to react faster to:
|
||||
>
|
||||
>
|
||||
> I suggested this a few months ago. I don't remember the details of what
|
||||
> came out of it except that it would only be useful for non-eval rules
|
||||
> since those require code changes.
|
||||
>
|
||||
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by: OSDN - Tired of that same old
|
||||
cell phone? Get a new here for FREE!
|
||||
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
|
||||
_______________________________________________
|
||||
Spamassassin-devel mailing list
|
||||
Spamassassin-devel@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/spamassassin-devel
|
||||
|
||||
76
lib/jwz/testdata/0017.d81093a2182fc9135df6d9158a8ebfd6.eml
vendored
Normal file
76
lib/jwz/testdata/0017.d81093a2182fc9135df6d9158a8ebfd6.eml
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 22 16:27:21 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 7A28A43F99
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 11:27:21 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 16:27:21 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MFQmZ12280 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 16:26:48 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id QAA07188; Thu, 22 Aug 2002 16:25:32 +0100
|
||||
Received: from moe.jinny.ie ([193.120.171.3]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id QAA07145 for <ilug@linux.ie>; Thu,
|
||||
22 Aug 2002 16:25:24 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host [193.120.171.3] claimed to
|
||||
be moe.jinny.ie
|
||||
Received: from jlooney.jinny.ie (unknown [193.120.171.2]) by moe.jinny.ie
|
||||
(Postfix) with ESMTP id 938BD7FC46; Thu, 22 Aug 2002 16:25:23 +0100 (IST)
|
||||
Received: by jlooney.jinny.ie (Postfix, from userid 500) id 4F57189D;
|
||||
Thu, 22 Aug 2002 16:25:45 +0100 (IST)
|
||||
Date: Thu, 22 Aug 2002 16:25:45 +0100
|
||||
From: "John P. Looney" <valen@tuatha.org>
|
||||
To: linux-raid@vger.kernel.org
|
||||
Cc: ilug@linux.ie
|
||||
Message-Id: <20020822152545.GJ3670@jinny.ie>
|
||||
Reply-To: valen@tuatha.org
|
||||
Mail-Followup-To: linux-raid@vger.kernel.org, ilug@linux.ie
|
||||
References: <200208172056.g7HKuHm05754@raq.iceblink.org>
|
||||
<1029624922.14769.119.camel@atherton> <20020819140815.GY26818@jinny.ie>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Content-Disposition: inline
|
||||
In-Reply-To: <20020819140815.GY26818@jinny.ie>
|
||||
User-Agent: Mutt/1.4i
|
||||
X-Os: Red Hat Linux 7.3/Linux 2.4.18-3
|
||||
X-Url: http://www.redbrick.dcu.ie/~valen
|
||||
X-Gnupg-Publickey: http://www.redbrick.dcu.ie/~valen/public.asc
|
||||
Subject: [ILUG] Re: Problems with RAID1 on cobalt raq3
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
On Mon, Aug 19, 2002 at 03:08:16PM +0100, John P. Looney mentioned:
|
||||
> This is likely because to get it to boot, like the cobalt, I'm actually
|
||||
> passing root=/dev/hda5 to the kernel, not /dev/md0.
|
||||
|
||||
Just to solve this...the reason I was booting the box with
|
||||
root=/dev/hda5, not /dev/md0 was because /dev/md0 wasn't booting - it
|
||||
would barf with 'can't find init'.
|
||||
|
||||
It turns out that this is because I was populating md0 with tar. Which
|
||||
seems to have 'issues' with crosslinked files - for instance, it was
|
||||
trying to make a hard link of glibc.so to hda - and failing. It was only
|
||||
as I did it again with a friend present, that he spotted the errors, and
|
||||
queried them. We noticed that the hard linked files just didn't exist on
|
||||
the new rootfs.
|
||||
|
||||
When we duplicated the filesystems with dump instead of tar, it worked
|
||||
fine, I was able to tell lilo to use root=/dev/md0 and everything worked.
|
||||
|
||||
Woohoo.
|
||||
|
||||
Kate
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
133
lib/jwz/testdata/0019.a8a1b2767e83b3be653e4af0148e1897.eml
vendored
Normal file
133
lib/jwz/testdata/0019.a8a1b2767e83b3be653e4af0148e1897.eml
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
From: fork-admin@xent.com Thu Aug 22 16:37:41 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 5DB9843F99
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 11:37:40 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 16:37:40 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7MFbVZ12617 for <zzzz@example.com>;
|
||||
Thu, 22 Aug 2002 16:37:32 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id D8D5029409A; Thu, 22 Aug 2002 08:35:09 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from sunserver.permafrost.net (u172n16.hfx.eastlink.ca
|
||||
[24.222.172.16]) by xent.com (Postfix) with ESMTP id 3703F294099 for
|
||||
<fork@xent.com>; Thu, 22 Aug 2002 08:34:40 -0700 (PDT)
|
||||
Received: from [192.168.123.179] (helo=permafrost.net) by
|
||||
sunserver.permafrost.net with esmtp (Exim 3.35 #1 (Debian)) id
|
||||
17htxj-0008Ad-00 for <fork@xent.com>; Thu, 22 Aug 2002 12:33:31 -0300
|
||||
Message-Id: <3D6505C3.2020405@permafrost.net>
|
||||
From: Owen Byrne <owen@permafrost.net>
|
||||
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.0.0) Gecko/20020530
|
||||
X-Accept-Language: en-us, en
|
||||
MIME-Version: 1.0
|
||||
To: fork@example.com
|
||||
Subject: The case for spam
|
||||
Content-Type: text/plain; charset=us-ascii; format=flowed
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 12:39:47 -0300
|
||||
|
||||
SpamAssassin is hurting democracy!
|
||||
Owen
|
||||
---------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
http://www.bayarea.com/mld/mercurynews/news/opinion/3900215.htm
|
||||
|
||||
Internet can level the political playing field
|
||||
By Mike McCurry and Larry Purpuro
|
||||
|
||||
NOT many months from now, people across the country will experience one
|
||||
of the great recurring features of American democracy. At shopping
|
||||
malls, on factory floors, at church socials and even on our front
|
||||
stoops, we will be approached by individuals who want to represent us in
|
||||
public office. While chances are high that we won't know them
|
||||
personally, they will walk up to us, offer a handshake and a flier and
|
||||
ask for our votes.
|
||||
|
||||
Just as technology is affecting every other area of communication, it
|
||||
has begun to affect the way political candidates communicate with voters.
|
||||
|
||||
In this year's GOP gubernatorial primary, California Secretary of State
|
||||
Bill Jones, who faced better-funded candidates, acquired the e-mail
|
||||
addresses of more than a million potential California voters and sent
|
||||
each an unsolicited e-mail asking for support.
|
||||
|
||||
That day, he might have chosen any of the more traditional -- and more
|
||||
expensive -- methods of contacting voters, such as direct mail, radio
|
||||
spots or TV ads. But he spent only about 2 cents per message, instead of
|
||||
35 cents or more per message for direct mail or in another medium.
|
||||
|
||||
Had Jones chosen direct mail, radio or TV, that communication would have
|
||||
been equally ``unsolicited,'' as defined in the e-mail world. Few voters
|
||||
would have ``opted in'' to receive campaign information from Jones
|
||||
through any of those channels.
|
||||
|
||||
The response to Jones' e-mail effort, however, was swift and intense. He
|
||||
was lambasted by anti-spam advocates, and media coverage was almost
|
||||
entirely negative. To be fair, some of Jones' tactics could have been
|
||||
refined. He used a less-than-perfect list and no standard-practice
|
||||
``paid for'' disclaimer in the message.
|
||||
|
||||
His detractors, however, attacked him not for his tactical miscues but
|
||||
because the e-mail was sent unsolicited. In fact, Jones' online campaign
|
||||
may have been his most visible asset. In an era of cynicism toward money
|
||||
in politics -- money typically spent on other unsolicited communication
|
||||
mediums -- Jones tried to level the playing field.
|
||||
|
||||
No one likes commercial spam. It is irrelevant and untargeted and can be
|
||||
highly intrusive and even offensive. But as a sophisticated society,
|
||||
it's time to differentiate commercial spam from very different
|
||||
unsolicited e-mail sent by political candidates to voters.
|
||||
|
||||
The debate is particularly relevant in light of legislation in Congress
|
||||
that would constitute the first federal law to directly address spam. We
|
||||
believe e-mail is no more intrusive than direct mail, telemarketing or
|
||||
TV advertising when it comes to politicians seeking to reach voters. A
|
||||
simple link in good e-mail campaigns allows recipients to opt out of
|
||||
future mailings. Direct mail takes at least a phone call or stamp to be
|
||||
taken off a list, and viewers must repeatedly endure TV ads.
|
||||
|
||||
When a candidate lacks a large campaign war chest, he or she can use the
|
||||
Internet to provide constituents with information to better prepare them
|
||||
to perform their civic duty of casting educated votes. With more than 60
|
||||
percent of all potential voters in this country possessing e-mail
|
||||
accounts, it makes sense that political candidates use this medium.
|
||||
|
||||
Candidates might avoid some of the tactical problems encountered by the
|
||||
Jones campaign if they use the technologies available today that better
|
||||
ensure quality of e-mail lists and target content to specific recipient
|
||||
groups.
|
||||
|
||||
But the broader point remains. When a political candidate sends a voter
|
||||
an e-mail, that recipient can choose to delete the message without
|
||||
opening it, unsubscribe from the list, read it or even reply and engage
|
||||
the sender. That choice should belong to the voter -- not to anti-spam
|
||||
advocates whose efforts are better focused on commercial e-mail.
|
||||
Political candidates should be free to communicate with voters as best
|
||||
they can, and let voters decide what to do with that information.
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
Mike McCurry, former press secretary for President Clinton, is CEO of an
|
||||
advocacy management and communications software company. Larry Purpuro,
|
||||
the former Republican National Committee deputy chief of staff, is
|
||||
founder and president of a political e-marketing firm. This was written
|
||||
for the Los Angeles Times.
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
67
lib/jwz/testdata/0020.ef397cef16f8041242e3b6560e168053.eml
vendored
Normal file
67
lib/jwz/testdata/0020.ef397cef16f8041242e3b6560e168053.eml
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
From: iiu-admin@taint.org Thu Aug 22 17:08:44 2002
|
||||
Return-Path: <iiu-admin@taint.org>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id B989743F9B
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 12:08:43 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:08:43 +0100 (IST)
|
||||
Received: from dogma.slashnull.org (localhost [127.0.0.1]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MG0MZ13369;
|
||||
Thu, 22 Aug 2002 17:00:22 +0100
|
||||
Received: from hawk.dcu.ie (mail.dcu.ie [136.206.1.5]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MFxBZ13285 for
|
||||
<iiu@taint.org>; Thu, 22 Aug 2002 16:59:11 +0100
|
||||
Received: from dcu.ie (136.206.21.115) by hawk.dcu.ie (6.0.040) id
|
||||
3D6203D3000136AD for iiu@taint.org; Thu, 22 Aug 2002 16:59:17 +0100
|
||||
Message-Id: <3D650A2D.1000301@dcu.ie>
|
||||
From: Bernard Michael Tyers <bernard.tyers@dcu.ie>
|
||||
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.0)
|
||||
Gecko/20020530
|
||||
X-Accept-Language: ga, en-ie, eu, en-us, de-at, as
|
||||
MIME-Version: 1.0
|
||||
To: iiu <iiu@taint.org>
|
||||
Content-Type: text/plain; charset=us-ascii; format=flowed
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Subject: [IIU] Eircom aDSL Nat'ing
|
||||
Sender: iiu-admin@taint.org
|
||||
Errors-To: iiu-admin@taint.org
|
||||
X-Beenthere: iiu@iiu.taint.org
|
||||
X-Mailman-Version: 2.0.10
|
||||
Precedence: bulk
|
||||
Reply-To: iiu@taint.org
|
||||
List-Unsubscribe: <http://iiu.taint.org/mailman/listinfo/iiu>,
|
||||
<mailto:iiu-request@iiu.taint.org?subject=unsubscribe>
|
||||
List-Id: Irish Internet Users <iiu.iiu.taint.org>
|
||||
List-Post: <mailto:iiu@iiu.taint.org>
|
||||
List-Help: <mailto:iiu-request@iiu.taint.org?subject=help>
|
||||
List-Subscribe: <http://iiu.taint.org/mailman/listinfo/iiu>,
|
||||
<mailto:iiu-request@iiu.taint.org?subject=subscribe>
|
||||
List-Archive: <http://iiu.taint.org/pipermail/iiu/>
|
||||
Date: Thu, 22 Aug 2002 16:58:37 +0100
|
||||
|
||||
Hi all,
|
||||
|
||||
apologies for the possible silly question (i don't think it is, but),
|
||||
but is Eircom's aDSL service NAT'ed?
|
||||
|
||||
and what implications would that have for VoIP? I know there are
|
||||
difficulties with VoIP or connecting to clients connected to a NAT'ed
|
||||
network from the internet wild (i.e. machines with static, real IPs)
|
||||
|
||||
any help pointers would be helpful,
|
||||
|
||||
cheers
|
||||
--
|
||||
rgrds,
|
||||
Bernard
|
||||
--
|
||||
Bernard Tyers * National Centre for Sensor Research * P:353-1-700-5273 *
|
||||
E: bernard.tyers@dcu.ie * W: www.physics.dcu.ie/~bty * L:N117
|
||||
|
||||
_______________________________________________
|
||||
IIU mailing list
|
||||
IIU@iiu.taint.org
|
||||
http://iiu.taint.org/mailman/listinfo/iiu
|
||||
|
||||
81
lib/jwz/testdata/0021.f8e73bdba7277d967af4d561f0402129.eml
vendored
Normal file
81
lib/jwz/testdata/0021.f8e73bdba7277d967af4d561f0402129.eml
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
From: robert.chambers@baesystems.com Thu Aug 22 17:19:36 2002
|
||||
Return-Path: <robert.chambers@baesystems.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id F2AD843F99
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 12:19:25 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:19:26 +0100 (IST)
|
||||
Received: from n8.grp.scd.yahoo.com (n8.grp.scd.yahoo.com [66.218.66.92])
|
||||
by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id g7MGBSZ13944 for
|
||||
<zzzz@example.com>; Thu, 22 Aug 2002 17:11:28 +0100
|
||||
X-Egroups-Return: sentto-2242572-52742-1030032689-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.67.196] by n8.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 16:11:29 -0000
|
||||
X-Sender: robert.chambers@baesystems.com
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 16:11:28 -0000
|
||||
Received: (qmail 71045 invoked from network); 22 Aug 2002 16:11:28 -0000
|
||||
Received: from unknown (66.218.66.217) by m3.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 16:11:28 -0000
|
||||
Received: from unknown (HELO n19.grp.scd.yahoo.com) (66.218.66.74) by
|
||||
mta2.grp.scd.yahoo.com with SMTP; 22 Aug 2002 16:11:28 -0000
|
||||
Received: from [66.218.67.174] by n19.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 16:11:27 -0000
|
||||
To: zzzzteana@yahoogroups.com
|
||||
Message-Id: <ak32ff+rh64@eGroups.com>
|
||||
In-Reply-To: <000701c248f5$1cd98500$508827d9@b5w3e9>
|
||||
User-Agent: eGroups-EW/0.82
|
||||
X-Mailer: Yahoo Groups Message Poster
|
||||
From: "uncle_slacky" <robert.chambers@baesystems.com>
|
||||
X-Originating-Ip: 20.138.254.2
|
||||
X-Yahoo-Profile: uncle_slacky
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 16:11:27 -0000
|
||||
Subject: [zzzzteana] Re: Australian Catholic Kiddie Perv Steps Aside
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
--- In forteana@y..., "D.McMann" <dmcmann@b...> wrote:
|
||||
> Robert Moaby, 33, who sent death threats to staff, was also jailed
|
||||
> for hoarding indecent pictures of children on his home computer.
|
||||
> =========
|
||||
>
|
||||
> Hmm, if I didn't trust our government and secret police, I could
|
||||
look at
|
||||
> this another way....
|
||||
|
||||
There is a bit of circumstantial evidence - apparently some MT
|
||||
listers were approached by him (via email) - a little research in
|
||||
dejanews/google groups showed a number of messages from him, clearly
|
||||
hoping to contact girls, appearing in "alt.teens" and similar groups -
|
||||
I just tried a Google Groups search on "Robert Moaby" and some of
|
||||
them came top of the list.
|
||||
|
||||
Note for Marie - "MT" stands for Mark Thomas, a slightly slimmer, UK
|
||||
version of your Michael Moore - the mailing list is named after him.
|
||||
|
||||
Rob
|
||||
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
75
lib/jwz/testdata/0022.7241da4491c49b50c0470a3638ee35c4.eml
vendored
Normal file
75
lib/jwz/testdata/0022.7241da4491c49b50c0470a3638ee35c4.eml
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 22 17:19:31 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 6622747C69
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 12:19:23 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:19:23 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MGJoZ14241 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 17:19:50 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id RAA09942; Thu, 22 Aug 2002 17:18:58 +0100
|
||||
Received: from smtpstore.strencom.net (ns1.strencom.net [217.75.0.66]) by
|
||||
lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id RAA09917 for <ilug@linux.ie>;
|
||||
Thu, 22 Aug 2002 17:18:50 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host ns1.strencom.net
|
||||
[217.75.0.66] claimed to be smtpstore.strencom.net
|
||||
Received: from enterprise.wasptech.com (mail.wasptech.com [217.75.2.106])
|
||||
by smtpstore.strencom.net (Postfix) with ESMTP id 8C105CEE88;
|
||||
Thu, 22 Aug 2002 16:31:15 +0000 (AZOST)
|
||||
X-Mimeole: Produced By Microsoft Exchange V6.0.5762.3
|
||||
Content-Class: urn:content-classes:message
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="us-ascii"
|
||||
Subject: RE: [ILUG] Sun Solaris..
|
||||
Date: Thu, 22 Aug 2002 17:13:01 +0100
|
||||
Message-Id: <45130FBE2F203649A4BABDB848A9C9D00E9C8A@enterprise.wasptech.com>
|
||||
X-MS-Has-Attach:
|
||||
X-MS-Tnef-Correlator:
|
||||
Thread-Topic: [ILUG] Sun Solaris..
|
||||
Thread-Index: AcJJ9p29v19nVAypRv25aSssWGeNQAAABtrw
|
||||
From: "Fergal Moran" <fergal.moran@wasptech.com>
|
||||
To: "Kiall Mac Innes" <kiall@redpie.com>, "ILUG" <ilug@linux.ie>
|
||||
Content-Transfer-Encoding: 8bit
|
||||
X-MIME-Autoconverted: from quoted-printable to 8bit by lugh.tuatha.org id
|
||||
RAA09917
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
In a nutshell - Solaris is Suns own flavour of UNIX.
|
||||
|
||||
> -----Original Message-----
|
||||
> From: Kiall Mac Innes [mailto:kiall@redpie.com]
|
||||
> Sent: 22 August 2002 17:23
|
||||
> To: ILUG
|
||||
> Subject: [ILUG] Sun Solaris..
|
||||
>
|
||||
>
|
||||
> Can someone explain what type of operating system Solaris
|
||||
> is... as ive never seen or used it i dont know wheather to
|
||||
> get a server from Sun or from DELL i would prefer a linux
|
||||
> based server and Sun seems to be the one for that but im not
|
||||
> sure if Solaris is a distro of linux or a completely
|
||||
> different operating system? can someone explain...
|
||||
>
|
||||
> Kiall Mac Innes
|
||||
>
|
||||
>
|
||||
> --
|
||||
> Irish Linux Users' Group: ilug@linux.ie
|
||||
> http://www.linux.ie/mailman/listinfo/ilug for
|
||||
> (un)subscription information. List maintainer: listmaster@linux.ie
|
||||
>
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
65
lib/jwz/testdata/0023.b4a61a2990263e8825246e41a8d78399.eml
vendored
Normal file
65
lib/jwz/testdata/0023.b4a61a2990263e8825246e41a8d78399.eml
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
From: robert.chambers@baesystems.com Thu Aug 22 17:19:36 2002
|
||||
Return-Path: <robert.chambers@baesystems.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id C1E1343F9B
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 12:19:26 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:19:26 +0100 (IST)
|
||||
Received: from n23.grp.scd.yahoo.com (n23.grp.scd.yahoo.com
|
||||
[66.218.66.79]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7MGHeZ14192 for <zzzz@example.com>; Thu, 22 Aug 2002 17:17:41 +0100
|
||||
X-Egroups-Return: sentto-2242572-52743-1030033059-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.67.201] by n23.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 16:17:41 -0000
|
||||
X-Sender: robert.chambers@baesystems.com
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 16:17:39 -0000
|
||||
Received: (qmail 96345 invoked from network); 22 Aug 2002 16:17:38 -0000
|
||||
Received: from unknown (66.218.66.218) by m9.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 16:17:38 -0000
|
||||
Received: from unknown (HELO n10.grp.scd.yahoo.com) (66.218.66.65) by
|
||||
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 16:17:40 -0000
|
||||
Received: from [66.218.67.189] by n10.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 16:17:40 -0000
|
||||
To: zzzzteana@yahoogroups.com
|
||||
Message-Id: <ak32r3+4q45@eGroups.com>
|
||||
User-Agent: eGroups-EW/0.82
|
||||
X-Mailer: Yahoo Groups Message Poster
|
||||
From: "uncle_slacky" <robert.chambers@baesystems.com>
|
||||
X-Originating-Ip: 20.138.254.2
|
||||
X-Yahoo-Profile: uncle_slacky
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 16:17:39 -0000
|
||||
Subject: [zzzzteana] Which Muppet Are You?
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
Apols if this has been posted before:
|
||||
|
||||
http://www.pinkpaperclips.net/subs/quiz2.html
|
||||
|
||||
Rob
|
||||
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
56
lib/jwz/testdata/0024.771af861a302951df7630ec4ff1965a2.eml
vendored
Normal file
56
lib/jwz/testdata/0024.771af861a302951df7630ec4ff1965a2.eml
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 22 17:19:25 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id CD34B47C67
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 12:19:21 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:19:21 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MGHJZ14177 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 17:17:19 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id RAA09581; Thu, 22 Aug 2002 17:16:28 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from redpie.com (redpie.com [216.122.135.208] (may be forged))
|
||||
by lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id RAA09518 for
|
||||
<ilug@linux.ie>; Thu, 22 Aug 2002 17:16:08 +0100
|
||||
Received: from justin ([194.46.28.223]) by redpie.com (8.8.7/8.8.5) with
|
||||
SMTP id JAA05201 for <ilug@linux.ie>; Thu, 22 Aug 2002 09:15:59 -0700
|
||||
(PDT)
|
||||
From: "Kiall Mac Innes" <kiall@redpie.com>
|
||||
To: "ILUG" <ilug@linux.ie>
|
||||
Date: Thu, 22 Aug 2002 17:23:15 +0100
|
||||
Message-Id: <BCEFLMCEIJHPCPLGADJIGEEFCAAA.kiall@redpie.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Priority: 3 (Normal)
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4522.1200
|
||||
Importance: Normal
|
||||
Subject: [ILUG] Sun Solaris..
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
Can someone explain what type of operating system Solaris is... as ive never
|
||||
seen or used it i dont know wheather to get a server from Sun or from DELL i
|
||||
would prefer a linux based server and Sun seems to be the one for that but
|
||||
im not sure if Solaris is a distro of linux or a completely different
|
||||
operating system? can someone explain...
|
||||
|
||||
Kiall Mac Innes
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
67
lib/jwz/testdata/0025.64d0382de54b9e4c5b4200173133b8d7.eml
vendored
Normal file
67
lib/jwz/testdata/0025.64d0382de54b9e4c5b4200173133b8d7.eml
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
From: timc@2ubh.com Thu Aug 22 17:31:00 2002
|
||||
Return-Path: <timc@2ubh.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id A97BE43F99
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 12:30:58 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:30:58 +0100 (IST)
|
||||
Received: from n17.grp.scd.yahoo.com (n17.grp.scd.yahoo.com
|
||||
[66.218.66.72]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7MGOFZ14344 for <zzzz@example.com>; Thu, 22 Aug 2002 17:24:16 +0100
|
||||
X-Egroups-Return: sentto-2242572-52744-1030033454-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.67.201] by n17.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 16:24:16 -0000
|
||||
X-Sender: timc@2ubh.com
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 16:24:14 -0000
|
||||
Received: (qmail 12796 invoked from network); 22 Aug 2002 16:24:13 -0000
|
||||
Received: from unknown (66.218.66.216) by m9.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 16:24:13 -0000
|
||||
Received: from unknown (HELO carbon) (194.73.73.92) by
|
||||
mta1.grp.scd.yahoo.com with SMTP; 22 Aug 2002 16:24:15 -0000
|
||||
Received: from host217-36-23-185.in-addr.btopenworld.com ([217.36.23.185])
|
||||
by carbon with esmtp (Exim 3.22 #8) id 17huko-0000JF-00 for
|
||||
forteana@yahoogroups.com; Thu, 22 Aug 2002 17:24:14 +0100
|
||||
X-Mailer: Microsoft Outlook Express Macintosh Edition - 4.5 (0410)
|
||||
To: zzzzteana@yahoogroups.com
|
||||
X-Priority: 3
|
||||
Message-Id: <E17huko-0000JF-00@carbon>
|
||||
From: "Tim Chapman" <timc@2ubh.com>
|
||||
X-Yahoo-Profile: tim2ubh
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 17:23:28 +0100
|
||||
Subject: Re: [zzzzteana] Which Muppet Are You?
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
> Apols if this has been posted before:
|
||||
>
|
||||
> http://www.pinkpaperclips.net/subs/quiz2.html
|
||||
>
|
||||
So, anyone who isn't Beaker?
|
||||
|
||||
TimC
|
||||
Meep
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
80
lib/jwz/testdata/0026.6baf1aea162ccb9a6e9f142c0715ceb4.eml
vendored
Normal file
80
lib/jwz/testdata/0026.6baf1aea162ccb9a6e9f142c0715ceb4.eml
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 22 17:45:53 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 08BC143F99
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 12:45:53 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:45:53 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MGbKZ14933 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 17:37:20 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id RAA10694; Thu, 22 Aug 2002 17:36:27 +0100
|
||||
Received: from moe.jinny.ie ([193.120.171.3]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id RAA10669 for <ilug@linux.ie>; Thu,
|
||||
22 Aug 2002 17:36:20 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host [193.120.171.3] claimed to
|
||||
be moe.jinny.ie
|
||||
Received: from jlooney.jinny.ie (unknown [193.120.171.2]) by moe.jinny.ie
|
||||
(Postfix) with ESMTP id C906A7FC48 for <ilug@linux.ie>; Thu,
|
||||
22 Aug 2002 17:36:19 +0100 (IST)
|
||||
Received: by jlooney.jinny.ie (Postfix, from userid 500) id 09E7E8B1;
|
||||
Thu, 22 Aug 2002 17:36:42 +0100 (IST)
|
||||
Date: Thu, 22 Aug 2002 17:36:41 +0100
|
||||
From: "John P. Looney" <valen@tuatha.org>
|
||||
To: ILUG <ilug@linux.ie>
|
||||
Subject: Re: [ILUG] Sun Solaris..
|
||||
Message-Id: <20020822163641.GN3670@jinny.ie>
|
||||
Reply-To: ilug@linux.ie
|
||||
Mail-Followup-To: ILUG <ilug@linux.ie>
|
||||
References: <45130FBE2F203649A4BABDB848A9C9D00E9C8A@enterprise.wasptech.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Content-Disposition: inline
|
||||
In-Reply-To: <45130FBE2F203649A4BABDB848A9C9D00E9C8A@enterprise.wasptech.com>
|
||||
User-Agent: Mutt/1.4i
|
||||
X-Os: Red Hat Linux 7.3/Linux 2.4.18-3
|
||||
X-Url: http://www.redbrick.dcu.ie/~valen
|
||||
X-Gnupg-Publickey: http://www.redbrick.dcu.ie/~valen/public.asc
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
On Thu, Aug 22, 2002 at 05:13:01PM +0100, Fergal Moran mentioned:
|
||||
> In a nutshell - Solaris is Suns own flavour of UNIX.
|
||||
|
||||
Though I'm sure that this nice person would like a bit more detail.
|
||||
|
||||
Solaris is quite different to Linux, though these days you can make
|
||||
solaris act a lot like linux with an extra CD of GNU tools Sun ship with
|
||||
solaris. It is based on the SysV unix family, so it's quite similar to
|
||||
other unixen like HPUX and SCO.
|
||||
|
||||
Sun's hardware in general is more reliable, and a lot more expensive. One
|
||||
of the main bonuses you get by buying Sun is that you are getting your
|
||||
hardware and software from one company, so if you have a support contract,
|
||||
they have to fix it. They can't fob you off with 'that's a software
|
||||
problem, talk to the software vendor.' etc.
|
||||
|
||||
If you are set on Linux, you most likely can do your own support. There
|
||||
is then a world of different hardware options. You can run Linux on Sparc,
|
||||
though some companies like RedHat don't maintain a sparc port anymore.
|
||||
|
||||
You can also buy your machine from linux-oriented companies like DNUK,
|
||||
who do machines designed to run linux, and their own version of linux,
|
||||
that has a few extras for their machines. Or, you can get a machine from a
|
||||
cheaper company like Dell, and it'll most likely work, most of the time.
|
||||
|
||||
John
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
84
lib/jwz/testdata/0027.11da06d9130a188bf0ffb2060881dbe9.eml
vendored
Normal file
84
lib/jwz/testdata/0027.11da06d9130a188bf0ffb2060881dbe9.eml
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 22 17:45:54 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id E8B1343F9B
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 12:45:53 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:45:53 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MGjVZ15193 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 17:45:31 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id RAA11100; Thu, 22 Aug 2002 17:42:54 +0100
|
||||
Received: from corvil.com. (k100-159.bas1.dbn.dublin.eircom.net
|
||||
[159.134.100.159]) by lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id RAA11076
|
||||
for <ilug@linux.ie>; Thu, 22 Aug 2002 17:42:46 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host k100-159.bas1.dbn.dublin.eircom.net
|
||||
[159.134.100.159] claimed to be corvil.com.
|
||||
Received: from corvil.com (pixelbeat.local.corvil.com [172.18.1.170]) by
|
||||
corvil.com. (8.12.5/8.12.5) with ESMTP id g7MGgjn4090705 for
|
||||
<ilug@linux.ie>; Thu, 22 Aug 2002 17:42:46 +0100 (IST) (envelope-from
|
||||
padraig.brady@corvil.com)
|
||||
Message-Id: <3D651472.7080101@corvil.com>
|
||||
Date: Thu, 22 Aug 2002 17:42:26 +0100
|
||||
From: Padraig Brady <padraig.brady@corvil.com>
|
||||
Organization: Corvil Networks
|
||||
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020408
|
||||
X-Accept-Language: en-us, en
|
||||
MIME-Version: 1.0
|
||||
To: ilug@linux.ie
|
||||
Subject: Re: [ILUG] Sun Solaris..
|
||||
References: <45130FBE2F203649A4BABDB848A9C9D00E9C8A@enterprise.wasptech.com>
|
||||
<20020822163641.GN3670@jinny.ie>
|
||||
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
|
||||
Content-Transfer-Encoding: 8bit
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
John P. Looney wrote:
|
||||
> On Thu, Aug 22, 2002 at 05:13:01PM +0100, Fergal Moran mentioned:
|
||||
>
|
||||
>>In a nutshell - Solaris is Suns own flavour of UNIX.
|
||||
>
|
||||
>
|
||||
> Though I'm sure that this nice person would like a bit more detail.
|
||||
>
|
||||
> Solaris is quite different to Linux, though these days you can make
|
||||
> solaris act a lot like linux with an extra CD of GNU tools Sun ship with
|
||||
> solaris. It is based on the SysV unix family, so it's quite similar to
|
||||
> other unixen like HPUX and SCO.
|
||||
>
|
||||
> Sun's hardware in general is more reliable, and a lot more expensive. One
|
||||
> of the main bonuses you get by buying Sun is that you are getting your
|
||||
> hardware and software from one company, so if you have a support contract,
|
||||
> they have to fix it. They can't fob you off with 'that's a software
|
||||
> problem, talk to the software vendor.' etc.
|
||||
>
|
||||
> If you are set on Linux, you most likely can do your own support. There
|
||||
> is then a world of different hardware options. You can run Linux on Sparc,
|
||||
> though some companies like RedHat don't maintain a sparc port anymore.
|
||||
>
|
||||
> You can also buy your machine from linux-oriented companies like DNUK,
|
||||
> who do machines designed to run linux, and their own version of linux,
|
||||
> that has a few extras for their machines. Or, you can get a machine from a
|
||||
> cheaper company like Dell, and it'll most likely work, most of the time.
|
||||
|
||||
Why do you say Dell is cheaper than DNUK?
|
||||
|
||||
It gets a bit complicated though!
|
||||
http://www.levenez.com/unix/history.html
|
||||
|
||||
P<EFBFBD>draig.
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
160
lib/jwz/testdata/0028.54cf7aa229456fb33194b3a12a713e3e.eml
vendored
Normal file
160
lib/jwz/testdata/0028.54cf7aa229456fb33194b3a12a713e3e.eml
vendored
Normal file
@@ -0,0 +1,160 @@
|
||||
From: exmh-workers-admin@redhat.com Thu Aug 22 18:17:16 2002
|
||||
Return-Path: <exmh-workers-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 3936F43F9B
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 13:17:16 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 18:17:16 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MHCFZ16258 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 18:12:15 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id 98CA240F20; Thu, 22 Aug 2002
|
||||
13:08:54 -0400 (EDT)
|
||||
Delivered-To: exmh-workers@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 163BD3F5C4
|
||||
for <exmh-workers@listman.redhat.com>; Thu, 22 Aug 2002 12:55:20 -0400
|
||||
(EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MGtHh14426 for exmh-workers@listman.redhat.com; Thu, 22 Aug 2002
|
||||
12:55:17 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MGtGY14422 for
|
||||
<exmh-workers@redhat.com>; Thu, 22 Aug 2002 12:55:16 -0400
|
||||
Received: from milou.dyndns.org (h189n1fls22o974.telia.com
|
||||
[213.64.79.189]) by mx1.redhat.com (8.11.6/8.11.6) with SMTP id
|
||||
g7MGekl27238 for <exmh-workers@redhat.com>; Thu, 22 Aug 2002 12:40:46
|
||||
-0400
|
||||
Received: by milou.dyndns.org (Postfix, from userid 500) id 1F95B3F24;
|
||||
Thu, 22 Aug 2002 18:55:08 +0200 (CEST)
|
||||
Received: from tippex.localdomain (localhost [127.0.0.1]) by
|
||||
milou.dyndns.org (Postfix) with ESMTP id F3AA03F23; Thu, 22 Aug 2002
|
||||
18:55:08 +0200 (CEST)
|
||||
X-Mailer: exmh version 2.5_20020822 01/15/2001 with nmh-1.0.4
|
||||
To: Chris Garrigues <cwg-dated-1030460376.49ef5a@DeepEddy.Com>
|
||||
Cc: exmh-workers@example.com
|
||||
Subject: Re: CVS report
|
||||
In-Reply-To: Message from Chris Garrigues
|
||||
<cwg-dated-1030460376.49ef5a@DeepEddy.Com> of
|
||||
"Thu, 22 Aug 2002 09:59:35 CDT."
|
||||
<1030028377.4901.TMDA@deepeddy.vircio.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
From: Anders Eriksson <aeriksson@fastmail.fm>
|
||||
Message-Id: <20020822165508.1F95B3F24@milou.dyndns.org>
|
||||
X-Loop: exmh-workers@example.com
|
||||
Sender: exmh-workers-admin@example.com
|
||||
Errors-To: exmh-workers-admin@example.com
|
||||
X-Beenthere: exmh-workers@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:exmh-workers-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-workers@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
||||
Date: Thu, 22 Aug 2002 18:55:03 +0200
|
||||
|
||||
|
||||
|
||||
|
||||
> > > > Just cvs up'ed and nowadays Catch-up Unseen is __extremely__ slow on
|
||||
> > > > large (>100 msgs) unseen sequences. Anybody else having this problem?
|
||||
> > >
|
||||
> > > I'll take the blame.
|
||||
> > >
|
||||
> > > The reason, I suspect, is that we're needlessly reading the .sequences file
|
||||
> > > multiple times because of other sequences. I need to make the code much
|
||||
> > > smarter about handling that file, but first I have a few other fish to fry in
|
||||
> > > my rather large patch that's on it's way.
|
||||
> > >
|
||||
> >
|
||||
> > No panic,
|
||||
> >
|
||||
> > I'm all for cleaning things up before getting it optimized.
|
||||
>
|
||||
> Okay, this fix is now checked in.
|
||||
>
|
||||
I'm afraid it didn't help. It still seems to be slower than ~1 month
|
||||
ago. Maybe slightly faster than yeasterday. I'm (still) seeing an
|
||||
"unseen countdown" in the log.
|
||||
|
||||
18:51:25 Writing /home/ander/Mail/lists/l-k/.mh_sequences
|
||||
18:51:25 lists/l-k has 57 msgs in unseen
|
||||
18:51:25 lists/l-k has 56 msgs in unseen
|
||||
18:51:25 lists/l-k has 55 msgs in unseen
|
||||
18:51:26 lists/l-k has 54 msgs in unseen
|
||||
18:51:26 lists/l-k has 53 msgs in unseen
|
||||
18:51:26 lists/l-k has 52 msgs in unseen
|
||||
18:51:26 lists/l-k has 51 msgs in unseen
|
||||
18:51:26 lists/l-k has 50 msgs in unseen
|
||||
18:51:26 lists/l-k has 49 msgs in unseen
|
||||
18:51:26 lists/l-k has 48 msgs in unseen
|
||||
18:51:26 lists/l-k has 47 msgs in unseen
|
||||
18:51:26 lists/l-k has 46 msgs in unseen
|
||||
18:51:26 lists/l-k has 45 msgs in unseen
|
||||
18:51:27 lists/l-k has 44 msgs in unseen
|
||||
18:51:27 lists/l-k has 43 msgs in unseen
|
||||
18:51:27 lists/l-k has 42 msgs in unseen
|
||||
18:51:27 lists/l-k has 41 msgs in unseen
|
||||
18:51:27 lists/l-k has 40 msgs in unseen
|
||||
18:51:27 lists/l-k has 39 msgs in unseen
|
||||
18:51:27 lists/l-k has 38 msgs in unseen
|
||||
18:51:27 lists/l-k has 37 msgs in unseen
|
||||
18:51:27 lists/l-k has 36 msgs in unseen
|
||||
18:51:28 lists/l-k has 35 msgs in unseen
|
||||
18:51:28 lists/l-k has 34 msgs in unseen
|
||||
18:51:28 lists/l-k has 33 msgs in unseen
|
||||
18:51:28 lists/l-k has 32 msgs in unseen
|
||||
18:51:28 lists/l-k has 31 msgs in unseen
|
||||
18:51:28 lists/l-k has 30 msgs in unseen
|
||||
18:51:28 lists/l-k has 29 msgs in unseen
|
||||
18:51:28 lists/l-k has 28 msgs in unseen
|
||||
18:51:28 lists/l-k has 27 msgs in unseen
|
||||
18:51:28 lists/l-k has 26 msgs in unseen
|
||||
18:51:29 lists/l-k has 25 msgs in unseen
|
||||
18:51:29 lists/l-k has 24 msgs in unseen
|
||||
18:51:29 lists/l-k has 23 msgs in unseen
|
||||
18:51:29 lists/l-k has 22 msgs in unseen
|
||||
18:51:29 lists/l-k has 21 msgs in unseen
|
||||
18:51:29 lists/l-k has 20 msgs in unseen
|
||||
18:51:29 lists/l-k has 19 msgs in unseen
|
||||
18:51:29 lists/l-k has 18 msgs in unseen
|
||||
18:51:29 lists/l-k has 17 msgs in unseen
|
||||
18:51:29 lists/l-k has 16 msgs in unseen
|
||||
18:51:30 lists/l-k has 15 msgs in unseen
|
||||
18:51:30 lists/l-k has 14 msgs in unseen
|
||||
18:51:30 lists/l-k has 13 msgs in unseen
|
||||
18:51:30 lists/l-k has 12 msgs in unseen
|
||||
18:51:30 lists/l-k has 11 msgs in unseen
|
||||
18:51:30 lists/l-k has 10 msgs in unseen
|
||||
18:51:30 lists/l-k has 9 msgs in unseen
|
||||
18:51:30 digits changed
|
||||
18:51:30 lists/l-k has 8 msgs in unseen
|
||||
18:51:30 lists/l-k has 7 msgs in unseen
|
||||
18:51:31 lists/l-k has 6 msgs in unseen
|
||||
18:51:31 lists/l-k has 5 msgs in unseen
|
||||
18:51:31 lists/l-k has 4 msgs in unseen
|
||||
18:51:31 lists/l-k has 3 msgs in unseen
|
||||
18:51:31 lists/l-k has 2 msgs in unseen
|
||||
18:51:31 lists/l-k has 1 msgs in unseen
|
||||
18:51:31 lists/l-k has 0 msgs in unseen
|
||||
18:51:31 FlistUnseenFolder lists/l-k
|
||||
18:51:31 ok
|
||||
18:51:47 Folder_Change lists/exmh {Msg_Show cur}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-workers mailing list
|
||||
Exmh-workers@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
||||
|
||||
104
lib/jwz/testdata/0029.7119e865bff73aca46681d96a451cb60.eml
vendored
Normal file
104
lib/jwz/testdata/0029.7119e865bff73aca46681d96a451cb60.eml
vendored
Normal file
@@ -0,0 +1,104 @@
|
||||
From: lejones@ucla.edu Thu Aug 22 18:29:58 2002
|
||||
Return-Path: <lejones@ucla.edu>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 89B2943F99
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 13:29:49 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 18:29:49 +0100 (IST)
|
||||
Received: from n32.grp.scd.yahoo.com (n32.grp.scd.yahoo.com
|
||||
[66.218.66.100]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7MHK2Z16822 for <zzzz@example.com>; Thu, 22 Aug 2002 18:20:02 +0100
|
||||
X-Egroups-Return: sentto-2242572-52757-1030036801-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.67.201] by n32.grp.scd.yahoo.com with NNFMP;
|
||||
22 Aug 2002 17:20:03 -0000
|
||||
X-Sender: lejones@ucla.edu
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 17:20:01 -0000
|
||||
Received: (qmail 45255 invoked from network); 22 Aug 2002 17:19:58 -0000
|
||||
Received: from unknown (66.218.66.218) by m9.grp.scd.yahoo.com with QMQP;
|
||||
22 Aug 2002 17:19:58 -0000
|
||||
Received: from unknown (HELO periwinkle.noc.ucla.edu) (169.232.47.11) by
|
||||
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 17:20:00 -0000
|
||||
Received: from tigerlily.noc.ucla.edu (tigerlily.noc.ucla.edu
|
||||
[169.232.46.12]) by periwinkle.noc.ucla.edu (8.12.5/8.12.5) with ESMTP id
|
||||
g7MHK0p0011232 for <forteana@yahoogroups.com>; Thu, 22 Aug 2002 10:20:00
|
||||
-0700
|
||||
Received: from leslie (ca-stmnca-cuda1-blade1a-115.stmnca.adelphia.net
|
||||
[68.65.192.115]) (authenticated bits=0) by tigerlily.noc.ucla.edu
|
||||
(8.12.3/8.12.3) with ESMTP id g7MHJxJA019627 for
|
||||
<forteana@yahoogroups.com>; Thu, 22 Aug 2002 10:19:59 -0700
|
||||
Message-Id: <005801c24a00$1e226060$73c04144@leslie>
|
||||
To: <zzzzteana@yahoogroups.com>
|
||||
References: <000001c249ff$50bc96e0$da514ed5@roswell>
|
||||
X-Priority: 3
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000
|
||||
From: "leslie ellen jones" <lejones@ucla.edu>
|
||||
X-Yahoo-Profile: luned23
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 22 Aug 2002 10:19:48 -0700
|
||||
Subject: Re: [zzzzteana] Which Muppet Are You?
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
Hey, it's not easy being green.
|
||||
|
||||
leslie
|
||||
|
||||
Leslie Ellen Jones, Ph.D.
|
||||
Jack of All Trades and Doctor of Folklore
|
||||
lejones@ucla.edu
|
||||
|
||||
"Truth is an odd number" -- Flann O'Brien
|
||||
----- Original Message -----
|
||||
From: Dino
|
||||
To: zzzzteana@yahoogroups.com
|
||||
Sent: Thursday, August 22, 2002 10:13 AM
|
||||
Subject: RE: [zzzzteana] Which Muppet Are You?
|
||||
|
||||
|
||||
Damn kermit...boring...
|
||||
Wanna be rizzo he's the coolest
|
||||
Dino
|
||||
|
||||
|
||||
Yahoo! Groups Sponsor
|
||||
ADVERTISEMENT
|
||||
|
||||
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|
||||
|
||||
|
||||
|
||||
[Non-text portions of this message have been removed]
|
||||
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
148
lib/jwz/testdata/0030.77828e31de08ebb58b583688b87524cc.eml
vendored
Normal file
148
lib/jwz/testdata/0030.77828e31de08ebb58b583688b87524cc.eml
vendored
Normal file
@@ -0,0 +1,148 @@
|
||||
From: exmh-workers-admin@redhat.com Thu Aug 22 18:29:40 2002
|
||||
Return-Path: <exmh-workers-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 8298743F99
|
||||
for <zzzz@localhost>; Thu, 22 Aug 2002 13:29:37 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 18:29:37 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MHUEZ17557 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 18:30:15 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id AFD5D410A6; Thu, 22 Aug 2002
|
||||
13:26:17 -0400 (EDT)
|
||||
Delivered-To: exmh-workers@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 4169841049
|
||||
for <exmh-workers@listman.redhat.com>; Thu, 22 Aug 2002 13:23:47 -0400
|
||||
(EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MHNi820140 for exmh-workers@listman.redhat.com; Thu, 22 Aug 2002
|
||||
13:23:44 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MHNiY20136 for
|
||||
<exmh-workers@redhat.com>; Thu, 22 Aug 2002 13:23:44 -0400
|
||||
Received: from austin-jump.vircio.com
|
||||
(IDENT:ej9JWTtTU9YAy/XEt1t3VaLooI8VpxCp@jump-austin.vircio.com
|
||||
[192.12.3.99]) by mx1.redhat.com (8.11.6/8.11.6) with SMTP id g7MH9El32554
|
||||
for <exmh-workers@redhat.com>; Thu, 22 Aug 2002 13:09:14 -0400
|
||||
Received: (qmail 11353 invoked by uid 104); 22 Aug 2002 17:23:43 -0000
|
||||
Received: from cwg-exmh@DeepEddy.Com by localhost.localdomain with
|
||||
qmail-scanner-0.90 (uvscan: v4.1.60/v4218. . Clean. Processed in 0.329069
|
||||
secs); 22/08/2002 12:23:43
|
||||
Received: from deepeddy.vircio.com (@[10.1.2.1]) (envelope-sender
|
||||
<cwg-exmh@DeepEddy.Com>) by austin-jump.vircio.com (qmail-ldap-1.03) with
|
||||
SMTP for <exmh-workers@redhat.com>; 22 Aug 2002 17:23:42 -0000
|
||||
Received: (qmail 7953 invoked from network); 22 Aug 2002 17:23:40 -0000
|
||||
Received: from localhost (HELO deepeddy.vircio.com)
|
||||
(?OWIvth7P1uuNLmEWhfKb2tBl1I4NTfB9?@[127.0.0.1]) (envelope-sender
|
||||
<cwg-exmh@DeepEddy.Com>) by localhost (qmail-ldap-1.03) with SMTP for
|
||||
<exmh-workers@redhat.com>; 22 Aug 2002 17:23:40 -0000
|
||||
X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4
|
||||
To: Anders Eriksson <aeriksson@fastmail.fm>
|
||||
Cc: exmh-workers@example.com
|
||||
Subject: Re: CVS report
|
||||
In-Reply-To: <20020822165508.1F95B3F24@milou.dyndns.org>
|
||||
References: <20020822165508.1F95B3F24@milou.dyndns.org>
|
||||
X-Url: http://www.DeepEddy.Com/~cwg
|
||||
X-Image-Url: http://www.DeepEddy.Com/~cwg/chris.gif
|
||||
MIME-Version: 1.0
|
||||
Content-Type: multipart/signed;
|
||||
boundary="==_Exmh_-518574644P";
|
||||
micalg=pgp-sha1;
|
||||
protocol="application/pgp-signature"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Message-Id: <1030037019.7938.TMDA@deepeddy.vircio.com>
|
||||
From: Chris Garrigues <cwg-exmh@DeepEddy.Com>
|
||||
X-Delivery-Agent: TMDA/0.57
|
||||
Reply-To: Chris Garrigues <cwg-dated-1030469020.d0a810@DeepEddy.Com>
|
||||
X-Loop: exmh-workers@example.com
|
||||
Sender: exmh-workers-admin@example.com
|
||||
Errors-To: exmh-workers-admin@example.com
|
||||
X-Beenthere: exmh-workers@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:exmh-workers-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-workers@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
||||
Date: Thu, 22 Aug 2002 12:23:38 -0500
|
||||
|
||||
--==_Exmh_-518574644P
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
|
||||
> From: Anders Eriksson <aeriksson@fastmail.fm>
|
||||
> Date: Thu, 22 Aug 2002 18:55:03 +0200
|
||||
>
|
||||
>
|
||||
>
|
||||
>
|
||||
> > > > > Just cvs up'ed and nowadays Catch-up Unseen is __extremely__ slow o
|
||||
> n
|
||||
> > > > > large (>100 msgs) unseen sequences. Anybody else having this proble
|
||||
> m?
|
||||
> > > >
|
||||
> > > > I'll take the blame.
|
||||
> > > >
|
||||
> > > > The reason, I suspect, is that we're needlessly reading the .sequence
|
||||
> s file
|
||||
> > > > multiple times because of other sequences. I need to make the code m
|
||||
> uch
|
||||
> > > > smarter about handling that file, but first I have a few other fish t
|
||||
> o fry in
|
||||
> > > > my rather large patch that's on it's way.
|
||||
> > > >
|
||||
> > >
|
||||
> > > No panic,
|
||||
> > >
|
||||
> > > I'm all for cleaning things up before getting it optimized.
|
||||
> >
|
||||
> > Okay, this fix is now checked in.
|
||||
> >
|
||||
> I'm afraid it didn't help. It still seems to be slower than ~1 month
|
||||
> ago. Maybe slightly faster than yeasterday. I'm (still) seeing an
|
||||
> "unseen countdown" in the log.
|
||||
|
||||
Okay....Catchup unseen is something that I don't use often, but i can
|
||||
certainly reproduce this. I'll dig into it. It's probably simple.
|
||||
|
||||
Chris
|
||||
|
||||
--
|
||||
Chris Garrigues http://www.DeepEddy.Com/~cwg/
|
||||
virCIO http://www.virCIO.Com
|
||||
716 Congress, Suite 200
|
||||
Austin, TX 78701 +1 512 374 0500
|
||||
|
||||
World War III: The Wrong-Doers Vs. the Evil-Doers.
|
||||
|
||||
|
||||
|
||||
|
||||
--==_Exmh_-518574644P
|
||||
Content-Type: application/pgp-signature
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.0.6 (GNU/Linux)
|
||||
Comment: Exmh version 2.2_20000822 06/23/2000
|
||||
|
||||
iD8DBQE9ZR4aK9b4h5R0IUIRAub4AKCE9sxZQfiRl18xhrtT2WLrEqEucACeJGm0
|
||||
YdhaA8YocKvlkyW4sTIZ3lU=
|
||||
=XhOQ
|
||||
-----END PGP SIGNATURE-----
|
||||
|
||||
--==_Exmh_-518574644P--
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-workers mailing list
|
||||
Exmh-workers@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
||||
|
||||
79
lib/jwz/testdata/0031.af5b387661e1f58d3787ac41139106e5.eml
vendored
Normal file
79
lib/jwz/testdata/0031.af5b387661e1f58d3787ac41139106e5.eml
vendored
Normal file
@@ -0,0 +1,79 @@
|
||||
From: ilug-admin@linux.ie Fri Aug 23 11:07:47 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 6F82C4416B
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:31 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:31 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MIE5Z19072 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 19:14:05 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id TAA15460; Thu, 22 Aug 2002 19:12:03 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from nwkea-mail-1.sun.com (nwkea-mail-1.sun.com [192.18.42.13])
|
||||
by lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id TAA15419 for
|
||||
<ilug@linux.ie>; Thu, 22 Aug 2002 19:11:56 +0100
|
||||
Received: from sunire.Ireland.Sun.COM ([129.156.220.30]) by
|
||||
nwkea-mail-1.sun.com (8.9.3+Sun/8.9.3) with ESMTP id LAA04778 for
|
||||
<ilug@linux.ie>; Thu, 22 Aug 2002 11:11:20 -0700 (PDT)
|
||||
Received: from sionnach.ireland.sun.com (sionnach [129.156.220.28]) by
|
||||
sunire.Ireland.Sun.COM (8.11.6+Sun/8.11.6/ENSMAIL,v2.2) with ESMTP id
|
||||
g7MIBJd19492 for <ilug@linux.ie>; Thu, 22 Aug 2002 19:11:19 +0100 (BST)
|
||||
Received: from sionnach (localhost [127.0.0.1]) by
|
||||
sionnach.ireland.sun.com (8.12.2+Sun/8.12.2) with ESMTP id g7MIBJdr004189
|
||||
for <ilug@linux.ie>; Thu, 22 Aug 2002 19:11:19 +0100 (BST)
|
||||
Message-Id: <200208221811.g7MIBJdr004189@sionnach.ireland.sun.com>
|
||||
X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4
|
||||
To: ilug@linux.ie
|
||||
From: Albert White - SUN Ireland <albert.white@ireland.sun.com>
|
||||
Subject: Re: [ILUG] Sun Solaris..
|
||||
In-Reply-To: Your message of
|
||||
"Thu, 22 Aug 2002 18:42:33 BST."
|
||||
<Pine.LNX.4.44.0208221841070.28604-100000@dunlop.admin.ie.alphyra.com>
|
||||
Date: Thu, 22 Aug 2002 19:11:19 +0100
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
|
||||
> On Thu, 22 Aug 2002, John P. Looney wrote:
|
||||
> > Sun's hardware in general is more reliable,
|
||||
> ROFL. not in our experience.
|
||||
|
||||
Well at least our Caps-Lock keys work:
|
||||
|
||||
peter@staunton.ie said:
|
||||
> Another problem. I have a Dell branded keyboard and if I hit Caps-Lock
|
||||
> twice, the whole machine crashes (in Linux, not Windows) - even the on/
|
||||
> off switch is inactive, leaving me to reach for the power cable
|
||||
> instead.
|
||||
|
||||
:-P
|
||||
|
||||
bauwolf@indigo.ie said:
|
||||
> as if he wanted Solaris 9 for x86, he'd be waiting a bit
|
||||
erm... it runs Solaris x86 as standard...
|
||||
|
||||
Cheers,
|
||||
~Al
|
||||
|
||||
--
|
||||
Expressed in this posting are my opinions. They are in no way related
|
||||
to opinions held by my employer, Sun Microsystems.
|
||||
Statements on Sun products included here are not gospel and may
|
||||
be fiction rather than truth.
|
||||
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
116
lib/jwz/testdata/0032.f07a3f2152f2bedfc9492459c171012c.eml
vendored
Normal file
116
lib/jwz/testdata/0032.f07a3f2152f2bedfc9492459c171012c.eml
vendored
Normal file
@@ -0,0 +1,116 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:20 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 93D8944160
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:44 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:44 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7MIPTZ19588 for <zzzz@example.com>;
|
||||
Thu, 22 Aug 2002 19:25:29 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 94BC22940D4; Thu, 22 Aug 2002 11:23:08 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from localhost.localdomain (pm7-32.sba1.netlojix.net
|
||||
[207.71.222.128]) by xent.com (Postfix) with ESMTP id 8C7AD294099 for
|
||||
<fork@xent.com>; Thu, 22 Aug 2002 11:22:33 -0700 (PDT)
|
||||
Received: (from dave@localhost) by maltesecat (8.8.7/8.8.7a) id LAA21283;
|
||||
Thu, 22 Aug 2002 11:11:58 -0700
|
||||
Message-Id: <200208221811.LAA21283@maltesecat>
|
||||
To: fork@example.com
|
||||
Subject: RE: The Curse of India's Socialism
|
||||
In-Reply-To: Message from fork-request@xent.com of
|
||||
"Wed, 21 Aug 2002 11:30:03 PDT."
|
||||
<20020821183003.25673.41476.Mailman@lair.xent.com>
|
||||
From: Dave Long <dl@silcom.com>
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 11:11:57 -0700
|
||||
|
||||
|
||||
|
||||
> You have multiple generations of
|
||||
> peasants/squatters that cultivate and live on the lands almost as a
|
||||
> human parts of the property package.
|
||||
|
||||
When I'd read that "getting legal title
|
||||
can take 20 years", when I believe that
|
||||
1 year ought to be more than sufficient,
|
||||
(and helped by the Cairo reference) I'd
|
||||
assumed that we were talking about the
|
||||
urban poor.
|
||||
|
||||
If I see people living in mansions, or
|
||||
even in suburban subdivisions, I assume
|
||||
they didn't have too much trouble with
|
||||
their titles.
|
||||
|
||||
If I see people living in shanties and
|
||||
haphazard alleyways, I tend to assume
|
||||
their parcels weren't exactly recorded
|
||||
on the government maps, or paid for with
|
||||
a bank loan, especially when nearby vacant
|
||||
lots have shotgun wielding men presumably
|
||||
intent on keeping them "development" free.
|
||||
|
||||
Now, it may be that "Manhattanites' view
|
||||
of America" to say that outside of Metro
|
||||
Manila, Davao, and maybe another city or
|
||||
two (Cebu?), everything else (literally)
|
||||
is the boondocks. But going on that very
|
||||
broad assumption, I guess I'm describing
|
||||
the flip side of Mr. Roger's experience:
|
||||
the paisanos (who leave behind those who
|
||||
remain on a patron's rural land) move to
|
||||
Manila, and (the second assumption) squat
|
||||
in shantytowns there, at least until they
|
||||
can line up a middle-class job.
|
||||
|
||||
So, going on two large assumptions, I can
|
||||
come up with a scenario under which title
|
||||
would take 20 years: a shantytown arises
|
||||
somewhere in the midst of a section (or
|
||||
whatever the Spanish used to divvy up the
|
||||
land) and it takes decades of arguing to
|
||||
put together a package which somehow can
|
||||
both compensate the owner and record lots
|
||||
for the inhabitants. Just transferring
|
||||
title to an existing lot, between parties
|
||||
who have money, ought not to be a problem.
|
||||
|
||||
The obvious solution, at least to us
|
||||
barking farting chihuahuas on FoRK, is
|
||||
to "introduce market mechanisms". It is
|
||||
left as an exercise to come up with one
|
||||
which works when many of the agents (are
|
||||
perceived to) have negligible NPV.
|
||||
|
||||
-Dave
|
||||
|
||||
> [land reform] meant that all the agricultural producers had
|
||||
> to plant crops all the time (profitable or not) ...
|
||||
|
||||
What happened to more highly-capitalized
|
||||
land? Putting in trees instead of crops
|
||||
sounds like it might sidestep that.
|
||||
|
||||
> Mr. Long, I think you'd particularly enjoy the De Soto work.
|
||||
|
||||
On the "to find" list. Any chance of
|
||||
an explanation of that "Bell Jar" in
|
||||
the meantime?
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
101
lib/jwz/testdata/0033.e3fd617544226dc06abf36c95a9a2d11.eml
vendored
Normal file
101
lib/jwz/testdata/0033.e3fd617544226dc06abf36c95a9a2d11.eml
vendored
Normal file
@@ -0,0 +1,101 @@
|
||||
From: neugens@libero.it Fri Aug 23 11:04:42 2002
|
||||
Return-Path: <neugens@libero.it>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id BED4A44164
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:03:50 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:03:50 +0100 (IST)
|
||||
Received: from webnote.net (mail.webnote.net [193.120.211.219]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MJiiZ22036 for
|
||||
<zzzz@example.com>; Thu, 22 Aug 2002 20:44:44 +0100
|
||||
Received: from outgoing.securityfocus.com (outgoing2.securityfocus.com
|
||||
[66.38.151.26]) by webnote.net (8.9.3/8.9.3) with ESMTP id UAA06503 for
|
||||
<zzzz@example.com>; Thu, 22 Aug 2002 20:44:51 +0100
|
||||
Received: from lists.securityfocus.com (lists.securityfocus.com
|
||||
[66.38.151.19]) by outgoing.securityfocus.com (Postfix) with QMQP id
|
||||
3B4388F353; Thu, 22 Aug 2002 12:41:59 -0600 (MDT)
|
||||
Mailing-List: contact secprog-help@securityfocus.com; run by ezmlm
|
||||
Precedence: bulk
|
||||
List-Id: <secprog.list-id.securityfocus.com>
|
||||
List-Post: <mailto:secprog@securityfocus.com>
|
||||
List-Help: <mailto:secprog-help@securityfocus.com>
|
||||
List-Unsubscribe: <mailto:secprog-unsubscribe@securityfocus.com>
|
||||
List-Subscribe: <mailto:secprog-subscribe@securityfocus.com>
|
||||
Delivered-To: mailing list secprog@securityfocus.com
|
||||
Delivered-To: moderator for secprog@securityfocus.com
|
||||
Received: (qmail 10062 invoked from network); 22 Aug 2002 17:41:11 -0000
|
||||
Content-Type: text/plain; charset="us-ascii"
|
||||
From: Mario Torre <neugens@libero.it>
|
||||
To: secprog@securityfocus.com
|
||||
Subject: Encryption approach to secure web applications
|
||||
Date: Thu, 22 Aug 2002 20:15:15 +0200
|
||||
User-Agent: KMail/1.4.1
|
||||
MIME-Version: 1.0
|
||||
Message-Id: <200208222015.15926.neugens@libero.it>
|
||||
Content-Transfer-Encoding: 8bit
|
||||
X-MIME-Autoconverted: from quoted-printable to 8bit by dogma.slashnull.org
|
||||
id g7MJiiZ22036
|
||||
|
||||
Hi everybody!
|
||||
|
||||
I'm writing a web application in java (tomcat + jsp/servlets + database
|
||||
access with postgreSQL).
|
||||
|
||||
This will be released under the GPL and will eventually be useful as a
|
||||
framework for other web applications.
|
||||
|
||||
The application main focus is e-commerce, but not limited to that.
|
||||
|
||||
I would like to use some form of cryptography to protect data on the
|
||||
database, but I have some problem figuring out the right approach.
|
||||
|
||||
Above all, how to store passwords and keys in a shared web server.
|
||||
|
||||
A problem that I was unable to solve is how to store keys for
|
||||
encryption/decryption. The api that I'm using is the jca (jdk1.4.x),
|
||||
and the methods of saving generated keys in keystores fails always.
|
||||
|
||||
I can serialize the object, and store in the database, but this is not
|
||||
the most secure approach: this key is needed to decrypt data in the
|
||||
database, but the database is accessible from the web application.
|
||||
Assuming that I can find a good and secure place where to store the
|
||||
database password, I can use a different database with different
|
||||
user... Argh... to complex and doesn't really solve the problem.
|
||||
|
||||
Where I can found good documentation about this topic?
|
||||
|
||||
There is another approach that I would share with the list, something I
|
||||
thought that can be of bit interest, but probabily wrong and insecure.
|
||||
After all, I'm a real beginner in secure programming, and I'm here to
|
||||
learn methods and technics.
|
||||
|
||||
First of all, I need a secure way to keep database passwords secure, so
|
||||
I have to keep them separate from the main server. The right approach
|
||||
could be using a small java bean application that run as normal user
|
||||
(not tomcat, so it is not shared with other web services or, worst, the
|
||||
nobody user), that has no shell login, but has a default home directory
|
||||
or a place where it can hold passwords and keys.
|
||||
|
||||
The web application could then open an ssl connection (could be done in
|
||||
the init method at server startup) to get database passwords. The small
|
||||
bean could check via code signature/rmi/whatever else that the source
|
||||
is the right one, and handle all the database connections, or give the
|
||||
db connection/password to the main web application.
|
||||
|
||||
In this way, we solve the problem of keeping the keys and passwords in
|
||||
shared directories, and also, an attacker should get root/bean user
|
||||
account to read data. This is not perfect, and works only if your
|
||||
provider gives the opportunity to configure a separated java
|
||||
application (that means, really, another server running in the
|
||||
background).
|
||||
|
||||
Any suggestions?
|
||||
|
||||
Thank you,
|
||||
Mario Torre
|
||||
--
|
||||
Please avoid sending me Word or PowerPoint attachments.
|
||||
See http://www.fsf.org/philosophy/no-word-attachments.html
|
||||
|
||||
113
lib/jwz/testdata/0034.4be53f8dac3bd651ace83a38b6313c45.eml
vendored
Normal file
113
lib/jwz/testdata/0034.4be53f8dac3bd651ace83a38b6313c45.eml
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
From: exmh-workers-admin@redhat.com Fri Aug 23 11:04:05 2002
|
||||
Return-Path: <exmh-workers-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 7F45444159
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:03:34 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:03:34 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MIZPZ19882 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 19:35:25 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id 571363F43A; Thu, 22 Aug 2002
|
||||
14:35:10 -0400 (EDT)
|
||||
Delivered-To: exmh-workers@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id A6F683FD36
|
||||
for <exmh-workers@listman.redhat.com>; Thu, 22 Aug 2002 14:23:32 -0400
|
||||
(EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MINTq05527 for exmh-workers@listman.redhat.com; Thu, 22 Aug 2002
|
||||
14:23:29 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MINTY05519 for
|
||||
<exmh-workers@redhat.com>; Thu, 22 Aug 2002 14:23:29 -0400
|
||||
Received: from milou.dyndns.org (h189n1fls22o974.telia.com
|
||||
[213.64.79.189]) by mx1.redhat.com (8.11.6/8.11.6) with SMTP id
|
||||
g7MI8xl17687 for <exmh-workers@redhat.com>; Thu, 22 Aug 2002 14:08:59
|
||||
-0400
|
||||
Received: by milou.dyndns.org (Postfix, from userid 500) id 64D053F25;
|
||||
Thu, 22 Aug 2002 20:23:22 +0200 (CEST)
|
||||
Received: from tippex.localdomain (localhost [127.0.0.1]) by
|
||||
milou.dyndns.org (Postfix) with ESMTP id 634573F23; Thu, 22 Aug 2002
|
||||
20:23:22 +0200 (CEST)
|
||||
To: Chris Garrigues <cwg-dated-1030470582.50ccab@DeepEddy.Com>,
|
||||
exmh-workers@redhat.com
|
||||
Subject: Re: CVS report
|
||||
From: Anders Eriksson <aeriksson@fastmail.fm>
|
||||
In-Reply-To: Your message of
|
||||
"Thu, 22 Aug 2002 12:49:41 CDT."
|
||||
<1030038582.14329.TMDA@deepeddy.vircio.com>
|
||||
Message-Id: <20020822182322.64D053F25@milou.dyndns.org>
|
||||
X-Loop: exmh-workers@example.com
|
||||
Sender: exmh-workers-admin@example.com
|
||||
Errors-To: exmh-workers-admin@example.com
|
||||
X-Beenthere: exmh-workers@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:exmh-workers-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-workers@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
||||
Date: Thu, 22 Aug 2002 20:23:17 +0200
|
||||
|
||||
|
||||
Oooops!
|
||||
|
||||
Doesn't work at all. Got this on startup and on any attempt to change folder (which fail)
|
||||
|
||||
/Anders
|
||||
|
||||
can't read "flist(seqcount,lists/exmh,unseen)": no such element in array
|
||||
(reading value of variable to increment)
|
||||
invoked from within
|
||||
"incr flist(seqcount,$folder,$seq) $delta"
|
||||
(procedure "Seq_Del" line 16)
|
||||
invoked from within
|
||||
"Seq_Del $exmh(folder) $mhProfile(unseen-sequence) $msgid"
|
||||
(procedure "MsgSeen" line 7)
|
||||
invoked from within
|
||||
"MsgSeen $msgid"
|
||||
(procedure "MsgShow" line 12)
|
||||
invoked from within
|
||||
"MsgShow $msgid"
|
||||
(procedure "MsgChange" line 17)
|
||||
invoked from within
|
||||
"MsgChange 73 show"
|
||||
invoked from within
|
||||
"time [list MsgChange $msgid $show"
|
||||
(procedure "Msg_Change" line 3)
|
||||
invoked from within
|
||||
"Msg_Change $msg(id) $show"
|
||||
(procedure "Msg_Show" line 7)
|
||||
invoked from within
|
||||
"Msg_Show cur"
|
||||
("eval" body line 1)
|
||||
invoked from within
|
||||
"eval $msgShowProc"
|
||||
(procedure "FolderChange" line 55)
|
||||
invoked from within
|
||||
"FolderChange lists/exmh {Msg_Show cur}"
|
||||
invoked from within
|
||||
"time [list FolderChange $folder $msgShowProc"
|
||||
(procedure "Folder_Change" line 3)
|
||||
invoked from within
|
||||
"Folder_Change $exmh(folder)"
|
||||
(procedure "Exmh" line 101)
|
||||
invoked from within
|
||||
"Exmh"
|
||||
("after" script)
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-workers mailing list
|
||||
Exmh-workers@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
||||
|
||||
67
lib/jwz/testdata/0035.50b257408356cfcfce8cf2afe9fd7959.eml
vendored
Normal file
67
lib/jwz/testdata/0035.50b257408356cfcfce8cf2afe9fd7959.eml
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
From: craig@deersoft.com Fri Aug 23 11:03:54 2002
|
||||
Return-Path: <craig@deersoft.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id D5BBB44156
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:03:29 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:03:29 +0100 (IST)
|
||||
Received: from hall.mail.mindspring.net (hall.mail.mindspring.net
|
||||
[207.69.200.60]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7MISAZ19627 for <zzzz@example.com>; Thu, 22 Aug 2002 19:28:10 +0100
|
||||
Received: from user-105nd99.dialup.mindspring.com ([64.91.181.41]
|
||||
helo=belphegore.hughes-family.org) by hall.mail.mindspring.net with esmtp
|
||||
(Exim 3.33 #1) id 17hwgo-00049c-00; Thu, 22 Aug 2002 14:28:14 -0400
|
||||
Received: from balam.hughes-family.org
|
||||
(adsl-67-118-234-50.dsl.pltn13.pacbell.net [67.118.234.50]) by
|
||||
belphegore.hughes-family.org (Postfix) with ESMTP id 05665A3FD9;
|
||||
Thu, 22 Aug 2002 11:28:12 -0700 (PDT)
|
||||
Date: Thu, 22 Aug 2002 11:28:13 -0700
|
||||
Subject: Re: [SAdev] 2.40 RELEASE PROCESS: mass-check status, folks?
|
||||
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
||||
MIME-Version: 1.0 (Apple Message framework v482)
|
||||
Cc: "Malte S. Stretz" <msquadrat.nospamplease@gmx.net>,
|
||||
SpamAssassin-devel@lists.sourceforge.net,
|
||||
SpamAssassin-talk@lists.sourceforge.net
|
||||
To: zzzz@example.com (Justin Mason)
|
||||
From: "Craig R.Hughes" <craig@deersoft.com>
|
||||
In-Reply-To: <20020822172428.4FCCD43F99@phobos.labs.netnoteinc.com>
|
||||
Message-Id: <EB0AF9F0-B5FC-11D6-A91E-00039396ECF2@deersoft.com>
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Mailer: Apple Mail (2.482)
|
||||
|
||||
|
||||
On Thursday, August 22, 2002, at 10:24 AM, Justin Mason wrote:
|
||||
|
||||
> I plan to
|
||||
>
|
||||
> 1. figure out the freqs tonight, suggest what tests to drop
|
||||
> 2. wait for comments
|
||||
> 3. drop tests that nobody cares about tomorrow
|
||||
> 4. sed out the dropped tests from the mass-check logs
|
||||
|
||||
This step is unneccesary -- unless you've changed the scripts
|
||||
much, any test in the logs which aren't in the rules files will
|
||||
just be ignored I think. You do seem to have changed the
|
||||
logs-to-c script and removed the bit where you could specify
|
||||
immutable tests at the top -- I took a brief glance through the
|
||||
code and couldn't fully make out how it had changed. I think we
|
||||
want to be able to specify immutable test scores though in there
|
||||
somewhere -- or is that now handled by the tflags stuff? For
|
||||
the last couple releases, any test which occurred infrequently
|
||||
(by thumb-in-the-wind subjective criteria) I set to have
|
||||
immutable scores, as well as a handful of other rules.
|
||||
|
||||
> 5. kick off the GA
|
||||
>
|
||||
> BTW I'll be away this weekend at Linuxbierwanderung, so Craig,
|
||||
> you might
|
||||
> have to run the GA. ;)
|
||||
|
||||
Shouldn't be a problem. Assuming I can get the darned thing to
|
||||
compile :)
|
||||
|
||||
C
|
||||
|
||||
|
||||
104
lib/jwz/testdata/0036.7ca216a105267375948e13b460d1fb8f.eml
vendored
Normal file
104
lib/jwz/testdata/0036.7ca216a105267375948e13b460d1fb8f.eml
vendored
Normal file
@@ -0,0 +1,104 @@
|
||||
From: exmh-users-admin@redhat.com Fri Aug 23 11:04:05 2002
|
||||
Return-Path: <exmh-users-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 284A84415A
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:03:36 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:03:36 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MIpgZ20384 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 19:51:46 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id 1515D3ED34; Thu, 22 Aug 2002
|
||||
14:51:45 -0400 (EDT)
|
||||
Delivered-To: exmh-users@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id DE5573FA56
|
||||
for <exmh-users@listman.redhat.com>; Thu, 22 Aug 2002 14:43:11 -0400 (EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MIh9W11686 for exmh-users@listman.redhat.com; Thu, 22 Aug 2002
|
||||
14:43:09 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MIh8Y11682 for
|
||||
<exmh-users@redhat.com>; Thu, 22 Aug 2002 14:43:08 -0400
|
||||
Received: from tater ([128.221.30.58]) by mx1.example.com (8.11.6/8.11.6)
|
||||
with SMTP id g7MIScl23509 for <exmh-users@redhat.com>; Thu, 22 Aug 2002
|
||||
14:28:39 -0400
|
||||
Received: from tater.emc.com (tater.lanminds.com [127.0.0.1]) by tater
|
||||
(Postfix) with ESMTP id 2E5BCF5B3 for <exmh-users@redhat.com>;
|
||||
Thu, 22 Aug 2002 14:43:03 -0400 (EDT)
|
||||
X-Mailer: exmh version 2.5 07/13/2001 (debian 2.5-1) with nmh-1.0.4+dev
|
||||
To: exmh-users@example.com
|
||||
Subject: Re: Insert signature
|
||||
In-Reply-To: Message from Ulises Ponce <ulises@mail.banirh.com> of
|
||||
"Thu, 22 Aug 2002 13:03:57 CDT."
|
||||
<200208221803.g7MI3vV17471@mail.banirh.com>
|
||||
References: <200208221803.g7MI3vV17471@mail.banirh.com>
|
||||
From: Paul Lussier <pll@lanminds.com>
|
||||
Message-Id: <20020822184303.2E5BCF5B3@tater>
|
||||
X-Loop: exmh-users@example.com
|
||||
Sender: exmh-users-admin@example.com
|
||||
Errors-To: exmh-users-admin@example.com
|
||||
X-Beenthere: exmh-users@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
Reply-To: exmh-users@example.com
|
||||
List-Help: <mailto:exmh-users-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-users@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
||||
<mailto:exmh-users-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH users <exmh-users.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
||||
<mailto:exmh-users-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-users/>
|
||||
Date: Thu, 22 Aug 2002 14:43:03 -0400
|
||||
|
||||
In a message dated: Thu, 22 Aug 2002 13:03:57 CDT
|
||||
Ulises Ponce said:
|
||||
|
||||
>Thanks Tony, but I think doing it using component files will get a .signature
|
||||
>by default, but I have many diferent signatures and I want to insert one of
|
||||
>that signatures using a keyboard command. So for a message I will insert a
|
||||
>signature, but for another message I will insert a different signature.
|
||||
>
|
||||
>Is it possible? I am using sedit for my messages.
|
||||
|
||||
Ahm, if you don't object to using a mouse for such things, exmh has
|
||||
the ability to insert different sigs on demand. Create a bunch of
|
||||
different sig files, all beginning with .signature, and at start up,
|
||||
exmh will load them all. In the Sedit window, you'll see a Sign...
|
||||
menu item which will allow you to select between each of the listed
|
||||
.signature files for *that* e-mail. You can actually use several if
|
||||
you'd like (though I don't remember what Preferences... option allows
|
||||
for this).
|
||||
|
||||
However, the signature gets added on send, not inserted directly into
|
||||
the existing Sedit window prior to composition.
|
||||
|
||||
I currently have 6 different sig files I can choose between.
|
||||
|
||||
Additionally, if a .signature file has the execute bit turned on,
|
||||
exmh will attempt to execute the file and use the stdout of the
|
||||
script as your signature.
|
||||
|
||||
I hope this helps some.
|
||||
--
|
||||
|
||||
Seeya,
|
||||
Paul
|
||||
--
|
||||
It may look like I'm just sitting here doing nothing,
|
||||
but I'm really actively waiting for all my problems to go away.
|
||||
|
||||
If you're not having fun, you're not doing it right!
|
||||
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-users mailing list
|
||||
Exmh-users@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-users
|
||||
|
||||
126
lib/jwz/testdata/0037.0c57a93c0241775d406efecf43ba19cf.eml
vendored
Normal file
126
lib/jwz/testdata/0037.0c57a93c0241775d406efecf43ba19cf.eml
vendored
Normal file
@@ -0,0 +1,126 @@
|
||||
From: exmh-users-admin@redhat.com Fri Aug 23 11:04:17 2002
|
||||
Return-Path: <exmh-users-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 61F8D4415C
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:03:39 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:03:39 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MIvjZ20597 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 19:57:45 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id 6320F3F680; Thu, 22 Aug 2002
|
||||
14:57:02 -0400 (EDT)
|
||||
Delivered-To: exmh-users@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 1D0903ECFA
|
||||
for <exmh-users@listman.redhat.com>; Thu, 22 Aug 2002 14:54:12 -0400 (EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MIs9h15215 for exmh-users@listman.redhat.com; Thu, 22 Aug 2002
|
||||
14:54:09 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MIs6Y15205 for
|
||||
<exmh-users@redhat.com>; Thu, 22 Aug 2002 14:54:08 -0400
|
||||
Received: from mail.banirh.com
|
||||
(adsl-javier-quezada-55499267.prodigy.net.mx [200.67.254.229]) by
|
||||
mx1.redhat.com (8.11.6/8.11.6) with SMTP id g7MIdZl26775 for
|
||||
<exmh-users@redhat.com>; Thu, 22 Aug 2002 14:39:36 -0400
|
||||
Received: from mail.banirh.com (IDENT:ulises@localhost [127.0.0.1]) by
|
||||
mail.banirh.com (8.10.2/8.9.3) with ESMTP id g7MIrtV21872 for
|
||||
<exmh-users@redhat.com>; Thu, 22 Aug 2002 13:53:55 -0500
|
||||
Message-Id: <200208221853.g7MIrtV21872@mail.banirh.com>
|
||||
X-Mailer: exmh version 2.3.1 01/15/2001 with nmh-1.0.3
|
||||
To: exmh-users@example.com
|
||||
Subject: Re: Insert signature
|
||||
In-Reply-To: Your message of
|
||||
"Thu, 22 Aug 2002 14:43:03 EDT."
|
||||
<20020822184303.2E5BCF5B3@tater>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
From: Ulises Ponce <ulises@mail.banirh.com>
|
||||
X-Loop: exmh-users@example.com
|
||||
Sender: exmh-users-admin@example.com
|
||||
Errors-To: exmh-users-admin@example.com
|
||||
X-Beenthere: exmh-users@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
Reply-To: exmh-users@example.com
|
||||
List-Help: <mailto:exmh-users-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-users@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
||||
<mailto:exmh-users-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH users <exmh-users.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
||||
<mailto:exmh-users-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-users/>
|
||||
Date: Thu, 22 Aug 2002 13:53:55 -0500
|
||||
|
||||
Thanks Paul,
|
||||
That is the way I am doing right now, but I would like to NOT use the mouse
|
||||
for such things. Any other clue?
|
||||
|
||||
--
|
||||
|
||||
Saludos,
|
||||
Ulises
|
||||
|
||||
Speaking words of wisdom ...
|
||||
|
||||
|
||||
> In a message dated: Thu, 22 Aug 2002 13:03:57 CDT
|
||||
> Ulises Ponce said:
|
||||
>
|
||||
> >Thanks Tony, but I think doing it using component files will get a .signature
|
||||
> >by default, but I have many diferent signatures and I want to insert one of
|
||||
> >that signatures using a keyboard command. So for a message I will insert a
|
||||
> >signature, but for another message I will insert a different signature.
|
||||
> >
|
||||
> >Is it possible? I am using sedit for my messages.
|
||||
>
|
||||
> Ahm, if you don't object to using a mouse for such things, exmh has
|
||||
> the ability to insert different sigs on demand. Create a bunch of
|
||||
> different sig files, all beginning with .signature, and at start up,
|
||||
> exmh will load them all. In the Sedit window, you'll see a Sign...
|
||||
> menu item which will allow you to select between each of the listed
|
||||
> .signature files for *that* e-mail. You can actually use several if
|
||||
> you'd like (though I don't remember what Preferences... option allows
|
||||
> for this).
|
||||
>
|
||||
> However, the signature gets added on send, not inserted directly into
|
||||
> the existing Sedit window prior to composition.
|
||||
>
|
||||
> I currently have 6 different sig files I can choose between.
|
||||
>
|
||||
> Additionally, if a .signature file has the execute bit turned on,
|
||||
> exmh will attempt to execute the file and use the stdout of the
|
||||
> script as your signature.
|
||||
>
|
||||
> I hope this helps some.
|
||||
> --
|
||||
>
|
||||
> Seeya,
|
||||
> Paul
|
||||
> --
|
||||
> It may look like I'm just sitting here doing nothing,
|
||||
> but I'm really actively waiting for all my problems to go away.
|
||||
>
|
||||
> If you're not having fun, you're not doing it right!
|
||||
>
|
||||
>
|
||||
>
|
||||
>
|
||||
> _______________________________________________
|
||||
> Exmh-users mailing list
|
||||
> Exmh-users@redhat.com
|
||||
> https://listman.redhat.com/mailman/listinfo/exmh-users
|
||||
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-users mailing list
|
||||
Exmh-users@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-users
|
||||
|
||||
71
lib/jwz/testdata/0038.f2ffa1197c969d067be4d01c26fa9b5e.eml
vendored
Normal file
71
lib/jwz/testdata/0038.f2ffa1197c969d067be4d01c26fa9b5e.eml
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
From: ilug-admin@linux.ie Fri Aug 23 11:07:42 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 762374415C
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:30 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:30 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MHxuZ18619 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 18:59:56 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id SAA14875; Thu, 22 Aug 2002 18:57:44 +0100
|
||||
Received: from ni-mail1.dna.utvinternet.net (mail.d-n-a.net [194.46.8.11])
|
||||
by lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id SAA14844 for
|
||||
<ilug@linux.ie>; Thu, 22 Aug 2002 18:57:36 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host mail.d-n-a.net
|
||||
[194.46.8.11] claimed to be ni-mail1.dna.utvinternet.net
|
||||
Received: from mail.dnet.co.uk (unverified [194.46.8.61]) by
|
||||
ni-mail1.dna.utvinternet.net (Vircom SMTPRS 1.4.232) with SMTP id
|
||||
<B0002356019@ni-mail1.dna.utvinternet.net>; Thu, 22 Aug 2002 18:55:19
|
||||
+0100
|
||||
From: "Peter Staunton" <peter@staunton.ie>
|
||||
Reply-To: peter@staunton.ie
|
||||
To: ilug@linux.ie
|
||||
Date: Thu, 22 Aug 2002 18:57:35 GMT
|
||||
X-Mailer: DMailWeb Web to Mail Gateway 1.8s, http://netwinsite.com/top_mail.htm
|
||||
Message-Id: <3d65260f.948.0@mail.dnet.co.uk>
|
||||
X-User-Info: 159.134.226.168
|
||||
Subject: [ILUG] Newbie seeks advice - Suse 7.2
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
Folks,
|
||||
|
||||
my first time posting - have a bit of Unix experience, but am new to Linux.
|
||||
|
||||
|
||||
Just got a new PC at home - Dell box with Windows XP. Added a second hard disk
|
||||
for Linux. Partitioned the disk and have installed Suse 7.2 from CD, which went
|
||||
fine except it didn't pick up my monitor.
|
||||
|
||||
I have a Dell branded E151FPp 15" LCD flat panel monitor and a nVidia GeForce4
|
||||
Ti4200 video card, both of which are probably too new to feature in Suse's default
|
||||
set. I downloaded a driver from the nVidia website and installed it using RPM.
|
||||
Then I ran Sax2 (as was recommended in some postings I found on the net), but
|
||||
it still doesn't feature my video card in the available list. What next?
|
||||
|
||||
Another problem. I have a Dell branded keyboard and if I hit Caps-Lock twice,
|
||||
the whole machine crashes (in Linux, not Windows) - even the on/off switch is
|
||||
inactive, leaving me to reach for the power cable instead.
|
||||
|
||||
If anyone can help me in any way with these probs., I'd be really grateful -
|
||||
I've searched the 'net but have run out of ideas.
|
||||
|
||||
Or should I be going for a different version of Linux such as RedHat? Opinions
|
||||
welcome.
|
||||
|
||||
Thanks a lot,
|
||||
Peter
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
87
lib/jwz/testdata/0040.930593a7e616570a2b63f2d774847316.eml
vendored
Normal file
87
lib/jwz/testdata/0040.930593a7e616570a2b63f2d774847316.eml
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
From: exmh-users-admin@redhat.com Fri Aug 23 11:04:30 2002
|
||||
Return-Path: <exmh-users-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 8E7C844163
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:03:46 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:03:46 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MJN3Z21405 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 20:23:04 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id 7F8C63FBD0; Thu, 22 Aug 2002
|
||||
15:23:03 -0400 (EDT)
|
||||
Delivered-To: exmh-users@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 3ED163FCB3
|
||||
for <exmh-users@listman.redhat.com>; Thu, 22 Aug 2002 15:13:19 -0400 (EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MJDGM20736 for exmh-users@listman.redhat.com; Thu, 22 Aug 2002
|
||||
15:13:16 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MJDGY20732 for
|
||||
<exmh-users@redhat.com>; Thu, 22 Aug 2002 15:13:16 -0400
|
||||
Received: from tater ([128.221.30.58]) by mx1.example.com (8.11.6/8.11.6)
|
||||
with SMTP id g7MIwkl31939 for <exmh-users@redhat.com>; Thu, 22 Aug 2002
|
||||
14:58:46 -0400
|
||||
Received: from tater.emc.com (tater.lanminds.com [127.0.0.1]) by tater
|
||||
(Postfix) with ESMTP id 800DFF5B3 for <exmh-users@redhat.com>;
|
||||
Thu, 22 Aug 2002 15:13:10 -0400 (EDT)
|
||||
X-Mailer: exmh version 2.5 07/13/2001 (debian 2.5-1) with nmh-1.0.4+dev
|
||||
To: exmh-users@example.com
|
||||
Subject: Re: Insert signature
|
||||
In-Reply-To: Message from Ulises Ponce <ulises@mail.banirh.com> of
|
||||
"Thu, 22 Aug 2002 13:53:55 CDT."
|
||||
<200208221853.g7MIrtV21872@mail.banirh.com>
|
||||
References: <200208221853.g7MIrtV21872@mail.banirh.com>
|
||||
From: Paul Lussier <pll@lanminds.com>
|
||||
Message-Id: <20020822191310.800DFF5B3@tater>
|
||||
X-Loop: exmh-users@example.com
|
||||
Sender: exmh-users-admin@example.com
|
||||
Errors-To: exmh-users-admin@example.com
|
||||
X-Beenthere: exmh-users@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
Reply-To: exmh-users@example.com
|
||||
List-Help: <mailto:exmh-users-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-users@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
||||
<mailto:exmh-users-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH users <exmh-users.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
||||
<mailto:exmh-users-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-users/>
|
||||
Date: Thu, 22 Aug 2002 15:13:10 -0400
|
||||
|
||||
In a message dated: Thu, 22 Aug 2002 13:53:55 CDT
|
||||
Ulises Ponce said:
|
||||
|
||||
>Thanks Paul,
|
||||
>That is the way I am doing right now, but I would like to NOT use the mouse
|
||||
>for such things. Any other clue?
|
||||
|
||||
The best I can think of is to figure out what the command being
|
||||
issued by exmh is that selects and inserts the sig and bind that to a
|
||||
key sequence. That shouldn't be *too* difficult, it's just a matter
|
||||
of figuring out the tcl (something my perl-based brain isn't excited
|
||||
about :)
|
||||
--
|
||||
|
||||
Seeya,
|
||||
Paul
|
||||
--
|
||||
It may look like I'm just sitting here doing nothing,
|
||||
but I'm really actively waiting for all my problems to go away.
|
||||
|
||||
If you're not having fun, you're not doing it right!
|
||||
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-users mailing list
|
||||
Exmh-users@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-users
|
||||
|
||||
59
lib/jwz/testdata/0041.af4e0891f17484c10c032f713bce43de.eml
vendored
Normal file
59
lib/jwz/testdata/0041.af4e0891f17484c10c032f713bce43de.eml
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:25 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id CA27244171
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:45 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:45 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7MJHVZ21324 for <zzzz@example.com>;
|
||||
Thu, 22 Aug 2002 20:17:32 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id B6BE92940DE; Thu, 22 Aug 2002 12:15:09 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from barrera.org (unknown [207.5.62.130]) by xent.com (Postfix)
|
||||
with ESMTP id 8BCBA294099 for <fork@xent.com>; Thu, 22 Aug 2002 12:14:38
|
||||
-0700 (PDT)
|
||||
Received: from (127.0.0.1 [127.0.0.1]) by MailEnable Inbound Mail Agent
|
||||
with ESMTP; Thu, 22 Aug 2002 19:16:04 -08:00
|
||||
Message-Id: <3D653874.8010204@barrera.org>
|
||||
From: "Joseph S. Barrera III" <joe@barrera.org>
|
||||
Organization: Wings over the World
|
||||
User-Agent: Mutt 5.00.2919.6900 DM (Nigerian Scammer Special Edition)
|
||||
X-Accept-Language: en-us, en, ja
|
||||
MIME-Version: 1.0
|
||||
To: Chris Haun <chris@noskillz.com>
|
||||
Cc: fork@example.com
|
||||
Subject: Re: lifegem
|
||||
References: <Pine.LNX.4.44.0208211526350.675-100000@isolnetsux.techmonkeys.net>
|
||||
Content-Type: text/plain; charset=us-ascii; format=flowed
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 12:16:04 -0700
|
||||
|
||||
Chris Haun wrote:
|
||||
> A LifeGem is a certified, high quality diamond created from the carbon of
|
||||
> your loved one as a memorial to their unique and wonderful life.
|
||||
|
||||
Why wait until you're dead? I'm sure there's enough carbon in
|
||||
the fat from your typical liposuction job to make a decent diamond.
|
||||
|
||||
- Joe
|
||||
|
||||
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
55
lib/jwz/testdata/0042.7ef6c72f88de15d72b1c0d9c164ccb78.eml
vendored
Normal file
55
lib/jwz/testdata/0042.7ef6c72f88de15d72b1c0d9c164ccb78.eml
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:26 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id BA70647C68
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:46 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:46 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7MJOSZ21435 for <zzzz@example.com>;
|
||||
Thu, 22 Aug 2002 20:24:28 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 532572940E5; Thu, 22 Aug 2002 12:22:08 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from crank.slack.net (slack.net [166.84.151.181]) by xent.com
|
||||
(Postfix) with ESMTP id 19BE0294099 for <fork@xent.com>; Thu,
|
||||
22 Aug 2002 12:21:43 -0700 (PDT)
|
||||
Received: by crank.slack.net (Postfix, from userid 596) id D1DEE3EC9E;
|
||||
Thu, 22 Aug 2002 15:25:24 -0400 (EDT)
|
||||
Received: from localhost (localhost [127.0.0.1]) by crank.slack.net
|
||||
(Postfix) with ESMTP id D04DE3EC10; Thu, 22 Aug 2002 15:25:24 -0400 (EDT)
|
||||
From: Tom <tomwhore@slack.net>
|
||||
To: "Joseph S. Barrera III" <joe@barrera.org>
|
||||
Cc: Chris Haun <chris@noskillz.com>, <fork@example.com>
|
||||
Subject: Re: lifegem
|
||||
In-Reply-To: <3D653874.8010204@barrera.org>
|
||||
Message-Id: <Pine.BSO.4.44.0208221524380.28231-100000@crank.slack.net>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: TEXT/PLAIN; charset=US-ASCII
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 15:25:24 -0400 (EDT)
|
||||
|
||||
On Thu, 22 Aug 2002, Joseph S. Barrera III wrote:
|
||||
--]Why wait until you're dead? I'm sure there's enough carbon in
|
||||
--]the fat from your typical liposuction job to make a decent diamond.
|
||||
|
||||
So thats why I keep seeing DeBeers agents hovering around me.
|
||||
|
||||
-tom(diamonds in the folds of my flesh)wsmf
|
||||
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
69
lib/jwz/testdata/0043.2ea45c42b1ea15bc214723e142b81127.eml
vendored
Normal file
69
lib/jwz/testdata/0043.2ea45c42b1ea15bc214723e142b81127.eml
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:30 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id C348B44163
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:47 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:47 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7MJSYZ21645 for <zzzz@example.com>;
|
||||
Thu, 22 Aug 2002 20:28:34 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 03FCD2940ED; Thu, 22 Aug 2002 12:26:09 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from sunserver.permafrost.net (u172n16.hfx.eastlink.ca
|
||||
[24.222.172.16]) by xent.com (Postfix) with ESMTP id 9B3612940EA for
|
||||
<fork@xent.com>; Thu, 22 Aug 2002 12:25:08 -0700 (PDT)
|
||||
Received: from [192.168.123.179] (helo=permafrost.net) by
|
||||
sunserver.permafrost.net with esmtp (Exim 3.35 #1 (Debian)) id
|
||||
17hxYk-00009P-00; Thu, 22 Aug 2002 16:23:58 -0300
|
||||
Message-Id: <3D653BBF.3060209@permafrost.net>
|
||||
From: Owen Byrne <owen@permafrost.net>
|
||||
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.0.0) Gecko/20020530
|
||||
X-Accept-Language: en-us, en
|
||||
MIME-Version: 1.0
|
||||
To: "Joseph S. Barrera III" <joe@barrera.org>
|
||||
Cc: Chris Haun <chris@noskillz.com>, fork@example.com
|
||||
Subject: Re: lifegem
|
||||
References: <Pine.LNX.4.44.0208211526350.675-100000@isolnetsux.techmonkeys.net>
|
||||
<3D653874.8010204@barrera.org>
|
||||
Content-Type: text/plain; charset=us-ascii; format=flowed
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 16:30:07 -0300
|
||||
|
||||
Joseph S. Barrera III wrote:
|
||||
|
||||
> Chris Haun wrote:
|
||||
>
|
||||
>> A LifeGem is a certified, high quality diamond created from the
|
||||
>> carbon of your loved one as a memorial to their unique and wonderful
|
||||
>> life.
|
||||
>
|
||||
>
|
||||
> Why wait until you're dead? I'm sure there's enough carbon in
|
||||
> the fat from your typical liposuction job to make a decent diamond.
|
||||
>
|
||||
> - Joe
|
||||
>
|
||||
Oh, hell - what about excrement? I'd love to be able to say - No, the
|
||||
sun doesn't shine out of my ass, but there's the occasional diamond. ;-).
|
||||
|
||||
Owen
|
||||
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
122
lib/jwz/testdata/0044.f1db2c76854ee58bc73d0c85ca6a86d2.eml
vendored
Normal file
122
lib/jwz/testdata/0044.f1db2c76854ee58bc73d0c85ca6a86d2.eml
vendored
Normal file
@@ -0,0 +1,122 @@
|
||||
From: ilug-admin@linux.ie Fri Aug 23 11:07:51 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 7419C4416C
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:33 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:33 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MJtgZ22471 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 20:55:42 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id UAA19436; Thu, 22 Aug 2002 20:53:00 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from mail02.svc.cra.dublin.eircom.net
|
||||
(mail02.svc.cra.dublin.eircom.net [159.134.118.18]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with SMTP id UAA19403 for <ilug@linux.ie>; Thu,
|
||||
22 Aug 2002 20:52:53 +0100
|
||||
Received: (qmail 50842 messnum 34651 invoked from
|
||||
network[159.134.205.176/p432.as1.athlone1.eircom.net]); 22 Aug 2002
|
||||
19:52:16 -0000
|
||||
Received: from p432.as1.athlone1.eircom.net (HELO darkstar)
|
||||
(159.134.205.176) by mail02.svc.cra.dublin.eircom.net (qp 50842) with SMTP;
|
||||
22 Aug 2002 19:52:16 -0000
|
||||
Content-Type: text/plain; charset="iso-8859-15"
|
||||
From: Ciaran Johnston <cj@nologic.org>
|
||||
Organization: nologic.org
|
||||
To: <ilug@linux.ie>
|
||||
Subject: Re: [ILUG] Formatting a windows partition from Linux
|
||||
Date: Thu, 22 Aug 2002 20:58:07 +0100
|
||||
User-Agent: KMail/1.4.1
|
||||
References: <1029944325.29456.28.camel@dubrhlnx1>
|
||||
<26030.194.237.142.30.1029943301.squirrel@mail.nologic.org>
|
||||
In-Reply-To: <26030.194.237.142.30.1029943301.squirrel@mail.nologic.org>
|
||||
MIME-Version: 1.0
|
||||
Message-Id: <200208222058.07760.cj@nologic.org>
|
||||
Content-Transfer-Encoding: 8bit
|
||||
X-MIME-Autoconverted: from quoted-printable to 8bit by lugh.tuatha.org id
|
||||
UAA19403
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
Update on this for anyone that's interested, and because I like closed
|
||||
threads... nothing worse than an infinite while loop, is there?
|
||||
|
||||
I ended up formatting a floppy on my flatmate's (un-networked) P100 running
|
||||
FAT16 Win95, and mcopied the contents of the bootdisk across. Now I have a
|
||||
FAT16 Win98 install running alongside Slackware, and can play Metal Gear
|
||||
Solid when the mood takes me ;)
|
||||
|
||||
/Ciaran.
|
||||
|
||||
On Wednesday 21 August 2002 16:21, Ciaran Johnston wrote:
|
||||
> Dublin said:
|
||||
> > If you copy the files from your disk to the c: partition and mark it as
|
||||
> > active it should work ...
|
||||
>
|
||||
> Yeah, I figured that, but it doesn't seem to ... well, if that's the case
|
||||
> I'll give it another go tonight, maybe come back with some error messages.
|
||||
>
|
||||
> Just to clarify for those who didn't understand me initially - I have a
|
||||
> floppy drive installed, but it doesn't physically work. There's nowhere
|
||||
> handy to pick one up where I am, and I don't fancy waiting a few days for
|
||||
> one to arrive from Peats.
|
||||
>
|
||||
> Thanks for the answers,
|
||||
> Ciaran.
|
||||
>
|
||||
> > You especially need io.sys, command.com and msdos.sys
|
||||
> >
|
||||
> > your cd driver .sys and read the autoexec.bat and config.sys files for
|
||||
> > hints on what you did with your boot floppy <g>
|
||||
> >
|
||||
> > P
|
||||
> >
|
||||
> > On Wed, 2002-08-21 at 14:07, Ciaran Johnston wrote:
|
||||
> >> Hi folks,
|
||||
> >> The situation is this: at home, I have a PC with 2 10Gig HDDs, and no
|
||||
> >> (working) floppy drive. I have been running Linux solely for the last
|
||||
> >> year, but recently got the urge to, among other things, play some of
|
||||
> >> my Windoze games. I normally install the windows partition using a
|
||||
> >> boot floppy which I have conveniently zipped up, but I haven't any way
|
||||
> >> of writing or reading a floppy.
|
||||
> >> So, how do I go about:
|
||||
> >> 1. formatting a C: drive with system files (normally I would use
|
||||
> >> format /s c: from the floppy).
|
||||
> >> 2. Installing the CDROM drivers (my bootdisk (I wrote it many years
|
||||
> >> ago) does this normally).
|
||||
> >> 3. Booting from the partition?
|
||||
> >>
|
||||
> >> I wiped all my linux partitions from the first drive and created
|
||||
> >> partitions for Windows (HDA1) Slackware and RedHat. I used cfdisk for
|
||||
> >> this. I made the first drive (hda) bootable. I then installed the
|
||||
> >> windows partition in LILO and reran lilo (installed in MBR). I copied
|
||||
> >> the contents of boot.zip to my new windows partition and tried to boot
|
||||
> >> it - all I get is a garbled line of squiggles.
|
||||
> >>
|
||||
> >> Anyone any ideas? I can't think of anywhere in Athlone to get a new
|
||||
> >> floppy drive this evening...
|
||||
> >>
|
||||
> >> Thanks,
|
||||
> >> Ciaran.
|
||||
> >>
|
||||
> >>
|
||||
> >>
|
||||
> >> --
|
||||
> >> Irish Linux Users' Group: ilug@linux.ie
|
||||
> >> http://www.linux.ie/mailman/listinfo/ilug for (un)subscription
|
||||
> >> information. List maintainer: listmaster@linux.ie
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
129
lib/jwz/testdata/0045.910fa2e79f96c646f1b6c987c65cbe3f.eml
vendored
Normal file
129
lib/jwz/testdata/0045.910fa2e79f96c646f1b6c987c65cbe3f.eml
vendored
Normal file
@@ -0,0 +1,129 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:31 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id BE9C147C69
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:48 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:48 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7MK4SZ22618 for <zzzz@example.com>;
|
||||
Thu, 22 Aug 2002 21:04:29 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id E6AD62940D8; Thu, 22 Aug 2002 13:02:08 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from mail.evergo.net (unknown [206.191.151.2]) by xent.com
|
||||
(Postfix) with SMTP id 790A7294099 for <fork@xent.com>; Thu,
|
||||
22 Aug 2002 13:01:08 -0700 (PDT)
|
||||
Received: (qmail 21546 invoked from network); 22 Aug 2002 20:02:51 -0000
|
||||
Received: from dsl.206.191.151.102.evergo.net (HELO JMHALL)
|
||||
(206.191.151.102) by mail.evergo.net with SMTP; 22 Aug 2002 20:02:51 -0000
|
||||
Reply-To: <johnhall@evergo.net>
|
||||
From: "John Hall" <johnhall@evergo.net>
|
||||
To: <fork@example.com>
|
||||
Subject: Property rights in the 3rd World (De Soto's Mystery of Capital)
|
||||
Message-Id: <008701c24a16$e3443830$0200a8c0@JMHALL>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="US-ASCII"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Priority: 3 (Normal)
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook, Build 10.0.2627
|
||||
In-Reply-To: <200208221811.LAA21283@maltesecat>
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000
|
||||
Importance: Normal
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 13:02:45 -0700
|
||||
|
||||
|
||||
|
||||
> From: fork-admin@xent.com [mailto:fork-admin@xent.com] On Behalf Of
|
||||
Dave
|
||||
> Long
|
||||
> Sent: Thursday, August 22, 2002 11:12 AM
|
||||
> To: fork@example.com
|
||||
> Subject: RE: The Curse of India's Socialism
|
||||
>
|
||||
>
|
||||
>
|
||||
> When I'd read that "getting legal title
|
||||
> can take 20 years", when I believe that
|
||||
> 1 year ought to be more than sufficient,
|
||||
> (and helped by the Cairo reference) I'd
|
||||
> assumed that we were talking about the
|
||||
> urban poor.
|
||||
>
|
||||
> If I see people living in mansions, or
|
||||
> even in suburban subdivisions, I assume
|
||||
> they didn't have too much trouble with
|
||||
> their titles.
|
||||
|
||||
Pg 177:
|
||||
In another country, a local newspaper, intrigued by our evidence of
|
||||
extralegal real estate holdings, checked to see if the head of state's
|
||||
official residence had a recorded title. It did not.
|
||||
|
||||
Pg 92:
|
||||
The value of land in the formal sector of Lima averages US$50 per square
|
||||
meter, whereas in the area of Gamarra, where a great deal of Peru's
|
||||
informal manufacturing sector resides, the value per square meter can go
|
||||
as high as US$3,000.
|
||||
|
||||
==========
|
||||
|
||||
I'd have made the same assumption you did. De Soto says that isn't
|
||||
correct. You can find mansions that don't have title. A lot of them,
|
||||
in fact. But they can't be used for collateral for a loan, or otherwise
|
||||
participate as 'capital' because of their extra-legal status.
|
||||
|
||||
|
||||
> > Mr. Long, I think you'd particularly enjoy the De Soto work.
|
||||
>
|
||||
> On the "to find" list. Any chance of
|
||||
> an explanation of that "Bell Jar" in
|
||||
> the meantime?
|
||||
|
||||
French historian Fernand Braudel (so Braudel's Bell Jar, not De Soto's)
|
||||
|
||||
==>
|
||||
|
||||
The key problem is to find out why that sector of society of the past,
|
||||
which I would not hesitate to call capitalist, should have lived as if
|
||||
in a bell jar, cut off from the rest; why was it not able to expand and
|
||||
conquer the whole of society? ... [Why was it that] a significant rate
|
||||
of capital formation was possible only in certain sectors and not in the
|
||||
whole market economy of the time? ... It would perhaps be teasingly
|
||||
paradoxial to say that whatever was in short supply, money certainly was
|
||||
not ... so this was an age where poor land was bought up and magnificent
|
||||
country residents built ... [How do we] resolve the contradiction ...
|
||||
between the depressed economic climate and the splendors of Florence
|
||||
under Lorenzo the Magnificent?
|
||||
|
||||
|
||||
--------------
|
||||
|
||||
De Soto's theory is that the Bell Jar is formed when you segregate those
|
||||
who have *practical* access to legal property rights and those who do
|
||||
not. The poor[1] have property -- lots and lots of property. What they
|
||||
don't have is access to the systems where we turn property into capital
|
||||
and allow it to start growing. Their property can only be exchanged
|
||||
with a small section of people who know them personally.
|
||||
|
||||
[1] Actual poor people, not 'poor' Americans with a living standard that
|
||||
is the envy of most of the world.
|
||||
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
52
lib/jwz/testdata/0046.05e8a863eaf20f90374d0a15427d9a16.eml
vendored
Normal file
52
lib/jwz/testdata/0046.05e8a863eaf20f90374d0a15427d9a16.eml
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:35 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id AE73347C6A
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:49 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:49 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7MKBTZ22948 for <zzzz@example.com>;
|
||||
Thu, 22 Aug 2002 21:11:29 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id E9D40294183; Thu, 22 Aug 2002 13:09:08 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from isolnetsux.techmonkeys.net (isolnetsux.techmonkeys.net
|
||||
[64.243.46.20]) by xent.com (Postfix) with SMTP id 317F2294099 for
|
||||
<fork@xent.com>; Thu, 22 Aug 2002 13:08:01 -0700 (PDT)
|
||||
Received: (qmail 2336 invoked by uid 500); 22 Aug 2002 20:09:34 -0000
|
||||
Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP;
|
||||
22 Aug 2002 20:09:34 -0000
|
||||
From: Chris Haun <chris@noskillz.com>
|
||||
X-X-Sender: chris@isolnetsux.techmonkeys.net
|
||||
To: fork@example.com
|
||||
Subject: public mailing list sign up package
|
||||
Message-Id: <Pine.LNX.4.44.0208221606260.675-100000@isolnetsux.techmonkeys.net>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: TEXT/PLAIN; charset=US-ASCII
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 16:09:34 -0400 (EDT)
|
||||
|
||||
Has anyone seen/heard of/used some package that would let a random person
|
||||
go to a webpage, create a mailing list, then administer that list. Also
|
||||
of course let ppl sign up for the lists and manage their subscriptions.
|
||||
Similar to the old listbot.org, but i'd like to have it running on my
|
||||
server not someone elses :)
|
||||
|
||||
Chris
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
128
lib/jwz/testdata/0047.5c3e049737a2813d4ac6f13f02362fb1.eml
vendored
Normal file
128
lib/jwz/testdata/0047.5c3e049737a2813d4ac6f13f02362fb1.eml
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
From: exmh-workers-admin@redhat.com Fri Aug 23 11:04:57 2002
|
||||
Return-Path: <exmh-workers-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 2E45844162
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:03:56 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:03:56 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MKYqZ23456 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 21:34:52 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id CAAE640F2B; Thu, 22 Aug 2002
|
||||
16:31:34 -0400 (EDT)
|
||||
Delivered-To: exmh-workers@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id DB93E40EF8
|
||||
for <exmh-workers@listman.redhat.com>; Thu, 22 Aug 2002 16:28:14 -0400
|
||||
(EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MKSBK05009 for exmh-workers@listman.redhat.com; Thu, 22 Aug 2002
|
||||
16:28:11 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MKSBY05005 for
|
||||
<exmh-workers@redhat.com>; Thu, 22 Aug 2002 16:28:11 -0400
|
||||
Received: from austin-jump.vircio.com
|
||||
(IDENT:82tsCXFmK++GyOiDHJbs18xfEBERjSkG@jump-austin.vircio.com
|
||||
[192.12.3.99]) by mx1.redhat.com (8.11.6/8.11.6) with SMTP id g7MKDfl14249
|
||||
for <exmh-workers@redhat.com>; Thu, 22 Aug 2002 16:13:41 -0400
|
||||
Received: (qmail 24109 invoked by uid 104); 22 Aug 2002 20:28:10 -0000
|
||||
Received: from cwg-exmh@DeepEddy.Com by localhost.localdomain with
|
||||
qmail-scanner-0.90 (uvscan: v4.1.60/v4218. . Clean. Processed in 0.366145
|
||||
secs); 22/08/2002 15:28:10
|
||||
Received: from deepeddy.vircio.com (@[10.1.2.1]) (envelope-sender
|
||||
<cwg-exmh@DeepEddy.Com>) by austin-jump.vircio.com (qmail-ldap-1.03) with
|
||||
SMTP for <exmh-workers@redhat.com>; 22 Aug 2002 20:28:10 -0000
|
||||
Received: (qmail 20300 invoked from network); 22 Aug 2002 20:28:07 -0000
|
||||
Received: from localhost (HELO deepeddy.vircio.com)
|
||||
(?KCbAAdDTk0hKfb6XCFGWgd9YDZ2s+oNu?@[127.0.0.1]) (envelope-sender
|
||||
<cwg-exmh@DeepEddy.Com>) by localhost (qmail-ldap-1.03) with SMTP for
|
||||
<exmh-workers@redhat.com>; 22 Aug 2002 20:28:07 -0000
|
||||
X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4
|
||||
To: Anders Eriksson <aeriksson@fastmail.fm>
|
||||
Cc: exmh-workers@example.com
|
||||
Subject: Re: CVS report
|
||||
In-Reply-To: <20020822182322.64D053F25@milou.dyndns.org>
|
||||
References: <20020822182322.64D053F25@milou.dyndns.org>
|
||||
X-Url: http://www.DeepEddy.Com/~cwg
|
||||
X-Image-Url: http://www.DeepEddy.Com/~cwg/chris.gif
|
||||
MIME-Version: 1.0
|
||||
Content-Type: multipart/signed;
|
||||
boundary="==_Exmh_267413022P";
|
||||
micalg=pgp-sha1;
|
||||
protocol="application/pgp-signature"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Message-Id: <1030048087.20291.TMDA@deepeddy.vircio.com>
|
||||
From: Chris Garrigues <cwg-exmh@DeepEddy.Com>
|
||||
X-Delivery-Agent: TMDA/0.57
|
||||
Reply-To: Chris Garrigues <cwg-dated-1030480087.b12d57@DeepEddy.Com>
|
||||
X-Loop: exmh-workers@example.com
|
||||
Sender: exmh-workers-admin@example.com
|
||||
Errors-To: exmh-workers-admin@example.com
|
||||
X-Beenthere: exmh-workers@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:exmh-workers-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-workers@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
||||
Date: Thu, 22 Aug 2002 15:28:05 -0500
|
||||
|
||||
--==_Exmh_267413022P
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
|
||||
> From: Anders Eriksson <aeriksson@fastmail.fm>
|
||||
> Date: Thu, 22 Aug 2002 20:23:17 +0200
|
||||
>
|
||||
>
|
||||
> Oooops!
|
||||
>
|
||||
> Doesn't work at all. Got this on startup and on any attempt to change folde
|
||||
> r (which fail)
|
||||
|
||||
~sigh~ I'd already found that and checked it in....apparently I did so after
|
||||
you checked it out and before you sent this mail...I hoped I was fast enough
|
||||
that you wouldn't see it.
|
||||
|
||||
Try again!
|
||||
|
||||
Chris
|
||||
|
||||
--
|
||||
Chris Garrigues http://www.DeepEddy.Com/~cwg/
|
||||
virCIO http://www.virCIO.Com
|
||||
716 Congress, Suite 200
|
||||
Austin, TX 78701 +1 512 374 0500
|
||||
|
||||
World War III: The Wrong-Doers Vs. the Evil-Doers.
|
||||
|
||||
|
||||
|
||||
|
||||
--==_Exmh_267413022P
|
||||
Content-Type: application/pgp-signature
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.0.6 (GNU/Linux)
|
||||
Comment: Exmh version 2.2_20000822 06/23/2000
|
||||
|
||||
iD8DBQE9ZUlVK9b4h5R0IUIRAr4LAJ9Mhzgw03dF2qiyqtMks72364uaqwCeJxp1
|
||||
23jNAVlrHHIDRMvMPXnfzoE=
|
||||
=HErg
|
||||
-----END PGP SIGNATURE-----
|
||||
|
||||
--==_Exmh_267413022P--
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-workers mailing list
|
||||
Exmh-workers@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
||||
|
||||
58
lib/jwz/testdata/0048.6dbad96d78f9dd6100a4ad2a8b8086b6.eml
vendored
Normal file
58
lib/jwz/testdata/0048.6dbad96d78f9dd6100a4ad2a8b8086b6.eml
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:39 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 7EC734415F
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:50 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:50 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7ML7TZ24823 for <zzzz@example.com>;
|
||||
Thu, 22 Aug 2002 22:07:30 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 4DC062940EE; Thu, 22 Aug 2002 14:05:09 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from argote.ch (argote.ch [80.65.224.17]) by xent.com (Postfix)
|
||||
with ESMTP id 2CC18294099 for <fork@xent.com>; Thu, 22 Aug 2002 14:04:34
|
||||
-0700 (PDT)
|
||||
Received: by argote.ch (Postfix, from userid 500) id D7039C44E;
|
||||
Thu, 22 Aug 2002 22:58:34 +0200 (CEST)
|
||||
To: fork@example.com
|
||||
Subject: Entrepreneurs
|
||||
Message-Id: <20020822205834.D7039C44E@argote.ch>
|
||||
From: harley@argote.ch (Robert Harley)
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 22:58:34 +0200 (CEST)
|
||||
|
||||
An apparent quote from Dubya, from the Times (sent to me by my Dad):
|
||||
|
||||
http://www.timesonline.co.uk/printFriendly/0,,1-43-351083,00.html
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
TONY BLAIR's special relationship with George W. Bush is under
|
||||
considerable strain. Not only do the two disagree on Yassir Arafat's
|
||||
tenure as leader of the Palestinian Authority, but Blair has started
|
||||
telling disparaging anecdotes about the President.
|
||||
|
||||
Baroness Williams of Crosby recalled a story told to her by 'my good
|
||||
friend Tony Blair' recently in Brighton. Blair, Bush and Jacques
|
||||
Chirac were discussing economics and, in particular, the decline of
|
||||
the French economy. 'The problem with the French,' Bush confided in
|
||||
Blair, 'is that they don't have a word for entrepreneur.'
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
R
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
41
lib/jwz/testdata/0049.bda43370915afa1f557f7edab6913e04.eml
vendored
Normal file
41
lib/jwz/testdata/0049.bda43370915afa1f557f7edab6913e04.eml
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
From: hauns_froehlingsdorf@infinetivity.com Fri Aug 23 11:05:35 2002
|
||||
Return-Path: <hauns_froehlingsdorf@infinetivity.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id DB68D44158
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:04:08 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:04:08 +0100 (IST)
|
||||
Received: from mail.infinetivity.com (mail.mninter.net [208.142.244.17])
|
||||
by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7ML6xZ24796 for
|
||||
<zzzz@example.com>; Thu, 22 Aug 2002 22:07:01 +0100
|
||||
Received: from mail.infinetivity.com (localhost.localdomain [127.0.0.1])
|
||||
by mail.infinetivity.com (8.12.1/8.12.1) with ESMTP id g7ML75fu008107 for
|
||||
<zzzz@example.com>; Thu, 22 Aug 2002 16:07:05 -0500
|
||||
Received: (from hfroehli@localhost) by mail.infinetivity.com
|
||||
(8.12.1/8.12.1/Submit) id g7ML75ue008106; Thu, 22 Aug 2002 16:07:05 -0500
|
||||
Date: Thu, 22 Aug 2002 16:07:05 -0500
|
||||
Message-Id: <200208222107.g7ML75ue008106@mail.infinetivity.com>
|
||||
To: "Justin Mason" <zzzz@example.com>
|
||||
From: hauns_froehlingsdorf@infinetivity.com
|
||||
Subject: Re: hauns_froehlingsdorf@infinetivity.com
|
||||
|
||||
This is an automated response to a message you have sent to hauns_froehlingsdorf@infinetivity.com.
|
||||
|
||||
I will be out of the office until Monday, August 26 2002.
|
||||
|
||||
I will reply to your email when I return.
|
||||
|
||||
Hauns
|
||||
|
||||
___________________________________
|
||||
|
||||
Hauns Froehlingsdorf
|
||||
Network/Systems Manager
|
||||
infinetivity, inc.
|
||||
952-225.4200
|
||||
http://www.infinetivity.com
|
||||
|
||||
|
||||
|
||||
100
lib/jwz/testdata/0050.fd9291b33ecd99af26da03a7d4152dc2.eml
vendored
Normal file
100
lib/jwz/testdata/0050.fd9291b33ecd99af26da03a7d4152dc2.eml
vendored
Normal file
@@ -0,0 +1,100 @@
|
||||
From: exmh-workers-admin@redhat.com Fri Aug 23 11:06:00 2002
|
||||
Return-Path: <exmh-workers-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id A1E4C4416C
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:04:17 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:04:17 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MLYdZ25762 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 22:34:39 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id 10427411C1; Thu, 22 Aug 2002
|
||||
17:29:31 -0400 (EDT)
|
||||
Delivered-To: exmh-workers@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 96EAC4119D
|
||||
for <exmh-workers@listman.redhat.com>; Thu, 22 Aug 2002 17:14:35 -0400
|
||||
(EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MLEW815033 for exmh-workers@listman.redhat.com; Thu, 22 Aug 2002
|
||||
17:14:32 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MLEWY15028 for
|
||||
<exmh-workers@redhat.com>; Thu, 22 Aug 2002 17:14:32 -0400
|
||||
Received: from milou.dyndns.org (h189n1fls22o974.telia.com
|
||||
[213.64.79.189]) by mx1.redhat.com (8.11.6/8.11.6) with SMTP id
|
||||
g7ML01l23716 for <exmh-workers@redhat.com>; Thu, 22 Aug 2002 17:00:01
|
||||
-0400
|
||||
Received: by milou.dyndns.org (Postfix, from userid 500) id 849EB3F27;
|
||||
Thu, 22 Aug 2002 23:14:25 +0200 (CEST)
|
||||
Received: from tippex.localdomain (localhost [127.0.0.1]) by
|
||||
milou.dyndns.org (Postfix) with ESMTP id 46B3D3F26; Thu, 22 Aug 2002
|
||||
23:14:25 +0200 (CEST)
|
||||
X-Mailer: exmh version 2.5_20020822 01/15/2001 with nmh-1.0.4
|
||||
To: Chris Garrigues <cwg-dated-1030480087.b12d57@DeepEddy.Com>
|
||||
Cc: exmh-workers@example.com
|
||||
Subject: Re: CVS report
|
||||
In-Reply-To: Message from Chris Garrigues
|
||||
<cwg-dated-1030480087.b12d57@DeepEddy.Com> of
|
||||
"Thu, 22 Aug 2002 15:28:05 CDT."
|
||||
<1030048087.20291.TMDA@deepeddy.vircio.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
From: Anders Eriksson <aeriksson@fastmail.fm>
|
||||
Message-Id: <20020822211425.849EB3F27@milou.dyndns.org>
|
||||
X-Loop: exmh-workers@example.com
|
||||
Sender: exmh-workers-admin@example.com
|
||||
Errors-To: exmh-workers-admin@example.com
|
||||
X-Beenthere: exmh-workers@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:exmh-workers-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-workers@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
||||
Date: Thu, 22 Aug 2002 23:14:20 +0200
|
||||
|
||||
|
||||
>>>>> On Thu, 22 Aug 2002, "Chris" == Chris Garrigues wrote:
|
||||
|
||||
Chris> --==_Exmh_267413022P Content-Type: text/plain;
|
||||
Chris> charset=us-ascii
|
||||
|
||||
+> From: Anders Eriksson <aeriksson@fastmail.fm> Date: Thu, 22 Aug
|
||||
+> 2002 20:23:17 +0200
|
||||
|
||||
+> Oooops!
|
||||
|
||||
+> Doesn't work at all. Got this on startup and on any attempt to
|
||||
+> change folde r (which fail)
|
||||
|
||||
Chris> ~sigh~ I'd already found that and checked it in....apparently
|
||||
Chris> I did so after you checked it out and before you sent this
|
||||
Chris> mail...I hoped I was fast enough that you wouldn't see it.
|
||||
|
||||
Chris> Try again!
|
||||
|
||||
|
||||
Works like a charm. It's like the box was on drugs or something.
|
||||
|
||||
However, while testing it a selected my favourite folder (l-k) and
|
||||
marked ~400 messages unread. THAT took forever, or about as long as
|
||||
Catch-up Unseen did before. Any suggestions?
|
||||
|
||||
/A
|
||||
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-workers mailing list
|
||||
Exmh-workers@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
||||
|
||||
54
lib/jwz/testdata/0051.9281d3f8a3faf47d09a7fafdf2caf26e.eml
vendored
Normal file
54
lib/jwz/testdata/0051.9281d3f8a3faf47d09a7fafdf2caf26e.eml
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
From: ilug-admin@linux.ie Fri Aug 23 11:07:52 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 7D6804416D
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:34 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:34 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MLTQZ25658 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 22:29:26 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id WAA23320; Thu, 22 Aug 2002 22:26:40 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from relay06.indigo.ie (relay06.indigo.ie [194.125.133.230]) by
|
||||
lugh.tuatha.org (8.9.3/8.9.3) with SMTP id WAA23285 for <ilug@linux.ie>;
|
||||
Thu, 22 Aug 2002 22:26:30 +0100
|
||||
Received: (qmail 8720 messnum 1046742 invoked from
|
||||
network[194.125.156.67/unknown]); 22 Aug 2002 21:26:29 -0000
|
||||
Received: from unknown (HELO localhost) (194.125.156.67) by
|
||||
relay06.indigo.ie (qp 8720) with SMTP; 22 Aug 2002 21:26:29 -0000
|
||||
Date: Thu, 22 Aug 2002 22:25:12 +0100
|
||||
MIME-Version: 1.0 (Apple Message framework v482)
|
||||
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
||||
From: Mark Twomey <bauwolf@indigo.ie>
|
||||
To: ilug@linux.ie
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Message-Id: <A49FCAEE-B615-11D6-9F96-000393679BE4@indigo.ie>
|
||||
X-Mailer: Apple Mail (2.482)
|
||||
Subject: [ILUG] Re: Sun Solaris
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
Al white wrote:
|
||||
|
||||
>erm... it runs Solaris x86 as standard...
|
||||
|
||||
It runs Solaris 8 x86 as standard.
|
||||
(I was joking Al)
|
||||
|
||||
M.
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
69
lib/jwz/testdata/0052.40794e238104d6b01f36b0f4d5145175.eml
vendored
Normal file
69
lib/jwz/testdata/0052.40794e238104d6b01f36b0f4d5145175.eml
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
From: neugens@libero.it Fri Aug 23 11:06:09 2002
|
||||
Return-Path: <neugens@libero.it>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id BBCE24415B
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:04:22 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:04:22 +0100 (IST)
|
||||
Received: from outgoing.securityfocus.com (outgoing3.securityfocus.com
|
||||
[66.38.151.27]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7MM0XZ26628 for <zzzz@example.com>; Thu, 22 Aug 2002 23:00:33 +0100
|
||||
Received: from lists.securityfocus.com (lists.securityfocus.com
|
||||
[66.38.151.19]) by outgoing.securityfocus.com (Postfix) with QMQP id
|
||||
86064A316F; Thu, 22 Aug 2002 15:50:00 -0600 (MDT)
|
||||
Mailing-List: contact secprog-help@securityfocus.com; run by ezmlm
|
||||
Precedence: bulk
|
||||
List-Id: <secprog.list-id.securityfocus.com>
|
||||
List-Post: <mailto:secprog@securityfocus.com>
|
||||
List-Help: <mailto:secprog-help@securityfocus.com>
|
||||
List-Unsubscribe: <mailto:secprog-unsubscribe@securityfocus.com>
|
||||
List-Subscribe: <mailto:secprog-subscribe@securityfocus.com>
|
||||
Delivered-To: mailing list secprog@securityfocus.com
|
||||
Delivered-To: moderator for secprog@securityfocus.com
|
||||
Received: (qmail 21232 invoked from network); 22 Aug 2002 21:14:49 -0000
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
From: Mario Torre <neugens@libero.it>
|
||||
To: secprog@securityfocus.com
|
||||
Subject: Re: Encryption approach to secure web applications
|
||||
Date: Thu, 22 Aug 2002 23:49:00 +0200
|
||||
User-Agent: KMail/1.4.1
|
||||
References: <200208222015.15926.neugens@libero.it>
|
||||
<00da01c24a15$561376c0$0201a8c0@home1>
|
||||
In-Reply-To: <00da01c24a15$561376c0$0201a8c0@home1>
|
||||
MIME-Version: 1.0
|
||||
Message-Id: <200208222349.00463.neugens@libero.it>
|
||||
Content-Transfer-Encoding: 8bit
|
||||
X-MIME-Autoconverted: from quoted-printable to 8bit by dogma.slashnull.org
|
||||
id g7MM0XZ26628
|
||||
|
||||
Hi,
|
||||
|
||||
Thank you for the useful replies, I have found some interesting
|
||||
tutorials in the ibm developer connection.
|
||||
|
||||
https://www6.software.ibm.com/developerworks/education/j-sec1
|
||||
|
||||
and
|
||||
|
||||
https://www6.software.ibm.com/developerworks/education/j-sec2
|
||||
|
||||
Registration is needed.
|
||||
|
||||
I will post the same message on the Web Application Security list, as
|
||||
suggested by someone.
|
||||
|
||||
For now, I thing I will use md5 for password checking (I will use the
|
||||
approach described in secure programmin fo linux and unix how-to).
|
||||
|
||||
I will separate the authentication module, so I can change its
|
||||
implementation at anytime.
|
||||
|
||||
Thank you again!
|
||||
|
||||
Mario Torre
|
||||
--
|
||||
Please avoid sending me Word or PowerPoint attachments.
|
||||
See http://www.fsf.org/philosophy/no-word-attachments.html
|
||||
|
||||
146
lib/jwz/testdata/0053.71bcb179e702d98e88fd0bc081ba0f52.eml
vendored
Normal file
146
lib/jwz/testdata/0053.71bcb179e702d98e88fd0bc081ba0f52.eml
vendored
Normal file
@@ -0,0 +1,146 @@
|
||||
From: exmh-workers-admin@redhat.com Fri Aug 23 11:06:06 2002
|
||||
Return-Path: <exmh-workers-admin@example.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id D496144159
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:04:19 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:04:19 +0100 (IST)
|
||||
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MLxBZ26598 for
|
||||
<zzzz-exmh@example.com>; Thu, 22 Aug 2002 22:59:11 +0100
|
||||
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
||||
listman.redhat.com (Postfix) with ESMTP id BF8834124B; Thu, 22 Aug 2002
|
||||
17:55:27 -0400 (EDT)
|
||||
Delivered-To: exmh-workers@listman.example.com
|
||||
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
||||
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 3B2293FDE8
|
||||
for <exmh-workers@listman.redhat.com>; Thu, 22 Aug 2002 17:54:20 -0400
|
||||
(EDT)
|
||||
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
||||
id g7MLsHq22079 for exmh-workers@listman.redhat.com; Thu, 22 Aug 2002
|
||||
17:54:17 -0400
|
||||
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
||||
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MLsHY22075 for
|
||||
<exmh-workers@redhat.com>; Thu, 22 Aug 2002 17:54:17 -0400
|
||||
Received: from austin-jump.vircio.com
|
||||
(IDENT:HxqxW0qPlEYsJtPvTHY/QDVQoen0XAyb@jump-austin.vircio.com
|
||||
[192.12.3.99]) by mx1.redhat.com (8.11.6/8.11.6) with SMTP id g7MLdkl30037
|
||||
for <exmh-workers@redhat.com>; Thu, 22 Aug 2002 17:39:46 -0400
|
||||
Received: (qmail 30389 invoked by uid 104); 22 Aug 2002 21:54:16 -0000
|
||||
Received: from cwg-exmh@DeepEddy.Com by localhost.localdomain with
|
||||
qmail-scanner-0.90 (uvscan: v4.1.60/v4218. . Clean. Processed in 0.45655
|
||||
secs); 22/08/2002 16:54:15
|
||||
Received: from deepeddy.vircio.com (@[10.1.2.1]) (envelope-sender
|
||||
<cwg-exmh@DeepEddy.Com>) by austin-jump.vircio.com (qmail-ldap-1.03) with
|
||||
SMTP for <exmh-workers@redhat.com>; 22 Aug 2002 21:54:15 -0000
|
||||
Received: (qmail 9069 invoked from network); 22 Aug 2002 21:54:12 -0000
|
||||
Received: from localhost (HELO deepeddy.vircio.com)
|
||||
(?qa8Nj+W90BKiXmUEK2N6dnYAHT1le0P7?@[127.0.0.1]) (envelope-sender
|
||||
<cwg-exmh@DeepEddy.Com>) by localhost (qmail-ldap-1.03) with SMTP for
|
||||
<exmh-workers@redhat.com>; 22 Aug 2002 21:54:12 -0000
|
||||
X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4
|
||||
To: Anders Eriksson <aeriksson@fastmail.fm>
|
||||
Cc: exmh-workers@example.com
|
||||
Subject: Re: CVS report
|
||||
In-Reply-To: <20020822211425.849EB3F27@milou.dyndns.org>
|
||||
References: <20020822211425.849EB3F27@milou.dyndns.org>
|
||||
X-Url: http://www.DeepEddy.Com/~cwg
|
||||
X-Image-Url: http://www.DeepEddy.Com/~cwg/chris.gif
|
||||
MIME-Version: 1.0
|
||||
Content-Type: multipart/signed;
|
||||
boundary="==_Exmh_592622610P";
|
||||
micalg=pgp-sha1;
|
||||
protocol="application/pgp-signature"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Message-Id: <1030053252.9051.TMDA@deepeddy.vircio.com>
|
||||
From: Chris Garrigues <cwg-exmh@DeepEddy.Com>
|
||||
X-Delivery-Agent: TMDA/0.57
|
||||
Reply-To: Chris Garrigues <cwg-dated-1030485252.99beab@DeepEddy.Com>
|
||||
X-Loop: exmh-workers@example.com
|
||||
Sender: exmh-workers-admin@example.com
|
||||
Errors-To: exmh-workers-admin@example.com
|
||||
X-Beenthere: exmh-workers@example.com
|
||||
X-Mailman-Version: 2.0.1
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:exmh-workers-request@example.com?subject=help>
|
||||
List-Post: <mailto:exmh-workers@example.com>
|
||||
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=subscribe>
|
||||
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
||||
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
||||
<mailto:exmh-workers-request@redhat.com?subject=unsubscribe>
|
||||
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
||||
Date: Thu, 22 Aug 2002 16:54:11 -0500
|
||||
|
||||
--==_Exmh_592622610P
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
|
||||
> From: Anders Eriksson <aeriksson@fastmail.fm>
|
||||
> Date: Thu, 22 Aug 2002 23:14:20 +0200
|
||||
>
|
||||
>
|
||||
> >>>>> On Thu, 22 Aug 2002, "Chris" == Chris Garrigues wrote:
|
||||
>
|
||||
> Chris> --==_Exmh_267413022P Content-Type: text/plain;
|
||||
> Chris> charset=us-ascii
|
||||
>
|
||||
> +> From: Anders Eriksson <aeriksson@fastmail.fm> Date: Thu, 22 Aug
|
||||
> +> 2002 20:23:17 +0200
|
||||
>
|
||||
> +> Oooops!
|
||||
>
|
||||
> +> Doesn't work at all. Got this on startup and on any attempt to
|
||||
> +> change folde r (which fail)
|
||||
>
|
||||
> Chris> ~sigh~ I'd already found that and checked it in....apparently
|
||||
> Chris> I did so after you checked it out and before you sent this
|
||||
> Chris> mail...I hoped I was fast enough that you wouldn't see it.
|
||||
>
|
||||
> Chris> Try again!
|
||||
>
|
||||
>
|
||||
> Works like a charm. It's like the box was on drugs or something.
|
||||
>
|
||||
> However, while testing it a selected my favourite folder (l-k) and
|
||||
> marked ~400 messages unread. THAT took forever, or about as long as
|
||||
> Catch-up Unseen did before. Any suggestions?
|
||||
|
||||
That's fixed now. I thought I'd caught all the occurrences of that particular
|
||||
coding stupidity.
|
||||
|
||||
Chris
|
||||
|
||||
--
|
||||
Chris Garrigues http://www.DeepEddy.Com/~cwg/
|
||||
virCIO http://www.virCIO.Com
|
||||
716 Congress, Suite 200
|
||||
Austin, TX 78701 +1 512 374 0500
|
||||
|
||||
World War III: The Wrong-Doers Vs. the Evil-Doers.
|
||||
|
||||
|
||||
|
||||
|
||||
--==_Exmh_592622610P
|
||||
Content-Type: application/pgp-signature
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.0.6 (GNU/Linux)
|
||||
Comment: Exmh version 2.2_20000822 06/23/2000
|
||||
|
||||
iD8DBQE9ZV2CK9b4h5R0IUIRAnWSAJwLZJvK8S4LQRv57W3WIbG9U2P+ywCdExEL
|
||||
kJaVNhuHKW9tp29wID5EjbU=
|
||||
=HDIb
|
||||
-----END PGP SIGNATURE-----
|
||||
|
||||
--==_Exmh_592622610P--
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
Exmh-workers mailing list
|
||||
Exmh-workers@redhat.com
|
||||
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
||||
|
||||
75
lib/jwz/testdata/0054.a6fa82d1b26c7772829e54ec41a1fbd3.eml
vendored
Normal file
75
lib/jwz/testdata/0054.a6fa82d1b26c7772829e54ec41a1fbd3.eml
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
From: ilug-admin@linux.ie Fri Aug 23 11:07:57 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 1ADF744173
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:36 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:36 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MM4mZ26717 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 23:04:48 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id XAA25152; Thu, 22 Aug 2002 23:02:40 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from smtp018.mail.yahoo.com (smtp018.mail.yahoo.com
|
||||
[216.136.174.115]) by lugh.tuatha.org (8.9.3/8.9.3) with SMTP id XAA25126
|
||||
for <ilug@linux.ie>; Thu, 22 Aug 2002 23:02:32 +0100
|
||||
Received: from p977.as2.cra.dublin.eircom.net (HELO mfrenchw2k)
|
||||
(mfrench42@159.134.179.209 with login) by smtp.mail.vip.sc5.yahoo.com with
|
||||
SMTP; 22 Aug 2002 22:02:25 -0000
|
||||
Message-Id: <004b01c24a27$149934c0$f264a8c0@sabeo.ie>
|
||||
From: "Matthew French" <mfrench42@yahoo.co.uk>
|
||||
To: <ilug@linux.ie>
|
||||
References: <A49FCAEE-B615-11D6-9F96-000393679BE4@indigo.ie>
|
||||
Subject: Re: [ILUG] Re: Sun Solaris
|
||||
Date: Thu, 22 Aug 2002 22:58:39 +0100
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Priority: 3
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
Mark Twomey joked:
|
||||
> >erm... it runs Solaris x86 as standard...
|
||||
>
|
||||
> It runs Solaris 8 x86 as standard.
|
||||
> (I was joking Al)
|
||||
|
||||
And will run Solaris 9 when Sun catch up with the x86 drivers and kernel.
|
||||
|
||||
Although don't hold your breath for the free DVD. It will never come.
|
||||
|
||||
(Spot the person who applied for the free Solaris 9 DVD, only to be told
|
||||
three months later it is no longer available.<mutter>)
|
||||
|
||||
FWIW Solaris and Linux seem to be getting closer all the time. I can no
|
||||
longer see any specific reason why one is better than the other. Expect Red
|
||||
Hat Solaris 11 any time now... <grin>
|
||||
|
||||
- Matthew
|
||||
|
||||
|
||||
|
||||
__________________________________________________
|
||||
Do You Yahoo!?
|
||||
Everything you'll ever need on one web page
|
||||
from News and Sport to Email and Music Charts
|
||||
http://uk.my.yahoo.com
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
108
lib/jwz/testdata/0055.b5509ace7ed62c900779c0c51cca92a3.eml
vendored
Normal file
108
lib/jwz/testdata/0055.b5509ace7ed62c900779c0c51cca92a3.eml
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:44 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 82FE344172
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:52 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:52 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7MM5UZ26911 for <zzzz@example.com>;
|
||||
Thu, 22 Aug 2002 23:05:31 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 055142940C8; Thu, 22 Aug 2002 15:03:09 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from samosa.chappati.org (ar1-nat-sp.collab.net [63.251.56.5])
|
||||
by xent.com (Postfix) with ESMTP id BED1C294099 for <fork@xent.com>;
|
||||
Thu, 22 Aug 2002 15:02:43 -0700 (PDT)
|
||||
Received: by samosa.chappati.org (Postfix, from userid 500) id 4F08E126E69;
|
||||
Thu, 22 Aug 2002 15:04:02 -0700 (PDT)
|
||||
From: Manoj Kasichainula <manojk+fork@io.com>
|
||||
To: fork@example.com
|
||||
Subject: Re: Entrepreneurs
|
||||
Message-Id: <20020822220402.GA504@samosa.chappati.org>
|
||||
Mail-Followup-To: fork@example.com
|
||||
References: <20020822205834.D7039C44E@argote.ch>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Content-Disposition: inline
|
||||
In-Reply-To: <20020822205834.D7039C44E@argote.ch>
|
||||
User-Agent: Mutt/1.5.1i
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 15:04:02 -0700
|
||||
|
||||
On Thu, Aug 22, 2002 at 10:58:34PM +0200, Robert Harley wrote:
|
||||
> An apparent quote from Dubya, from the Times (sent to me by my Dad):
|
||||
>
|
||||
> http://www.timesonline.co.uk/printFriendly/0,,1-43-351083,00.html
|
||||
|
||||
http://www.snopes.com/quotes/bush.htm
|
||||
|
||||
Claim: President George W. Bush proclaimed, "The problem with
|
||||
the French is that they don't have a word for entrepreneur."
|
||||
|
||||
Status: False.
|
||||
|
||||
Origins: Yet another French fried "George W. Bush is dumb"
|
||||
story has been taken up by those who like their caricatures
|
||||
drawn in stark, bold lines. According to scuttlebutt that
|
||||
emerged in the British press in July 2002, President Bush,
|
||||
Britain's Prime Minister Tony Blair, and France's President
|
||||
Jacques Chirac were discussing economics and, in particular,
|
||||
the decline of the French economy. "The problem with the
|
||||
French," Bush afterwards confided in Blair, "is that they don't
|
||||
have a word for entrepreneur."
|
||||
|
||||
The source was Shirley Williams, also known as the Baroness
|
||||
Williams of Crosby, who claimed "my good friend Tony Blair" had
|
||||
recently regaled her with this anecdote in Brighton.
|
||||
|
||||
Lloyd Grove of The Washington Post was unable to reach Baroness
|
||||
Williams to gain her confirmation of the tale, but he did
|
||||
receive a call from Alastair Campbell, Blair's director of
|
||||
communications and strategy. "I can tell you that the prime
|
||||
minister never heard George Bush say that, and he certainly
|
||||
never told Shirley Williams that President Bush did say it,"
|
||||
Campbell told The Post. "If she put this in a speech, it must
|
||||
have been a joke."
|
||||
|
||||
This is far from the first time Bush has been made the butt of
|
||||
a jibe meant to showcase what some perceive as his less than
|
||||
stellar intellectual abilities. Without straining our memories
|
||||
too hard, we can come up with three other instances we've
|
||||
chronicled on this site. In the summer of 2001, the joke of the
|
||||
moment centered upon a supposed study that had resulted in the
|
||||
ranking of Presidential IQs, with George W. Bush being pegged
|
||||
as the Chief Executive who scraped the bottom of the
|
||||
intelligence barrel. In December 2000 it was a fake Nostradamus
|
||||
quatrain which pontificated that the "village idiot" would win
|
||||
the 2000 Presidential election. And in the spring of 2002, it
|
||||
was the story of Bush's waving at Stevie Wonder that set folks
|
||||
to chortling up their sleeves.
|
||||
|
||||
Stories that illustrate this widely believed intellectual
|
||||
shortcoming will always waft after George W. Bush because they
|
||||
seemingly confirm what many already hold as true about this
|
||||
public figure, that he's not the brightest fellow that's ever
|
||||
been. It is human nature to revel in yarns that the hearer at
|
||||
some level agrees with, thus tales of this sort will always
|
||||
fall upon appreciative ears.
|
||||
|
||||
Barbara "ears of corn" Mikkelson
|
||||
|
||||
Last updated: 29 July 2002
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
105
lib/jwz/testdata/0056.6ac9eb23e2ef6c7e7eabc3fb0ac3038a.eml
vendored
Normal file
105
lib/jwz/testdata/0056.6ac9eb23e2ef6c7e7eabc3fb0ac3038a.eml
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
From: ilug-admin@linux.ie Fri Aug 23 11:07:57 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 36CBB4416E
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:35 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:35 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MM12Z26648 for
|
||||
<zzzz-ilug@example.com>; Thu, 22 Aug 2002 23:01:02 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id WAA24933; Thu, 22 Aug 2002 22:59:25 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from redpie.com (redpie.com [216.122.135.208] (may be forged))
|
||||
by lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id WAA24894 for
|
||||
<ilug@linux.ie>; Thu, 22 Aug 2002 22:59:17 +0100
|
||||
Received: from justin ([194.46.28.223]) by redpie.com (8.8.7/8.8.5) with
|
||||
SMTP id OAA03470 for <ilug@linux.ie>; Thu, 22 Aug 2002 14:59:13 -0700
|
||||
(PDT)
|
||||
From: "Kiall Mac Innes" <kialllists@redpie.com>
|
||||
To: "ILUG" <ilug@linux.ie>
|
||||
Subject: RE: [ILUG] Newbie seeks advice - Suse 7.2
|
||||
Date: Thu, 22 Aug 2002 23:06:27 +0100
|
||||
Message-Id: <BCEFLMCEIJHPCPLGADJICEEICAAA.kialllists@redpie.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Priority: 3 (Normal)
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
|
||||
Importance: Normal
|
||||
In-Reply-To: <3d65260f.948.0@mail.dnet.co.uk>
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4522.1200
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
hehe sorry but if you hit caps lock twice the computer crashes? theres one
|
||||
ive never heard before... have you tryed Dell support yet? I think dell
|
||||
computers prefer RedHat... (dell provide some computers pre-loaded with red
|
||||
hat) i dont know for sure tho! so get someone elses opnion as well as
|
||||
mine...
|
||||
|
||||
-----Original Message-----
|
||||
From: ilug-admin@linux.ie [mailto:ilug-admin@linux.ie]On Behalf Of Peter
|
||||
Staunton
|
||||
Sent: 22 August 2002 19:58
|
||||
To: ilug@linux.ie
|
||||
Subject: [ILUG] Newbie seeks advice - Suse 7.2
|
||||
|
||||
|
||||
Folks,
|
||||
|
||||
my first time posting - have a bit of Unix experience, but am new to Linux.
|
||||
|
||||
|
||||
Just got a new PC at home - Dell box with Windows XP. Added a second hard
|
||||
disk
|
||||
for Linux. Partitioned the disk and have installed Suse 7.2 from CD, which
|
||||
went
|
||||
fine except it didn't pick up my monitor.
|
||||
|
||||
I have a Dell branded E151FPp 15" LCD flat panel monitor and a nVidia
|
||||
GeForce4
|
||||
Ti4200 video card, both of which are probably too new to feature in Suse's
|
||||
default
|
||||
set. I downloaded a driver from the nVidia website and installed it using
|
||||
RPM.
|
||||
Then I ran Sax2 (as was recommended in some postings I found on the net),
|
||||
but
|
||||
it still doesn't feature my video card in the available list. What next?
|
||||
|
||||
Another problem. I have a Dell branded keyboard and if I hit Caps-Lock
|
||||
twice,
|
||||
the whole machine crashes (in Linux, not Windows) - even the on/off switch
|
||||
is
|
||||
inactive, leaving me to reach for the power cable instead.
|
||||
|
||||
If anyone can help me in any way with these probs., I'd be really grateful -
|
||||
I've searched the 'net but have run out of ideas.
|
||||
|
||||
Or should I be going for a different version of Linux such as RedHat?
|
||||
Opinions
|
||||
welcome.
|
||||
|
||||
Thanks a lot,
|
||||
Peter
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
92
lib/jwz/testdata/0057.be5e34dcebd922928045634015e3ed78.eml
vendored
Normal file
92
lib/jwz/testdata/0057.be5e34dcebd922928045634015e3ed78.eml
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
From: iiu-admin@taint.org Fri Aug 23 11:06:32 2002
|
||||
Return-Path: <iiu-admin@taint.org>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id AC1494416F
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:04:29 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:04:29 +0100 (IST)
|
||||
Received: from dogma.slashnull.org (localhost [127.0.0.1]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MNM9Z29719;
|
||||
Fri, 23 Aug 2002 00:22:09 +0100
|
||||
Received: from mail00.svc.cra.dublin.eircom.net
|
||||
(mail00.svc.cra.dublin.eircom.net [159.134.118.16]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with SMTP id g7MNJfZ29657 for <iiu@taint.org>;
|
||||
Fri, 23 Aug 2002 00:19:41 +0100
|
||||
Received: (qmail 44295 messnum 519748 invoked from
|
||||
network[159.134.100.45/k100-45.bas1.dbn.dublin.eircom.net]);
|
||||
22 Aug 2002 23:19:43 -0000
|
||||
Received: from k100-45.bas1.dbn.dublin.eircom.net (HELO ted.nua.ie)
|
||||
(159.134.100.45) by mail00.svc.cra.dublin.eircom.net (qp 44295) with SMTP;
|
||||
22 Aug 2002 23:19:43 -0000
|
||||
Message-Id: <5.1.1.6.0.20020823001344.0302c548@dogma.slashnull.org>
|
||||
X-Sender: antoinmail@dogma.slashnull.org
|
||||
X-Mailer: QUALCOMM Windows Eudora Version 5.1.1
|
||||
To: iiu@taint.org, iiu@taint.org
|
||||
From: Antoin O Lachtnain <antoin@eire.com>
|
||||
Subject: Re: [IIU] Eircom aDSL Nat'ing
|
||||
In-Reply-To: <1030032645.73395.1.camel@flapjack.netability.ie>
|
||||
References: <3D650A2D.1000301@dcu.ie> <3D650A2D.1000301@dcu.ie>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="us-ascii"; format=flowed
|
||||
Sender: iiu-admin@taint.org
|
||||
Errors-To: iiu-admin@taint.org
|
||||
X-Beenthere: iiu@iiu.taint.org
|
||||
X-Mailman-Version: 2.0.10
|
||||
Precedence: bulk
|
||||
Reply-To: iiu@taint.org
|
||||
List-Unsubscribe: <http://iiu.taint.org/mailman/listinfo/iiu>,
|
||||
<mailto:iiu-request@iiu.taint.org?subject=unsubscribe>
|
||||
List-Id: Irish Internet Users <iiu.iiu.taint.org>
|
||||
List-Post: <mailto:iiu@iiu.taint.org>
|
||||
List-Help: <mailto:iiu-request@iiu.taint.org?subject=help>
|
||||
List-Subscribe: <http://iiu.taint.org/mailman/listinfo/iiu>,
|
||||
<mailto:iiu-request@iiu.taint.org?subject=subscribe>
|
||||
List-Archive: <http://iiu.taint.org/pipermail/iiu/>
|
||||
Date: Fri, 23 Aug 2002 00:17:46 +0100
|
||||
|
||||
At 17:10 22/08/2002 +0100, Nick Hilliard wrote:
|
||||
> > apologies for the possible silly question (i don't think it is, but),
|
||||
> > but is Eircom's aDSL service NAT'ed?
|
||||
>
|
||||
>No - you get unfiltered access with a real (but dynamic) IP address.
|
||||
>
|
||||
> > and what implications would that have for VoIP? I know there are
|
||||
> > difficulties with VoIP or connecting to clients connected to a NAT'ed
|
||||
> > network from the internet wild (i.e. machines with static, real IPs)
|
||||
>
|
||||
>You will probably suffer from the high latency of DLS lines. Typically,
|
||||
>you're talking about 50ms RTT to the local bas, which is pretty high.
|
||||
>If your voip application can handle this, then you're ok.
|
||||
>
|
||||
>Nick
|
||||
|
||||
what's the deal with all this latency? it's not like that in other places
|
||||
where I've used dsl. i read some story about it being done that way to
|
||||
allow greater distances to be covered or something like that. however, my
|
||||
knowledge of physics is really only newtonian, and I don't understand how
|
||||
worsening latency could possibly improve the reliability of a 2000 foot
|
||||
long piece of copper. Perhaps it has something to do with stretching the
|
||||
time-space continuum? can someone explain this in words of five syllables
|
||||
or less?
|
||||
|
||||
a.
|
||||
|
||||
|
||||
|
||||
>_______________________________________________
|
||||
>IIU mailing list
|
||||
>IIU@iiu.taint.org
|
||||
>http://iiu.taint.org/mailman/listinfo/iiu
|
||||
|
||||
--
|
||||
|
||||
Antoin O Lachtnain
|
||||
** antoin@eire.com ** http://www.eire.com ** +353-87-240-6691
|
||||
|
||||
_______________________________________________
|
||||
IIU mailing list
|
||||
IIU@iiu.taint.org
|
||||
http://iiu.taint.org/mailman/listinfo/iiu
|
||||
|
||||
61
lib/jwz/testdata/0058.a7c28223050c35c3a22ac4e2b5969111.eml
vendored
Normal file
61
lib/jwz/testdata/0058.a7c28223050c35c3a22ac4e2b5969111.eml
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:46 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 6D38B47C6C
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:53 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:53 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7MNQTZ29953 for <zzzz@example.com>;
|
||||
Fri, 23 Aug 2002 00:26:29 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 02B56294186; Thu, 22 Aug 2002 16:24:09 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from mail1.panix.com (mail1.panix.com [166.84.1.72]) by xent.com
|
||||
(Postfix) with ESMTP id 403D8294099 for <fork@xent.com>; Thu,
|
||||
22 Aug 2002 16:23:54 -0700 (PDT)
|
||||
Received: from 159-98.nyc.dsl.access.net (159-98.nyc.dsl.access.net
|
||||
[166.84.159.98]) by mail1.panix.com (Postfix) with ESMTP id 414A54877A for
|
||||
<fork@xent.com>; Thu, 22 Aug 2002 19:25:38 -0400 (EDT)
|
||||
From: Lucas Gonze <lgonze@panix.com>
|
||||
X-X-Sender: lgonze@localhost.localdomain
|
||||
Cc: "Fork@Xent.Com" <fork@example.com>
|
||||
Subject: Re: The case for spam
|
||||
In-Reply-To: <3D6556DC.5070408@permafrost.net>
|
||||
Message-Id: <Pine.LNX.4.44.0208221910560.17440-100000@localhost.localdomain>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: TEXT/PLAIN; charset=US-ASCII
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 19:18:12 -0400 (EDT)
|
||||
|
||||
|
||||
Political mail (the snail kind) doesn't bother me. I like it a lot of the
|
||||
time, because as crap as it is at least it's not the kind of info you get
|
||||
on TV. Particularly for small time local politics, it's the best way to
|
||||
get information.
|
||||
|
||||
but what matters is that mail is speech, and political email has to be as
|
||||
well protected as any other political speech. Spam is *the* tool for
|
||||
dissident news, since the face that it's unsolicited means that recipients
|
||||
can't be blamed for being on a mailing list.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
69
lib/jwz/testdata/0059.b3b1b1d95976b70d9bbd6c39c6b8d5d2.eml
vendored
Normal file
69
lib/jwz/testdata/0059.b3b1b1d95976b70d9bbd6c39c6b8d5d2.eml
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:50 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 3AE1947C6D
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:54 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:54 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7N16TZ03375 for <zzzz@example.com>;
|
||||
Fri, 23 Aug 2002 02:06:30 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id D6F482940E1; Thu, 22 Aug 2002 18:04:08 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from argote.ch (argote.ch [80.65.224.17]) by xent.com (Postfix)
|
||||
with ESMTP id DE0D3294099 for <fork@xent.com>; Thu, 22 Aug 2002 18:03:05
|
||||
-0700 (PDT)
|
||||
Received: by argote.ch (Postfix, from userid 500) id D63AEC44E;
|
||||
Fri, 23 Aug 2002 02:57:05 +0200 (CEST)
|
||||
To: fork@example.com
|
||||
Subject: Re: Entrepreneurs
|
||||
Message-Id: <20020823005705.D63AEC44E@argote.ch>
|
||||
From: harley@argote.ch (Robert Harley)
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Fri, 23 Aug 2002 02:57:05 +0200 (CEST)
|
||||
|
||||
Manoj Kasichainula wrote;
|
||||
>http://www.snopes.com/quotes/bush.htm
|
||||
>
|
||||
>Claim: President George W. Bush proclaimed, "The problem with
|
||||
>the French is that they don't have a word for entrepreneur."
|
||||
>
|
||||
>Status: False.
|
||||
|
||||
Status: Crap.
|
||||
|
||||
|
||||
>Lloyd Grove of The Washington Post was unable to reach Baroness
|
||||
>Williams to gain her confirmation of the tale, but he did
|
||||
>receive a call from Alastair Campbell, Blair's director of
|
||||
>communications and strategy. "I can tell you that the prime
|
||||
>minister never heard George Bush say that, and he certainly
|
||||
>never told Shirley Williams that President Bush did say it,"
|
||||
>Campbell told The Post. "If she put this in a speech, it must
|
||||
>have been a joke."
|
||||
|
||||
So some guy failed to reach the source, but instead got spin doctor to
|
||||
deny it. Wot, is he thick enough to expect official confirmation
|
||||
that, yes, Blair is going around casting aspersions on Bush???
|
||||
|
||||
It's an amusing anecdote, I don't know if it's true or not, but certainly
|
||||
nothing here supports the authoritative sounding conclusion "Status: False".
|
||||
|
||||
|
||||
R
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
60
lib/jwz/testdata/0060.877bf70a297621b9dc3bab0095f95027.eml
vendored
Normal file
60
lib/jwz/testdata/0060.877bf70a297621b9dc3bab0095f95027.eml
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:50 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 1FC0647C6E
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:55 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:55 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7N1LTZ03723 for <zzzz@example.com>;
|
||||
Fri, 23 Aug 2002 02:21:29 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id D6D262940E7; Thu, 22 Aug 2002 18:19:08 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from hotmail.com (f160.law15.hotmail.com [64.4.23.160]) by
|
||||
xent.com (Postfix) with ESMTP id 95D1D294099 for <fork@xent.com>;
|
||||
Thu, 22 Aug 2002 18:18:38 -0700 (PDT)
|
||||
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
|
||||
Thu, 22 Aug 2002 18:20:23 -0700
|
||||
Received: from 216.30.74.2 by lw15fd.law15.hotmail.msn.com with HTTP;
|
||||
Fri, 23 Aug 2002 01:20:23 GMT
|
||||
X-Originating-Ip: [216.30.74.2]
|
||||
From: "Russell Turpin" <deafbox@hotmail.com>
|
||||
To: fork@example.com
|
||||
Subject: Re: The case for spam
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; format=flowed
|
||||
Message-Id: <F160luCBcKfExvWvqzA00000209@hotmail.com>
|
||||
X-Originalarrivaltime: 23 Aug 2002 01:20:23.0609 (UTC) FILETIME=[41265290:01C24A43]
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Fri, 23 Aug 2002 01:20:23 +0000
|
||||
|
||||
Lucas Gonze:
|
||||
>Spam is *the* tool for dissident news, since the fact that it's unsolicited
|
||||
>means that recipients can't be blamed for being on a mailing list.
|
||||
|
||||
That depends on how the list is collected, or
|
||||
even on what the senders say about how the list
|
||||
is collected. Better to just put it on a website,
|
||||
and that way it can be surfed anonymously. AND
|
||||
it doesn't clutter my inbox.
|
||||
|
||||
|
||||
_________________________________________________________________
|
||||
Chat with friends online, try MSN Messenger: http://messenger.msn.com
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
58
lib/jwz/testdata/0061.20319a885b8cf6c88c8098eafd731396.eml
vendored
Normal file
58
lib/jwz/testdata/0061.20319a885b8cf6c88c8098eafd731396.eml
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:55 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id D741B47C6F
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:55 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:55 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7N1jTZ04367 for <zzzz@example.com>;
|
||||
Fri, 23 Aug 2002 02:45:29 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 6A11E2940F5; Thu, 22 Aug 2002 18:43:08 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from smtp03.mrf.mail.rcn.net (smtp03.mrf.mail.rcn.net
|
||||
[207.172.4.62]) by xent.com (Postfix) with ESMTP id 2D0CE294099 for
|
||||
<fork@xent.com>; Thu, 22 Aug 2002 18:42:41 -0700 (PDT)
|
||||
X-Info: This message was accepted for relay by smtp03.mrf.mail.rcn.net as
|
||||
the sender used SMTP authentication
|
||||
X-Trace: UmFuZG9tSVZFFzJmsb6CFx8j2lnFk529F6pHVq8zxRebZ/rkY9nOITB+/+3fN03H5gv+GHxViF4=
|
||||
Received: from eb-174121.od.nih.gov ([156.40.174.121]
|
||||
helo=TOSHIBA-L8QYR7M) by smtp03.mrf.mail.rcn.net with asmtp (Exim 3.35 #6)
|
||||
id 17i3Uv-0007Lj-00 for fork@xent.com; Thu, 22 Aug 2002 21:44:25 -0400
|
||||
From: "John Evdemon" <jevdemon@acm.org>
|
||||
To: fork@example.com
|
||||
MIME-Version: 1.0
|
||||
Subject: Re: Entrepreneurs
|
||||
Message-Id: <3D655B37.2901.1DB12A@localhost>
|
||||
Priority: normal
|
||||
In-Reply-To: <20020823005705.D63AEC44E@argote.ch>
|
||||
X-Mailer: Pegasus Mail for Windows (v4.01)
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7BIT
|
||||
Content-Description: Mail message body
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Thu, 22 Aug 2002 21:44:23 -0400
|
||||
|
||||
On 23 Aug 2002 at 2:57, Robert Harley wrote:
|
||||
|
||||
> It's an amusing anecdote, I don't know if it's true or not,
|
||||
> but certainly nothing here supports the authoritative
|
||||
> sounding conclusion "Status: False".
|
||||
|
||||
I actually thought it was pretty funny and quite accurate. Who cares if the spinmeisters are denying it?
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
66
lib/jwz/testdata/0062.b675bdb7b9e2321dfe97e48037fe7782.eml
vendored
Normal file
66
lib/jwz/testdata/0062.b675bdb7b9e2321dfe97e48037fe7782.eml
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:08:56 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id A091D47C70
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:56 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:56 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7N5EVZ11380 for <zzzz@example.com>;
|
||||
Fri, 23 Aug 2002 06:14:32 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 0B70E2940D7; Thu, 22 Aug 2002 22:12:10 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from crank.slack.net (slack.net [166.84.151.181]) by xent.com
|
||||
(Postfix) with ESMTP id 4A7D2294099 for <fork@xent.com>; Thu,
|
||||
22 Aug 2002 22:11:44 -0700 (PDT)
|
||||
Received: by crank.slack.net (Postfix, from userid 596) id 8F5E23EDE0;
|
||||
Fri, 23 Aug 2002 01:15:29 -0400 (EDT)
|
||||
Received: from localhost (localhost [127.0.0.1]) by crank.slack.net
|
||||
(Postfix) with ESMTP id 8DD423ECF3; Fri, 23 Aug 2002 01:15:29 -0400 (EDT)
|
||||
From: Tom <tomwhore@slack.net>
|
||||
To: Robert Harley <harley@argote.ch>
|
||||
Cc: fork@example.com
|
||||
Subject: Re: Entrepreneurs
|
||||
In-Reply-To: <20020823005705.D63AEC44E@argote.ch>
|
||||
Message-Id: <Pine.BSO.4.44.0208230113400.8637-100000@crank.slack.net>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: TEXT/PLAIN; charset=US-ASCII
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Fri, 23 Aug 2002 01:15:29 -0400 (EDT)
|
||||
|
||||
On Fri, 23 Aug 2002, Robert Harley wrote:
|
||||
|
||||
|
||||
--]It's an amusing anecdote, I don't know if it's true or not, but certainly
|
||||
--]nothing here supports the authoritative sounding conclusion "Status: False".
|
||||
--]
|
||||
|
||||
So thats the trick, just let any anecdotal utterances you LIKE be deemed
|
||||
true until proven false, and then hold other data to the opposite
|
||||
standard...
|
||||
|
||||
Yeah, I see how that could be a handy tool RH.
|
||||
|
||||
|
||||
(before teh lablemongers are out and about, I could give a shit what
|
||||
BubbaU utters, its all shite. Kill your idols folks, your slips are
|
||||
showing)
|
||||
|
||||
-tom
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
151
lib/jwz/testdata/0064.7160290efcb7320ac8852369a695bcaf.eml
vendored
Normal file
151
lib/jwz/testdata/0064.7160290efcb7320ac8852369a695bcaf.eml
vendored
Normal file
@@ -0,0 +1,151 @@
|
||||
From: ilug-admin@linux.ie Fri Aug 23 11:08:03 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id E461E44174
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:36 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:36 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7N7RJZ14671 for
|
||||
<zzzz-ilug@example.com>; Fri, 23 Aug 2002 08:27:19 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id IAA13280; Fri, 23 Aug 2002 08:23:50 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from mail01.svc.cra.dublin.eircom.net
|
||||
(mail01.svc.cra.dublin.eircom.net [159.134.118.17]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with SMTP id IAA13247 for <ilug@linux.ie>; Fri,
|
||||
23 Aug 2002 08:23:42 +0100
|
||||
Received: (qmail 37798 messnum 126638 invoked from
|
||||
network[213.190.156.48/unknown]); 23 Aug 2002 07:23:11 -0000
|
||||
Received: from unknown (HELO XENON16) (213.190.156.48) by
|
||||
mail01.svc.cra.dublin.eircom.net (qp 37798) with SMTP; 23 Aug 2002
|
||||
07:23:11 -0000
|
||||
Message-Id: <001b01c24a76$315c63d0$e600000a@XENON16>
|
||||
From: "wintermute" <cout@eircom.net>
|
||||
To: <ilug@linux.ie>
|
||||
References: <3d65260f.948.0@mail.dnet.co.uk>
|
||||
Subject: Re: [ILUG] Newbie seeks advice - Suse 7.2
|
||||
Date: Fri, 23 Aug 2002 08:25:01 +0100
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Priority: 3
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4910.0300
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
< >
|
||||
> I downloaded a driver from the nVidia website and installed it using RPM.
|
||||
> Then I ran Sax2 (as was recommended in some postings I found on the net),
|
||||
but
|
||||
> it still doesn't feature my video card in the available list. What next?
|
||||
|
||||
|
||||
hmmm.
|
||||
|
||||
Peter.
|
||||
|
||||
Open a terminal and as root type
|
||||
lsmod
|
||||
you want to find a module called
|
||||
NVdriver.
|
||||
|
||||
If it isn't loaded then load it.
|
||||
#insmod NVdriver.o
|
||||
Oh and ensure you have this module loaded on boot.... else when you reboot
|
||||
you might be in for a nasty surprise.
|
||||
|
||||
Once the kernel module is loaded
|
||||
|
||||
#vim /etc/X11/XF86Config
|
||||
|
||||
in the section marked
|
||||
Driver I have "NeoMagic"
|
||||
you need to have
|
||||
Driver "nvidia"
|
||||
|
||||
Here is part of my XF86Config
|
||||
|
||||
Also note that using the card you are using you 'should' be able to safely
|
||||
use the FbBpp 32 option .
|
||||
|
||||
Section "Module"
|
||||
Load "extmod"
|
||||
Load "xie"
|
||||
Load "pex5"
|
||||
Load "glx"
|
||||
SubSection "dri" #You don't need to load this Peter.
|
||||
Option "Mode" "666"
|
||||
EndSubSection
|
||||
Load "dbe"
|
||||
Load "record"
|
||||
Load "xtrap"
|
||||
Load "speedo"
|
||||
Load "type1"
|
||||
EndSection
|
||||
|
||||
#Plus the Modelines for your monitor should be singfinicantly different.
|
||||
|
||||
Section "Monitor"
|
||||
Identifier "Monitor0"
|
||||
VendorName "Monitor Vendor"
|
||||
ModelName "Monitor Model"
|
||||
HorizSync 28.00-35.00
|
||||
VertRefresh 43.00-72.00
|
||||
Modeline "800x600" 36 800 824 896 1024 600 601 603 625
|
||||
Modeline "1024x768" 49 1024 1032 1176 1344 768 771 777 806
|
||||
EndSection
|
||||
|
||||
Section "Device"
|
||||
|
||||
Identifier "Card0"
|
||||
Driver "neomagic" #Change this to "nvidia"... making sure the modules
|
||||
are in the correct path
|
||||
VendorName "Neomagic" # "Nvidia"
|
||||
BoardName "NM2160"
|
||||
BusID "PCI:0:18:0"
|
||||
EndSection
|
||||
|
||||
Section "Screen"
|
||||
Identifier "Screen0"
|
||||
Device "Card0"
|
||||
Monitor "Monitor0"
|
||||
DefaultDepth 24
|
||||
SubSection "Display"
|
||||
Depth 1
|
||||
EndSubSection
|
||||
SubSection "Display"
|
||||
Depth 4
|
||||
EndSubSection
|
||||
SubSection "Display"
|
||||
Depth 8
|
||||
EndSubSection
|
||||
SubSection "Display"
|
||||
Depth 15
|
||||
EndSubSection
|
||||
SubSection "Display"
|
||||
Depth 16
|
||||
EndSubSection
|
||||
SubSection "Display"
|
||||
Depth 24
|
||||
#FbBpp 32 #Ie you should be able lto uncomment this line
|
||||
Modes "1024x768" "800x600" "640x480" # And add in higher resulutions as
|
||||
desired.
|
||||
EndSubSection
|
||||
EndSection
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
76
lib/jwz/testdata/0065.b72ddcc517cc317f3fc1e79c3feeca15.eml
vendored
Normal file
76
lib/jwz/testdata/0065.b72ddcc517cc317f3fc1e79c3feeca15.eml
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:09:00 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 6C8BB44161
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:57 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:57 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7N8CWZ15864 for <zzzz@example.com>;
|
||||
Fri, 23 Aug 2002 09:12:32 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 2DDA329418E; Fri, 23 Aug 2002 01:10:10 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from hughes-fe01.direcway.com (hughes-fe01.direcway.com
|
||||
[66.82.20.91]) by xent.com (Postfix) with ESMTP id 0EC36294099 for
|
||||
<fork@xent.com>; Fri, 23 Aug 2002 01:09:30 -0700 (PDT)
|
||||
Received: from spinnaker ([64.157.38.84]) by hughes-fe01.direcway.com
|
||||
(InterMail vK.4.04.00.00 201-232-137 license
|
||||
dcc4e84cb8fc01ca8f8654c982ec8526) with ESMTP id
|
||||
<20020823081149.JPJZ17240.hughes-fe01@spinnaker> for <fork@xent.com>;
|
||||
Fri, 23 Aug 2002 04:11:49 -0400
|
||||
Subject: Re: Entrepreneurs
|
||||
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
||||
MIME-Version: 1.0 (Apple Message framework v482)
|
||||
From: Chuck Murcko <chuck@topsail.org>
|
||||
To: fork@example.com
|
||||
Content-Transfer-Encoding: 7bit
|
||||
In-Reply-To: <20020822205834.D7039C44E@argote.ch>
|
||||
Message-Id: <DD4216FF-B66F-11D6-837F-003065F93D3A@topsail.org>
|
||||
X-Mailer: Apple Mail (2.482)
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Fri, 23 Aug 2002 01:11:02 -0700
|
||||
|
||||
According to my son, it was actually Homer Simpson, who claimed the
|
||||
French had no word for victory.
|
||||
|
||||
Chuck
|
||||
|
||||
On Thursday, August 22, 2002, at 01:58 PM, Robert Harley wrote:
|
||||
|
||||
> An apparent quote from Dubya, from the Times (sent to me by my Dad):
|
||||
>
|
||||
> http://www.timesonline.co.uk/printFriendly/0,,1-43-351083,00.html
|
||||
>
|
||||
> ------------------------------------------------------------------------------
|
||||
> TONY BLAIR's special relationship with George W. Bush is under
|
||||
> considerable strain. Not only do the two disagree on Yassir Arafat's
|
||||
> tenure as leader of the Palestinian Authority, but Blair has started
|
||||
> telling disparaging anecdotes about the President.
|
||||
>
|
||||
> Baroness Williams of Crosby recalled a story told to her by 'my good
|
||||
> friend Tony Blair' recently in Brighton. Blair, Bush and Jacques
|
||||
> Chirac were discussing economics and, in particular, the decline of
|
||||
> the French economy. 'The problem with the French,' Bush confided in
|
||||
> Blair, 'is that they don't have a word for entrepreneur.'
|
||||
> ------------------------------------------------------------------------------
|
||||
>
|
||||
> R
|
||||
> http://xent.com/mailman/listinfo/fork
|
||||
>
|
||||
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
61
lib/jwz/testdata/0066.dcf72ba90be7570f2f7edab45b23ae36.eml
vendored
Normal file
61
lib/jwz/testdata/0066.dcf72ba90be7570f2f7edab45b23ae36.eml
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:09:00 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 3CB6743F99
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:58 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:58 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7N8rUZ17136 for <zzzz@example.com>;
|
||||
Fri, 23 Aug 2002 09:53:30 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 7345F294192; Fri, 23 Aug 2002 01:51:08 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from argote.ch (argote.ch [80.65.224.17]) by xent.com (Postfix)
|
||||
with ESMTP id 308B6294099 for <fork@xent.com>; Fri, 23 Aug 2002 01:50:40
|
||||
-0700 (PDT)
|
||||
Received: by argote.ch (Postfix, from userid 500) id D5070C44E;
|
||||
Fri, 23 Aug 2002 10:44:35 +0200 (CEST)
|
||||
To: fork@example.com
|
||||
Subject: Re: Entrepreneurs
|
||||
Message-Id: <20020823084435.D5070C44E@argote.ch>
|
||||
From: harley@argote.ch (Robert Harley)
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Fri, 23 Aug 2002 10:44:35 +0200 (CEST)
|
||||
|
||||
Whore eructed:
|
||||
>--]It's an amusing anecdote, I don't know if it's true or not, but
|
||||
>--]certainly nothing here supports the authoritative sounding conclusion
|
||||
>--]"Status: False".
|
||||
>
|
||||
>So thats the trick, just let any anecdotal utterances you LIKE be deemed
|
||||
>true [...]
|
||||
|
||||
Exsqueeze me, but what part of "I don't know if it's true or not"
|
||||
did you fail to grok? I personally doubt it simply because I never
|
||||
heard of Bush and Chirac going to Brighton.
|
||||
|
||||
Next time I hear a joke, I promise not to laugh until I have checked
|
||||
out primary sources for confirmation in triplicate, OK? Good thing
|
||||
we have you around to keep us on the straight and narrow, all the while
|
||||
inundating us with such erudite profundities as "Kill your idols folks",
|
||||
"fight the powers that be, from with out and from with in" and innumerable
|
||||
other dippy bromides.
|
||||
|
||||
|
||||
R
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
48
lib/jwz/testdata/0067.d77af11e9b2a74048c073462efecca12.eml
vendored
Normal file
48
lib/jwz/testdata/0067.d77af11e9b2a74048c073462efecca12.eml
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
From: fork-admin@xent.com Fri Aug 23 11:09:07 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 0D1FA47C71
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:06:59 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:06:59 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7N9vXZ19107 for <zzzz@example.com>;
|
||||
Fri, 23 Aug 2002 10:57:34 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id 1993F294197; Fri, 23 Aug 2002 02:55:10 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from argote.ch (argote.ch [80.65.224.17]) by xent.com (Postfix)
|
||||
with ESMTP id D28BB294099 for <fork@xent.com>; Fri, 23 Aug 2002 02:54:38
|
||||
-0700 (PDT)
|
||||
Received: by argote.ch (Postfix, from userid 500) id ABDF4C44E;
|
||||
Fri, 23 Aug 2002 11:48:33 +0200 (CEST)
|
||||
To: fork@example.com
|
||||
Subject: Re: Entrepreneurs
|
||||
Message-Id: <20020823094833.ABDF4C44E@argote.ch>
|
||||
From: harley@argote.ch (Robert Harley)
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: Fri, 23 Aug 2002 11:48:33 +0200 (CEST)
|
||||
|
||||
I wrote:
|
||||
>I personally doubt it simply because I never heard of Bush and Chirac
|
||||
>going to Brighton.
|
||||
|
||||
Actually it doesn't say that they did, just that Blair spoke to
|
||||
Williams there.
|
||||
|
||||
R
|
||||
http://xent.com/mailman/listinfo/fork
|
||||
|
||||
27
lib/jwz/testdata/0068.f1c604a78739e4f966253d762c972dde.eml
vendored
Normal file
27
lib/jwz/testdata/0068.f1c604a78739e4f966253d762c972dde.eml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
From: quinlan@pathname.com Fri Aug 23 11:33:57 2002
|
||||
Return-Path: <quinlan@pathname.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id D1C5643F99
|
||||
for <zzzz@localhost>; Fri, 23 Aug 2002 06:33:56 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:33:56 +0100 (IST)
|
||||
Received: from proton.pathname.com
|
||||
(adsl-216-103-211-240.dsl.snfc21.pacbell.net [216.103.211.240]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7NAVFZ20272 for
|
||||
<zzzz@example.com>; Fri, 23 Aug 2002 11:31:15 +0100
|
||||
Received: from quinlan by proton.pathname.com with local (Exim 3.35 #1
|
||||
(Debian)) id 17iBiq-0005K9-00; Fri, 23 Aug 2002 03:31:20 -0700
|
||||
To: zzzz@example.com, craig@deersoft.com
|
||||
Subject: FYI - gone this weekend
|
||||
Cc: quinlan@pathname.com
|
||||
Message-Id: <E17iBiq-0005K9-00@proton.pathname.com>
|
||||
From: Daniel Quinlan <quinlan@pathname.com>
|
||||
Date: Fri, 23 Aug 2002 03:31:20 -0700
|
||||
|
||||
I won't be reading email until Sunday night or so. Good luck with
|
||||
2.40 and don't do anything I wouldn't do. ;-)
|
||||
|
||||
- Dan
|
||||
|
||||
113
lib/jwz/testdata/0069.7173de1d2da14306c5a20e8abda7a6e2.eml
vendored
Normal file
113
lib/jwz/testdata/0069.7173de1d2da14306c5a20e8abda7a6e2.eml
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
From: rpm-list-admin@freshrpms.net Thu Aug 29 16:32:22 2002
|
||||
Return-Path: <rpm-zzzlist-admin@freshrpms.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 5E99643F99
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 11:32:22 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 16:32:22 +0100 (IST)
|
||||
Received: from egwn.net (auth02.nl.egwn.net [193.172.5.4]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TFWmZ18299 for
|
||||
<zzzz-rpm@example.com>; Thu, 29 Aug 2002 16:32:48 +0100
|
||||
Received: from auth02.nl.egwn.net (localhost [127.0.0.1]) by egwn.net
|
||||
(8.11.6/8.11.6/EGWN) with ESMTP id g7TFN2J02111; Thu, 29 Aug 2002 17:23:02
|
||||
+0200
|
||||
Received: from python (gw01.es3.egwn.net [212.9.66.13]) (authenticated) by
|
||||
egwn.net (8.11.6/8.11.6/EGWN) with ESMTP id g7TFM0J01934 for
|
||||
<rpm-list@freshrpms.net>; Thu, 29 Aug 2002 17:22:00 +0200
|
||||
From: Matthias Saou <matthias@egwn.net>
|
||||
To: rpm-zzzlist@freshrpms.net
|
||||
Subject: Re: ALSA (almost) made easy
|
||||
Message-Id: <20020829171121.3b5d0506.matthias@egwn.net>
|
||||
In-Reply-To: <20020829141143.61528.qmail@web20002.mail.yahoo.com>
|
||||
References: <20020829133306.21299713.matthias@egwn.net>
|
||||
<20020829141143.61528.qmail@web20002.mail.yahoo.com>
|
||||
Organization: Electronic Group Interactive
|
||||
X-Mailer: Sylpheed version 0.8.2claws (GTK+ 1.2.10; i386-redhat-linux)
|
||||
Reply-BY: Tue, 24 Jul 2000 19:02:00 +1000
|
||||
X-Operating-System: GNU/Linux power!
|
||||
X-Message-Flag: Try using a real operating system : GNU/Linux power!
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Mailscanner: Found to be clean, Found to be clean
|
||||
Sender: rpm-zzzlist-admin@freshrpms.net
|
||||
Errors-To: rpm-zzzlist-admin@freshrpms.net
|
||||
X-Beenthere: rpm-zzzlist@freshrpms.net
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
Reply-To: rpm-zzzlist@freshrpms.net
|
||||
List-Help: <mailto:rpm-zzzlist-request@freshrpms.net?subject=help>
|
||||
List-Post: <mailto:rpm-zzzlist@freshrpms.net>
|
||||
List-Subscribe: <http://lists.freshrpms.net/mailman/listinfo/rpm-zzzlist>,
|
||||
<mailto:rpm-list-request@freshrpms.net?subject=subscribe>
|
||||
List-Id: Freshrpms RPM discussion list <rpm-zzzlist.freshrpms.net>
|
||||
List-Unsubscribe: <http://lists.freshrpms.net/mailman/listinfo/rpm-zzzlist>,
|
||||
<mailto:rpm-list-request@freshrpms.net?subject=unsubscribe>
|
||||
List-Archive: <http://lists.freshrpms.net/pipermail/rpm-zzzlist/>
|
||||
X-Original-Date: Thu, 29 Aug 2002 17:11:21 +0200
|
||||
Date: Thu, 29 Aug 2002 17:11:21 +0200
|
||||
|
||||
Once upon a time, Joshua wrote :
|
||||
|
||||
> Just a thought, would it be possible to generalize this ALSA
|
||||
> stuff to make building a kernel with *any* custom/optional/updated
|
||||
> modules an easy thing? I think some scripts or at least step-by-step
|
||||
> instructions would be great.
|
||||
>
|
||||
> For example, to build a kernel RPM with ALSA do:
|
||||
> 1. get the kernel source
|
||||
> 2. get the ALSA source
|
||||
> 3. run the custom-kernel.sh script
|
||||
> ...
|
||||
>
|
||||
> Or a kernel RPM with the lastest wireless LAN drivers:
|
||||
> 1. get the kernel source
|
||||
> 2. get the CVS driver source
|
||||
> 3. run the custom-kernel.sh script
|
||||
> ...
|
||||
>
|
||||
> etc.
|
||||
|
||||
This wouldn't be worth the effort involved IMHO, and would probably end up
|
||||
in relative breakage of a few systems if not carefully tested.
|
||||
Your first example is a good one, because I really think it's even easier
|
||||
currently :
|
||||
1. Leave your current kernel as-is
|
||||
2. Get the "alsa-driver" source rpm
|
||||
3. Rebuild and install resulting packages
|
||||
|
||||
Drivers that are written to be easily compiled as modules (like ltmodem,
|
||||
NVidia, ALSA etc.) can easily be repackaged separately as rpms and ported
|
||||
as easily for various kernel rpms from the source rpm.
|
||||
|
||||
Also, what you describe is sort of the opposite of what rpm packaging is in
|
||||
my mind. I see it more as a "one size fits all" achievement in the general
|
||||
case. And kernel isn't an exception (although there are packages optimized
|
||||
for various processors) since they all come with just about all the modules
|
||||
you'll ever need. Make that "one size fits many" then if you want ;-)
|
||||
|
||||
Last but not least : The kernel is something I'm trying to keep away from
|
||||
in my packaging since I really don't want to see newbies screwing up their
|
||||
systems because of packages on my website... same goes for GNOME, KDE and
|
||||
other major bits of the distribution since I also want people who happily
|
||||
use my packages to be able to upgrade to the next Red Hat Linux release
|
||||
without having their system turned into another Ximian mess.
|
||||
|
||||
Matthias
|
||||
|
||||
PS: Yes Chris, I'm worried about not giving you too much work! Less in fact
|
||||
since you can easily answer "freshrpms.net!" to people asking how to play
|
||||
DVDs, right? ;-))))
|
||||
|
||||
--
|
||||
Matthias Saou World Trade Center
|
||||
------------- Edificio Norte 4 Planta
|
||||
System and Network Engineer 08039 Barcelona, Spain
|
||||
Electronic Group Interactive Phone : +34 936 00 23 23
|
||||
|
||||
_______________________________________________
|
||||
RPM-List mailing list <RPM-List@freshrpms.net>
|
||||
http://lists.freshrpms.net/mailman/listinfo/rpm-list
|
||||
|
||||
82
lib/jwz/testdata/0070.4f269f2d783b479971f31006fe17ce62.eml
vendored
Normal file
82
lib/jwz/testdata/0070.4f269f2d783b479971f31006fe17ce62.eml
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 29 16:42:34 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 9AD0D43F99
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 11:42:34 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 16:42:34 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TFYfZ18351 for
|
||||
<zzzz-ilug@example.com>; Thu, 29 Aug 2002 16:34:42 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id QAA30663; Thu, 29 Aug 2002 16:32:44 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from mail02.svc.cra.dublin.eircom.net
|
||||
(mail02.svc.cra.dublin.eircom.net [159.134.118.18]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with SMTP id QAA30628 for <ilug@linux.ie>; Thu,
|
||||
29 Aug 2002 16:32:37 +0100
|
||||
Received: (qmail 48111 messnum 226577 invoked from
|
||||
network[213.190.156.48/unknown]); 29 Aug 2002 15:15:37 -0000
|
||||
Received: from unknown (HELO XENON16) (213.190.156.48) by
|
||||
mail02.svc.cra.dublin.eircom.net (qp 48111) with SMTP; 29 Aug 2002
|
||||
15:15:37 -0000
|
||||
Message-Id: <005401c24f6f$2f797b90$e600000a@XENON16>
|
||||
From: "wintermute" <cout@eircom.net>
|
||||
To: <ilug@linux.ie>
|
||||
References: <3D6E355E.9060008@diva.ie>
|
||||
Subject: Re: [ILUG] eircoms adsl modems
|
||||
Date: Thu, 29 Aug 2002 16:17:26 +0100
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Priority: 3
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4910.0300
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
It will function as a router if that is what you wish.
|
||||
|
||||
It even looks like the modem's embedded OS is some kind of linux, being that
|
||||
it has interesting interfaces like eth0.
|
||||
|
||||
I don't use it as a router though.... I just have it do the absolute minimum
|
||||
DSL stuff and do all the really fun stuff like pppoe on my linux box........
|
||||
|
||||
Also the manual tells you what the default password is.
|
||||
|
||||
Don't forget to run pppoe over the alcatel speedtouch 350i as in my case you
|
||||
'HAVE TO' have a bridge configured in the router/modem's software........
|
||||
This lists your VCI values etc.
|
||||
|
||||
|
||||
> Also, does anyone know if the high-end SpeedTouch, with
|
||||
> 4 ethernet ports, can act as a full router or do I still
|
||||
> need to run a pppoe stack on the linux box?
|
||||
>
|
||||
> Regards,
|
||||
>
|
||||
> Vin
|
||||
>
|
||||
>
|
||||
> --
|
||||
> Irish Linux Users' Group: ilug@linux.ie
|
||||
> http://www.linux.ie/mailman/listinfo/ilug for (un)subscription
|
||||
information.
|
||||
> List maintainer: listmaster@linux.ie
|
||||
>
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
74
lib/jwz/testdata/0071.75403094cab986a246c1e7ce3460e827.eml
vendored
Normal file
74
lib/jwz/testdata/0071.75403094cab986a246c1e7ce3460e827.eml
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
From: fork-admin@xent.com Thu Aug 29 16:52:57 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 7996B44155
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 11:52:54 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 16:52:54 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7TFklZ18708 for <zzzz@example.com>;
|
||||
Thu, 29 Aug 2002 16:46:47 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id AA6122940DA; Thu, 29 Aug 2002 08:44:09 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from smtp1.auracom.net (smtp1.auracom.net [165.154.140.23]) by
|
||||
xent.com (Postfix) with ESMTP id 1D5E12940DA for <FoRK@xent.com>;
|
||||
Thu, 29 Aug 2002 08:43:15 -0700 (PDT)
|
||||
Received: from maya.dyndns.org (ts5-038.ptrb.interhop.net
|
||||
[165.154.190.102]) by smtp1.auracom.net (8.11.2/8.11.2) with ESMTP id
|
||||
g7TFIpD06133; Thu, 29 Aug 2002 11:18:51 -0400 (EDT)
|
||||
Received: by maya.dyndns.org (Postfix, from userid 501) id 72BCA1C38A;
|
||||
Thu, 29 Aug 2002 11:19:27 -0400 (EDT)
|
||||
To: Eirikur Hallgrimsson <eh@mad.scientist.com>
|
||||
Cc: FoRK <FoRK@xent.com>
|
||||
Subject: Re: Internet saturation (but not in Iceland)
|
||||
References: <200208290358.03815.eh@mad.scientist.com>
|
||||
From: Gary Lawrence Murphy <garym@canada.com>
|
||||
X-Home-Page: http://www.teledyn.com
|
||||
Organization: TCI Business Innovation through Open Source Computing
|
||||
Message-Id: <m2znv5y9og.fsf@maya.dyndns.org>
|
||||
Reply-To: Gary Lawrence Murphy <garym@canada.com>
|
||||
X-Url: http://www.teledyn.com/
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: 29 Aug 2002 11:19:27 -0400
|
||||
|
||||
>>>>> "E" == Eirikur Hallgrimsson <eh@mad.scientist.com> writes:
|
||||
|
||||
E> Gary's news service at teledyn.com has an article on Internet
|
||||
E> Saturation. Let me ask you....If you were on a rock in the
|
||||
E> middle of the Atlantic, mostly in the dark for half the year,
|
||||
E> wouldn't *you* like a bit of internet distraction? They've
|
||||
E> already done the obvious and fiber-ringed the island.
|
||||
|
||||
There's lots of similar places. Saskatchewan, for example, once
|
||||
shared with Iceland the distinction of most telephone connections per
|
||||
capita, and for a long time shared the internet penetration lead with
|
||||
Iceland (Sask is a land-locked massive expanse of ultra-flat dust with
|
||||
only two rivers and farm sizes measured in the
|
||||
hundred-thousand-hectares).
|
||||
|
||||
It's still curious Iceland leads. Maybe there's just a deep cultural
|
||||
curiousity and fascination with watching advertising from the rest of
|
||||
the world. Maybe they're downloading Bjork videos.
|
||||
|
||||
--
|
||||
Gary Lawrence Murphy <garym@teledyn.com> TeleDynamics Communications Inc
|
||||
Business Advantage through Community Software : http://www.teledyn.com
|
||||
"Computers are useless. They can only give you answers."(Pablo Picasso)
|
||||
|
||||
|
||||
64
lib/jwz/testdata/0072.d1c080832388ae81835ca069e2efffa3.eml
vendored
Normal file
64
lib/jwz/testdata/0072.d1c080832388ae81835ca069e2efffa3.eml
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
From: fork-admin@xent.com Thu Aug 29 16:32:25 2002
|
||||
Return-Path: <fork-admin@xent.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id C408E43F9B
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 11:32:25 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 16:32:25 +0100 (IST)
|
||||
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with ESMTP id g7TFU0Z18213 for <zzzz@example.com>;
|
||||
Thu, 29 Aug 2002 16:30:03 +0100
|
||||
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
||||
with ESMTP id BDDE12940F6; Thu, 29 Aug 2002 08:27:09 -0700 (PDT)
|
||||
Delivered-To: fork@example.com
|
||||
Received: from mx.spiritone.com (mx.spiritone.com [216.99.221.5]) by
|
||||
xent.com (Postfix) with SMTP id 2E151294099 for <fork@xent.com>;
|
||||
Thu, 29 Aug 2002 08:26:08 -0700 (PDT)
|
||||
Received: (qmail 28639 invoked from network); 29 Aug 2002 15:28:11 -0000
|
||||
Received: (ofmipd 216.99.213.165); 29 Aug 2002 15:27:49 -0000
|
||||
Message-Id: <EEE172E4-BB63-11D6-8C04-00039344DDD6@ordersomewherechaos.com>
|
||||
From: "RossO" <fork@ordersomewherechaos.com>
|
||||
To: fork@example.com
|
||||
Subject: Re: Computational Recreations
|
||||
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
||||
MIME-Version: 1.0 (Apple Message framework v482)
|
||||
Content-Transfer-Encoding: 7bit
|
||||
In-Reply-To: <Pine.BSO.4.44.0208261252210.16631-100000@crank.slack.net>
|
||||
X-Mailer: Apple Mail (2.482)
|
||||
Sender: fork-admin@xent.com
|
||||
Errors-To: fork-admin@xent.com
|
||||
X-Beenthere: fork@example.com
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:fork-request@xent.com?subject=help>
|
||||
List-Post: <mailto:fork@example.com>
|
||||
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:fork-request@xent.com?subject=subscribe>
|
||||
List-Id: Friends of Rohit Khare <fork.xent.com>
|
||||
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
||||
<mailto:fork-request@xent.com?subject=unsubscribe>
|
||||
List-Archive: <http://xent.com/pipermail/fork/>
|
||||
Date: 29 Aug 2002 08:28:13 -0700
|
||||
|
||||
On Monday, August 26, 2002, at 09:59 AM, Tom wrote:
|
||||
|
||||
> Post MG in the 80's there were the colums by A K Dewdney that I dug a
|
||||
> bunch put into a book called Turing Omnibus and then there is , of
|
||||
> course, all the goodens put out by Dougy Hoffstadler.
|
||||
|
||||
A.K. Dewdney was the name I was looking for and the column was "Computer
|
||||
Recreations". Turns out he's still in Ontario and even has some homemade
|
||||
Sci-Fi online...
|
||||
|
||||
http://www.csd.uwo.ca/faculty/akd/TALES/index.html
|
||||
|
||||
Vat Man
|
||||
Programming Roger
|
||||
The Homunculids
|
||||
Alphie & Omega
|
||||
|
||||
|
||||
...Ross...
|
||||
|
||||
|
||||
146
lib/jwz/testdata/0073.cd29b8202a4b05db3c6f0d71b72a3260.eml
vendored
Normal file
146
lib/jwz/testdata/0073.cd29b8202a4b05db3c6f0d71b72a3260.eml
vendored
Normal file
@@ -0,0 +1,146 @@
|
||||
From: spamassassin-talk-admin@lists.sourceforge.net Thu Aug 29 16:42:46 2002
|
||||
Return-Path: <spamassassin-talk-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id EDB0C43F9B
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 11:42:43 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 16:42:44 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7TFYvZ18369 for <zzzz-sa@example.com>; Thu, 29 Aug 2002 16:34:58 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17kRI7-0008KP-00; Thu,
|
||||
29 Aug 2002 08:33:03 -0700
|
||||
Received: from moonbase.zanshin.com ([167.160.213.139]) by
|
||||
usw-sf-list1.sourceforge.net with esmtp (Cipher TLSv1:DES-CBC3-SHA:168)
|
||||
(Exim 3.31-VA-mm2 #1 (Debian)) id 17kRHG-000488-00 for
|
||||
<spamassassin-talk@lists.sourceforge.net>; Thu, 29 Aug 2002 08:32:10 -0700
|
||||
Received: from aztec.zanshin.com (IDENT:schaefer@aztec.zanshin.com
|
||||
[167.160.213.132]) by moonbase.zanshin.com (8.11.0/8.11.0) with ESMTP id
|
||||
g7TFW8J23933 for <spamassassin-talk@lists.sourceforge.net>; Thu,
|
||||
29 Aug 2002 08:32:08 -0700
|
||||
From: Bart Schaefer <schaefer@zanshin.com>
|
||||
To: Spamassassin-Talk <spamassassin-talk@example.sourceforge.net>
|
||||
Subject: Re: [SAtalk] O.T. Habeus -- Why?
|
||||
In-Reply-To: <3D6E255A.CB569D9B@hallikainen.com>
|
||||
Message-Id: <Pine.LNX.4.44.0208290714450.30051-100000@aztec.zanshin.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: TEXT/PLAIN; charset=US-ASCII
|
||||
Sender: spamassassin-talk-admin@example.sourceforge.net
|
||||
Errors-To: spamassassin-talk-admin@example.sourceforge.net
|
||||
X-Beenthere: spamassassin-talk@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:spamassassin-talk-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:spamassassin-talk@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-talk>,
|
||||
<mailto:spamassassin-talk-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: Talk about SpamAssassin <spamassassin-talk.example.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-talk>,
|
||||
<mailto:spamassassin-talk-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=spamassassin-talk>
|
||||
X-Original-Date: Thu, 29 Aug 2002 08:32:08 -0700 (PDT)
|
||||
Date: Thu, 29 Aug 2002 08:32:08 -0700 (PDT)
|
||||
|
||||
On 28 Aug 2002, Daniel Quinlan wrote:
|
||||
|
||||
> Dan Kohn <dan@dankohn.com> writes:
|
||||
>
|
||||
> > Daniel, it's easy enough for you to change the Habeas scores yourself
|
||||
> > on your installation. If Habeas fails to live up to its promise to
|
||||
> > only license the warrant mark to non-spammers and to place all
|
||||
> > violators on the HIL, then I have no doubt that Justin and Craig will
|
||||
> > quickly remove us from the next release. But, you're trying to kill
|
||||
> > Habeas before it has a chance to show any promise.
|
||||
>
|
||||
> I think I've worked on SA enough to understand that I can localize a
|
||||
> score. I'm just not comfortable with using SpamAssassin as a vehicle
|
||||
> for drumming up your business at the expense of our user base.
|
||||
|
||||
I have to agree here. If Habeas is going to die just because SA does not
|
||||
support it, that's a serious problem with the business model; but that is
|
||||
nobody's problem but Habeas's.
|
||||
|
||||
A possible solution is for Habeas's business model to include some kind of
|
||||
incentive for users of SA to give it the benefit of the doubt. I have yet
|
||||
to think of an incentive that fits the bill ...
|
||||
|
||||
On Thu, 29 Aug 2002, Justin Mason wrote:
|
||||
|
||||
> I don't see a problem supporting it in SpamAssassin -- but I see Dan's
|
||||
> points.
|
||||
>
|
||||
> - high score: as far as I can see, that's because SpamAssassin is
|
||||
> assigning such high scores to legit newsletters these days, and the
|
||||
> Habeas mark has to bring it down below that. :( IMO we have to fix
|
||||
> the high-scorers anyway -- no spam ever *needs* to score over 5 in our
|
||||
> scoring system, 5 == tagged anyway.
|
||||
|
||||
This is off the topic of the rest of this discussion, but amavisd (in all
|
||||
its incarnations) and MIMEDefang and several other MTA plugins all reject
|
||||
at SMTP time messages that scores higher than some threshold (often 10).
|
||||
If some new release were to start scoring all spam no higher than 5.1,
|
||||
there'd better be _zero_ FPs, because all those filters would drop their
|
||||
thresholds to 5.
|
||||
|
||||
On Thu, 29 Aug 2002, Michael Moncur wrote:
|
||||
|
||||
> But I agree that there needs to be more focus on eliminating rules that
|
||||
> frequently hit on newsletters. If any newsletters actually use the Habeas
|
||||
> mark, that will be one way to help.
|
||||
|
||||
Newsletters won't use the mark. Habeas is priced way too high -- a factor
|
||||
of at least 20 over what the market will bear, IMO -- on a per-message
|
||||
basis for most typical mailing lists (Lockergnome, say) to afford it.
|
||||
|
||||
On Thu, 29 Aug 2002, Harold Hallikainen wrote:
|
||||
|
||||
> Habeus has come up with a very clever way to use existing law to battle
|
||||
> spam. It seems that at some point they could drop the licensing fee to
|
||||
> $1 or less and make all their income off suing the spammers for
|
||||
> copyright infringement.
|
||||
|
||||
Sorry, that just can't work.
|
||||
|
||||
If the Habeas mark actually becomes both widespread enough in non-spam,
|
||||
and effectively-enforced enough to be absent from spam, such that, e.g.,
|
||||
SA could assign a positive score to messages that do NOT have it, then
|
||||
spammers are out of business and Habeas has no one to sue. There's nobody
|
||||
left to charge except the people who want (or are forced against their
|
||||
will because their mail won't get through otherwise) to use the mark.
|
||||
|
||||
Conversely, if there are enough spammers forging the mark for Habeas to
|
||||
make all its income suing them, then the mark is useless for the purpose
|
||||
for which it was designed.
|
||||
|
||||
Either way it seems to me that, after maybe a couple of lawsuits against
|
||||
real spammers and a lot of cease-and-desist letters to clueless Mom&Pops,
|
||||
then either (a) they're out of business, (b) they have to sell the rights
|
||||
to use the mark to increasingly questionable senders, or (c) they've both
|
||||
created and monopolized a market for "internet postage stamps" that
|
||||
everybody has to pay them for.
|
||||
|
||||
The latter would be quite a coup if they [*] could pull it off -- they do
|
||||
absolutely nothing useful, unless you consider threatening people with
|
||||
lawsuits useful, yet still collect a fee either directly or indirectly
|
||||
from everyone on the internet -- effectively we'll be paying them for the
|
||||
privilege of policing their trademark for them. I don't believe they'll
|
||||
ever get that far, but I don't particularly want to help them make it.
|
||||
|
||||
[*] And I use the term "they" loosely, because the whole company could
|
||||
consist of one lawyer if it really got to that point.
|
||||
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by:ThinkGeek
|
||||
Welcome to geek heaven.
|
||||
http://thinkgeek.com/sf
|
||||
_______________________________________________
|
||||
Spamassassin-talk mailing list
|
||||
Spamassassin-talk@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk
|
||||
|
||||
57
lib/jwz/testdata/0074.78000652dcb19856e85ff9637f0e52dd.eml
vendored
Normal file
57
lib/jwz/testdata/0074.78000652dcb19856e85ff9637f0e52dd.eml
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 29 16:42:35 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 78D9143F9B
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 11:42:35 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 16:42:35 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TFblZ18551 for
|
||||
<zzzz-ilug@example.com>; Thu, 29 Aug 2002 16:37:47 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id QAA30871; Thu, 29 Aug 2002 16:36:54 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from relay07.indigo.ie (relay07.indigo.ie [194.125.133.231]) by
|
||||
lugh.tuatha.org (8.9.3/8.9.3) with SMTP id QAA30845 for <ilug@linux.ie>;
|
||||
Thu, 29 Aug 2002 16:36:46 +0100
|
||||
Received: (qmail 68679 messnum 1027421 invoked from
|
||||
network[194.125.130.10/unknown]); 29 Aug 2002 15:36:44 -0000
|
||||
Received: from unknown (HELO win2000) (194.125.130.10) by
|
||||
relay07.indigo.ie (qp 68679) with SMTP; 29 Aug 2002 15:36:44 -0000
|
||||
Reply-To: <macarthy@iol.ie>
|
||||
From: "Justin MacCarthy" <macarthy@iol.ie>
|
||||
To: "Ilug@Linux.Ie" <ilug@linux.ie>
|
||||
Date: Thu, 29 Aug 2002 16:37:26 +0100
|
||||
Message-Id: <OFEGLPGPCHPACFLJPAILIECKECAA.macarthy@iol.ie>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="us-ascii"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Priority: 3 (Normal)
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0)
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4910.0300
|
||||
Importance: Normal
|
||||
In-Reply-To: <LAEAIGLCKFNPNHBDGGEGMEKICFAA.aj.mckee@nmtbmedia.com>
|
||||
Subject: [ILUG] Looking for a file / directory in zip file
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
Is there a way to look for a particular file or directory in 100's of zip
|
||||
files??
|
||||
Something like zgrep but for the filename instead of a word
|
||||
|
||||
Thanks Justin
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
88
lib/jwz/testdata/0075.faa4a28fdd9a82edd6d35ebb6bae3085.eml
vendored
Normal file
88
lib/jwz/testdata/0075.faa4a28fdd9a82edd6d35ebb6bae3085.eml
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 29 16:52:52 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id D36DD43F99
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 11:52:51 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 16:52:51 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TFlwZ18861 for
|
||||
<zzzz-ilug@example.com>; Thu, 29 Aug 2002 16:47:58 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id QAA31616; Thu, 29 Aug 2002 16:46:26 +0100
|
||||
Received: from dspsrv.com (vir.dspsrv.com [193.120.211.34]) by
|
||||
lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id QAA31563 for <ilug@linux.ie>;
|
||||
Thu, 29 Aug 2002 16:45:49 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host vir.dspsrv.com
|
||||
[193.120.211.34] claimed to be dspsrv.com
|
||||
Received: from itg-gw.cr008.cwt.esat.net ([193.120.242.226]
|
||||
helo=waider.ie) by dspsrv.com with asmtp (Exim 3.35 #1) id
|
||||
17kRUR-00052Y-00; Thu, 29 Aug 2002 16:45:47 +0100
|
||||
Message-Id: <3D6E409A.9030605@waider.ie>
|
||||
Date: Thu, 29 Aug 2002 16:41:14 +0100
|
||||
From: Waider <waider@waider.ie>
|
||||
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020827
|
||||
X-Accept-Language: en-us, en
|
||||
MIME-Version: 1.0
|
||||
To: macarthy@iol.ie
|
||||
Cc: "Ilug@Linux.Ie" <ilug@linux.ie>
|
||||
Subject: Re: [ILUG] Looking for a file / directory in zip file
|
||||
References: <OFEGLPGPCHPACFLJPAILIECKECAA.macarthy@iol.ie>
|
||||
X-Enigmail-Version: 0.65.2.0
|
||||
X-Enigmail-Supports: pgp-inline, pgp-mime
|
||||
Content-Type: text/plain; charset=us-ascii; format=flowed
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
|
||||
Justin MacCarthy wrote:
|
||||
| Is there a way to look for a particular file or directory in 100's of zip
|
||||
| files??
|
||||
| Something like zgrep but for the filename instead of a word
|
||||
|
|
||||
| Thanks Justin
|
||||
|
|
||||
|
|
||||
|
||||
probably there are more elegant solutions, but if your zips are in one
|
||||
directory you can do something like
|
||||
|
||||
for i in *.zip
|
||||
do
|
||||
if unzip -v $i | grep -q FILEYOUWANT
|
||||
then
|
||||
~ echo $i
|
||||
fi
|
||||
done
|
||||
|
||||
Cheers,
|
||||
Waider.
|
||||
- --
|
||||
waider@waider.ie / Yes, it /is/ very personal of me
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.0.6 (GNU/Linux)
|
||||
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
|
||||
|
||||
iQEVAwUBPW5AmaHbXyzZsAb3AQH+qQgA1vnUjJUwGDa1yCRQd3vZAnhkCF0KDBBA
|
||||
o9MYq4CUg9cEzKALkTyZu4eOprhL50ReaICUGLMMEc5htU9zove4F+CSuvbAKKHL
|
||||
nx7xa6kk2V+LFnwS6hWpdQolCaT+4iGZZbdFwmyNAWb/IrEYB0R4gp05sitDOl5U
|
||||
RRlzYSM3IUYDrYpDUuX7Ta7bLvSdC1PpWSqy/wXphNIh7Bs2+eB9ERAujuqi6vJo
|
||||
MBichYb3f3teVCQUbxTcaMowjpmv/Xm3gdUlGrUFbpc2O7447Xi5uDfRexzzDoJT
|
||||
HlFS6OO2ZqzcMrtUYEgsfyqpaF1WuD38JoFpa2TmSyX74bBhxS8ecw==
|
||||
=KYCm
|
||||
-----END PGP SIGNATURE-----
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
72
lib/jwz/testdata/0076.f565b68778786f9b9736f779489331f0.eml
vendored
Normal file
72
lib/jwz/testdata/0076.f565b68778786f9b9736f779489331f0.eml
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 29 16:52:52 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 97DCD43F9B
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 11:52:52 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 16:52:52 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TFr2Z18960 for
|
||||
<zzzz-ilug@example.com>; Thu, 29 Aug 2002 16:53:02 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id QAA31908; Thu, 29 Aug 2002 16:51:27 +0100
|
||||
Received: from hawk.dcu.ie (mail.dcu.ie [136.206.1.5]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id QAA31829 for <ilug@linux.ie>; Thu,
|
||||
29 Aug 2002 16:51:17 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host mail.dcu.ie [136.206.1.5]
|
||||
claimed to be hawk.dcu.ie
|
||||
Received: from prodigy.redbrick.dcu.ie (136.206.15.10) by hawk.dcu.ie
|
||||
(6.0.040) id 3D6203D30003D917 for ilug@linux.ie; Thu, 29 Aug 2002 16:51:17
|
||||
+0100
|
||||
Received: by prodigy.redbrick.dcu.ie (Postfix, from userid 2027) id
|
||||
32184DA4A; Thu, 29 Aug 2002 16:51:17 +0100 (IST)
|
||||
Date: Thu, 29 Aug 2002 16:51:17 +0100
|
||||
From: Colin Whittaker <grimnar@redbrick.dcu.ie>
|
||||
To: Irish LUG list <ilug@linux.ie>
|
||||
Message-Id: <20020829165117.A16258@prodigy.Redbrick.DCU.IE>
|
||||
References: <20020829143111.GN1757@jinny.ie>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Content-Disposition: inline
|
||||
User-Agent: Mutt/1.2.5i
|
||||
In-Reply-To: <20020829143111.GN1757@jinny.ie>; from valen@tuatha.org on
|
||||
Thu, Aug 29, 2002 at 03:31:11PM +0100
|
||||
Organization: North East Technologies Ltd.
|
||||
X-Subliminal-Message: Give Colin all your money.
|
||||
Subject: [ILUG] Re: serial console...not quite working
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
John P. Looney stated the following on Thu, Aug 29, 2002 at 03:31:11PM +0100 :
|
||||
> I'm not sure what exactly is wrong with this, but I can't get a redhat
|
||||
> 7.1 box to use ttyS0 as a console.
|
||||
>
|
||||
> The relevant bits of /boot/grub/grub.conf are:
|
||||
>
|
||||
> serial --unit=0 --speed=115200
|
||||
> terminal --timeout=2 console serial
|
||||
> title=linux
|
||||
> root (hd0,4)
|
||||
> kernel /boot/bzImage ro root=/dev/md0 console=ttyS0,115200n81
|
||||
^
|
||||
That 1 is unneeded and is probably whats upsetting your kernel
|
||||
|
||||
we use "console=ttyS0,9600n8" but the 9600 is mainly cos we are a cisco
|
||||
shop and its to keepo everyhting the same.
|
||||
|
||||
Colin
|
||||
--
|
||||
"Design" is like a religion - too much of it makes you inflexibly and unpopular.
|
||||
Linus Torvalds
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
67
lib/jwz/testdata/0077.dc5578862c0e716ee82e78b0dffbc8d2.eml
vendored
Normal file
67
lib/jwz/testdata/0077.dc5578862c0e716ee82e78b0dffbc8d2.eml
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
From: ilug-admin@linux.ie Thu Aug 29 17:03:22 2002
|
||||
Return-Path: <ilug-admin@linux.ie>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 8730543F99
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 12:03:21 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 17:03:21 +0100 (IST)
|
||||
Received: from lugh.tuatha.org (root@lugh.tuatha.org [194.125.145.45]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TFw4Z19203 for
|
||||
<zzzz-ilug@example.com>; Thu, 29 Aug 2002 16:58:04 +0100
|
||||
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with ESMTP id QAA32495; Thu, 29 Aug 2002 16:56:53 +0100
|
||||
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
||||
claimed to be lugh
|
||||
Received: from mail04.svc.cra.dublin.eircom.net
|
||||
(mail04.svc.cra.dublin.eircom.net [159.134.118.20]) by lugh.tuatha.org
|
||||
(8.9.3/8.9.3) with SMTP id QAA32465 for <ilug@linux.ie>; Thu,
|
||||
29 Aug 2002 16:56:45 +0100
|
||||
Received: (qmail 20521 messnum 1113064 invoked from
|
||||
network[213.190.156.48/unknown]); 29 Aug 2002 15:56:14 -0000
|
||||
Received: from unknown (HELO XENON16) (213.190.156.48) by
|
||||
mail04.svc.cra.dublin.eircom.net (qp 20521) with SMTP; 29 Aug 2002
|
||||
15:56:14 -0000
|
||||
Message-Id: <006001c24f74$dc1acde0$e600000a@XENON16>
|
||||
From: "wintermute" <cout@eircom.net>
|
||||
To: <ilug@linux.ie>
|
||||
References: <LAEAIGLCKFNPNHBDGGEGMEKICFAA.aj.mckee@nmtbmedia.com>
|
||||
<3D6E40AA.9080606@diva.ie>
|
||||
Subject: Re: [ILUG] eircoms adsl modems
|
||||
Date: Thu, 29 Aug 2002 16:58:04 +0100
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Priority: 3
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4910.0300
|
||||
Sender: ilug-admin@linux.ie
|
||||
Errors-To: ilug-admin@linux.ie
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
||||
X-Beenthere: ilug@linux.ie
|
||||
|
||||
|
||||
Not true on the choice part.
|
||||
|
||||
After three weeks of me telling eircom that I did not in fact need nor want
|
||||
their ?1800 worth of router and firewall
|
||||
nor their onsite survey... for the uncapped service I actually managed to
|
||||
get a 4 port modem (after asking for a 1 port modem) instead of ye olde
|
||||
hardware router & firewall and eircom onsite.
|
||||
|
||||
I would have argued for the 1 port modem... (which I had asked for), but a
|
||||
Director wanted the DSL up ... and fast....
|
||||
|
||||
Still it only took me three weeks to get (almost) what I
|
||||
wanted....................................
|
||||
|
||||
|
||||
--
|
||||
Irish Linux Users' Group: ilug@linux.ie
|
||||
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
||||
List maintainer: listmaster@linux.ie
|
||||
|
||||
56
lib/jwz/testdata/0078.8481bc92aa3ab9d23ca30c0eaecfc5e4.eml
vendored
Normal file
56
lib/jwz/testdata/0078.8481bc92aa3ab9d23ca30c0eaecfc5e4.eml
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
From: crackmice-admin@crackmice.com Thu Aug 29 17:13:43 2002
|
||||
Return-Path: <crackmice-admin@crackmice.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id B715843F99
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 12:13:43 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 17:13:43 +0100 (IST)
|
||||
Received: from dogma.slashnull.org (localhost [127.0.0.1]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TG7DZ19542;
|
||||
Thu, 29 Aug 2002 17:07:13 +0100
|
||||
Received: from mir.eWare.com (mail.eware.com [212.120.152.162]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TG6IZ19504 for
|
||||
<mice@crackmice.com>; Thu, 29 Aug 2002 17:06:18 +0100
|
||||
X-Mimeole: Produced By Microsoft Exchange V6.0.5762.3
|
||||
Content-Class: urn:content-classes:message
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
Subject: people we know on the web
|
||||
Message-Id: <0FF9F9D21D89554C8FF8930FFD39BD03A3F587@mir.eWare.com>
|
||||
X-MS-Has-Attach:
|
||||
X-MS-Tnef-Correlator:
|
||||
Thread-Topic: What kind of celebrity are you? quiz
|
||||
Thread-Index: AcJPWriCN9BF8CjcT1CZSIoGcK21hQAG1WjQ
|
||||
From: "Gerry Carr" <Gerry.Carr@eWare.com>
|
||||
To: <mice@crackmice.com>
|
||||
Content-Transfer-Encoding: 8bit
|
||||
X-MIME-Autoconverted: from quoted-printable to 8bit by dogma.slashnull.org
|
||||
id g7TG6IZ19504
|
||||
Sender: crackmice-admin@crackmice.com
|
||||
Errors-To: crackmice-admin@crackmice.com
|
||||
X-Beenthere: crackmice@crackmice.com
|
||||
X-Mailman-Version: 2.0.10
|
||||
Precedence: bulk
|
||||
Reply-To: mice@crackmice.com
|
||||
List-Unsubscribe: <http://crackmice.com/mailman/listinfo/crackmice>,
|
||||
<mailto:crackmice-request@crackmice.com?subject=unsubscribe>
|
||||
List-Id: http://crackmice.com/ <crackmice.crackmice.com>
|
||||
List-Post: <mailto:crackmice@crackmice.com>
|
||||
List-Help: <mailto:crackmice-request@crackmice.com?subject=help>
|
||||
List-Subscribe: <http://crackmice.com/mailman/listinfo/crackmice>,
|
||||
<mailto:crackmice-request@crackmice.com?subject=subscribe>
|
||||
List-Archive: <http://crackmice.com/pipermail/crackmice/>
|
||||
Date: Thu, 29 Aug 2002 17:07:35 +0100
|
||||
|
||||
http://www.bbc.co.uk/radio1/alt/nireland/ni_team.shtml
|
||||
|
||||
first of a very short series.
|
||||
|
||||
gerry
|
||||
_______________________________________________
|
||||
Crackmice mailing list
|
||||
Crackmice@crackmice.com
|
||||
http://crackmice.com/mailman/listinfo/crackmice
|
||||
|
||||
74
lib/jwz/testdata/0079.083beadce354774290a4a5bc4175366e.eml
vendored
Normal file
74
lib/jwz/testdata/0079.083beadce354774290a4a5bc4175366e.eml
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
From: gordon@rutter.freeserve.co.uk Thu Aug 29 18:06:18 2002
|
||||
Return-Path: <gordon@rutter.freeserve.co.uk>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 5715544155
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 13:06:17 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 18:06:17 +0100 (IST)
|
||||
Received: from n32.grp.scd.yahoo.com (n32.grp.scd.yahoo.com
|
||||
[66.218.66.100]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
||||
g7TH1aZ21336 for <zzzz@example.com>; Thu, 29 Aug 2002 18:01:36 +0100
|
||||
X-Egroups-Return: sentto-2242572-53259-1030640499-zzzz=example.com@returns.groups.yahoo.com
|
||||
Received: from [66.218.66.97] by n32.grp.scd.yahoo.com with NNFMP;
|
||||
29 Aug 2002 17:01:39 -0000
|
||||
X-Sender: gordon@rutter.freeserve.co.uk
|
||||
X-Apparently-To: zzzzteana@yahoogroups.com
|
||||
Received: (EGP: mail-8_1_0_1); 29 Aug 2002 17:01:39 -0000
|
||||
Received: (qmail 91661 invoked from network); 29 Aug 2002 17:01:38 -0000
|
||||
Received: from unknown (66.218.66.217) by m14.grp.scd.yahoo.com with QMQP;
|
||||
29 Aug 2002 17:01:38 -0000
|
||||
Received: from unknown (HELO cmailg1.svr.pol.co.uk) (195.92.195.171) by
|
||||
mta2.grp.scd.yahoo.com with SMTP; 29 Aug 2002 17:01:38 -0000
|
||||
Received: from modem-280.blotto.dialup.pol.co.uk ([62.25.145.24]
|
||||
helo=default) by cmailg1.svr.pol.co.uk with smtp (Exim 3.35 #1) id
|
||||
17kSfp-0000Al-00; Thu, 29 Aug 2002 18:01:37 +0100
|
||||
Message-Id: <000501c24f7d$8ceace60$1891193e@default>
|
||||
To: <zzzzteana@yahoogroups.com>
|
||||
Cc: <fort@egroups.com>
|
||||
X-Priority: 3
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4133.2400
|
||||
From: "Gordon Rutter" <gordon@rutter.freeserve.co.uk>
|
||||
X-Yahoo-Profile: gordonrutter
|
||||
MIME-Version: 1.0
|
||||
Mailing-List: list zzzzteana@yahoogroups.com; contact
|
||||
forteana-owner@yahoogroups.com
|
||||
Delivered-To: mailing list zzzzteana@yahoogroups.com
|
||||
Precedence: bulk
|
||||
List-Unsubscribe: <mailto:zzzzteana-unsubscribe@yahoogroups.com>
|
||||
Date: Thu, 29 Aug 2002 18:00:08 +0100
|
||||
Subject: [zzzzteana] Fw: [nessie] New Nessie Pics
|
||||
Reply-To: zzzzteana@yahoogroups.com
|
||||
Content-Type: text/plain; charset=US-ASCII
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
|
||||
Gordon Rutter
|
||||
gordon@rutter.freeserve.co.uk
|
||||
Join the Fortean Book Reviews list at
|
||||
forteanbookreviews-subscribe@yahoogroups.com
|
||||
|
||||
|
||||
|
||||
> <PRE>The latest potential pictures of Nessie - underwater - are at
|
||||
> www.hi-lands.com
|
||||
|
||||
|
||||
|
||||
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
||||
4 DVDs Free +s&p Join Now
|
||||
http://us.click.yahoo.com/pt6YBB/NXiEAA/MVfIAA/7gSolB/TM
|
||||
---------------------------------------------------------------------~->
|
||||
|
||||
To unsubscribe from this group, send an email to:
|
||||
forteana-unsubscribe@egroups.com
|
||||
|
||||
|
||||
|
||||
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
||||
|
||||
|
||||
|
||||
77
lib/jwz/testdata/0080.7c3a836baaa732cd915546442c0fef1a.eml
vendored
Normal file
77
lib/jwz/testdata/0080.7c3a836baaa732cd915546442c0fef1a.eml
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
From: iiu-admin@taint.org Thu Aug 29 18:06:13 2002
|
||||
Return-Path: <iiu-admin@taint.org>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id A7D3543F9B
|
||||
for <zzzz@localhost>; Thu, 29 Aug 2002 13:06:12 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Thu, 29 Aug 2002 18:06:12 +0100 (IST)
|
||||
Received: from dogma.slashnull.org (localhost [127.0.0.1]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TH7cZ21544;
|
||||
Thu, 29 Aug 2002 18:07:38 +0100
|
||||
Received: from web05.bigbiz.com (web05.bigbiz.com [216.218.198.5]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TH6XZ21517 for
|
||||
<iiu@taint.org>; Thu, 29 Aug 2002 18:06:34 +0100
|
||||
Received: from Alfalfa.deisedesign.com ([193.193.166.41]) by
|
||||
web05.bigbiz.com (8.8.7/8.8.7) with ESMTP id KAA26886 for <iiu@taint.org>;
|
||||
Thu, 29 Aug 2002 10:05:43 -0700
|
||||
Message-Id: <5.1.0.14.0.20020829172833.032e1350@127.0.0.1>
|
||||
X-Sender: deisedesign/mwhelan/10.0.0.1@127.0.0.1
|
||||
X-Mailer: QUALCOMM Windows Eudora Version 5.1
|
||||
To: iiu@taint.org
|
||||
From: Martin Whelan <mwhelan@deisedesign.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="iso-8859-1"; format=flowed
|
||||
Content-Transfer-Encoding: 8bit
|
||||
X-MIME-Autoconverted: from quoted-printable to 8bit by dogma.slashnull.org
|
||||
id g7TH6XZ21517
|
||||
Subject: [IIU] Viruses and Bounced Mail
|
||||
Sender: iiu-admin@taint.org
|
||||
Errors-To: iiu-admin@taint.org
|
||||
X-Beenthere: iiu@iiu.taint.org
|
||||
X-Mailman-Version: 2.0.10
|
||||
Precedence: bulk
|
||||
Reply-To: iiu@taint.org
|
||||
List-Unsubscribe: <http://iiu.taint.org/mailman/listinfo/iiu>,
|
||||
<mailto:iiu-request@iiu.taint.org?subject=unsubscribe>
|
||||
List-Id: Irish Internet Users <iiu.iiu.taint.org>
|
||||
List-Post: <mailto:iiu@iiu.taint.org>
|
||||
List-Help: <mailto:iiu-request@iiu.taint.org?subject=help>
|
||||
List-Subscribe: <http://iiu.taint.org/mailman/listinfo/iiu>,
|
||||
<mailto:iiu-request@iiu.taint.org?subject=subscribe>
|
||||
List-Archive: <http://iiu.taint.org/pipermail/iiu/>
|
||||
Date: Thu, 29 Aug 2002 18:04:41 +0100
|
||||
|
||||
All,
|
||||
|
||||
Is it just me or has there been a massive increase in the amount of email
|
||||
being falsely bounced around the place? I've already received email from a
|
||||
number of people I don't know, asking why I am sending them email. These
|
||||
can be explained by servers from Russia and elsewhere. Coupled with the
|
||||
false emails I received myself, it's really starting to annoy me. Am I the
|
||||
only one seeing an increase in recent weeks?
|
||||
|
||||
Martin
|
||||
|
||||
|
||||
|
||||
========================================================================
|
||||
Martin Whelan | D<>ise Design | www.deisedesign.com | Tel : 086-8888975
|
||||
|
||||
" Our core product D<>iseditor <20> allows organisations to publish information
|
||||
to their web site in a fast and cost effective manner. There is no need for
|
||||
a full time web developer, as the site can be easily updated by the
|
||||
organisations own staff.
|
||||
Instant updates to keep site information fresh. Sites which are updated
|
||||
regularly bring users back. Visit www.deisedesign.com/deiseditor.html for a
|
||||
demonstration "
|
||||
|
||||
D<EFBFBD>iseditor <20> " Managing Your Information "
|
||||
========================================================================
|
||||
|
||||
_______________________________________________
|
||||
IIU mailing list
|
||||
IIU@iiu.taint.org
|
||||
http://iiu.taint.org/mailman/listinfo/iiu
|
||||
|
||||
97
lib/jwz/testdata/0081.9d26c2d149545a1c5d23e2cd4dca1b5f.eml
vendored
Normal file
97
lib/jwz/testdata/0081.9d26c2d149545a1c5d23e2cd4dca1b5f.eml
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
From: razor-users-admin@lists.sourceforge.net Mon Sep 2 12:20:32 2002
|
||||
Return-Path: <razor-users-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id D8F2643F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:20:28 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:20:30 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7TJQgZ25729 for <zzzz-razor@example.com>; Thu, 29 Aug 2002 20:26:42 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17kUmz-0004JX-00; Thu,
|
||||
29 Aug 2002 12:17:09 -0700
|
||||
Received: from mailgate.sri.com ([128.18.243.11]) by
|
||||
usw-sf-list1.sourceforge.net with smtp (Exim 3.31-VA-mm2 #1 (Debian)) id
|
||||
17kUmC-0008At-00 for <razor-users@lists.sourceforge.net>; Thu,
|
||||
29 Aug 2002 12:16:20 -0700
|
||||
Received: (qmail 23083 invoked from network); 29 Aug 2002 19:15:48 -0000
|
||||
Received: from localhost (HELO mailgate.SRI.COM) (127.0.0.1) by
|
||||
mailgate.sri.com with SMTP; 29 Aug 2002 19:15:48 -0000
|
||||
Received: from newmail.sri.com ([128.18.30.43]) by mailgate.SRI.COM (NAVGW
|
||||
2.5.1.18) with SMTP id M2002082912154827439 for
|
||||
<razor-users@lists.sourceforge.net>; Thu, 29 Aug 2002 12:15:48 -0700
|
||||
Received: from sri.com ([128.18.28.107]) by newmail.sri.com (Netscape
|
||||
Messaging Server 4.15) with ESMTP id H1MDJE00.QC6 for
|
||||
<razor-users@lists.sourceforge.net>; Thu, 29 Aug 2002 12:16:26 -0700
|
||||
Message-Id: <3D6E7347.9090304@sri.com>
|
||||
From: "Michael Duff" <michael.duff@sri.com>
|
||||
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.1)
|
||||
Gecko/20020826
|
||||
X-Accept-Language: en-us, en
|
||||
MIME-Version: 1.0
|
||||
To: razor-users@example.sourceforge.net
|
||||
Content-Type: text/plain; charset=us-ascii; format=flowed
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Subject: [Razor-users] Re: Can't call method "log" with SA/Razor2
|
||||
Sender: razor-users-admin@example.sourceforge.net
|
||||
Errors-To: razor-users-admin@example.sourceforge.net
|
||||
X-Beenthere: razor-users@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:razor-users-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:razor-users@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/razor-users>,
|
||||
<mailto:razor-users-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: <razor-users.example.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/razor-users>,
|
||||
<mailto:razor-users-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=razor-users>
|
||||
X-Original-Date: Thu, 29 Aug 2002 12:17:27 -0700
|
||||
Date: Thu, 29 Aug 2002 12:17:27 -0700
|
||||
|
||||
This is happening due to insufficient write access to the
|
||||
"razor-agent.log" file. I was getting the same error, but
|
||||
only as a non-root user. As a quick workaround, you can do
|
||||
"chmod go+w razor-agent.log".
|
||||
|
||||
In Agent.pm, when then the Logger object is created, it
|
||||
doesn't check whether the logfile is writable by the current
|
||||
user. Then, when a write attempt is made, it bails out with
|
||||
the "unblessed reference" error.
|
||||
|
||||
Hope that helps,
|
||||
Michael
|
||||
|
||||
> I just noticed the following log entries in my syslog with the latest
|
||||
> Spamassassin CVS (set up using spamc/spamd) and razor-agents 2.14:
|
||||
>
|
||||
> Jul 26 17:30:09 timmy spamd[54928]: razor2 check skipped: No such file or
|
||||
> directory Can't call method "log" on unblessed reference at
|
||||
> /usr/local/lib/perl5/site_perl/5.6.1/Razor2/Client/Agent.pm line 211,
|
||||
> <STDIN> line 25.
|
||||
>
|
||||
> I saw this after checking if my upgrade from razor-agents 2.12 to 2.14 went
|
||||
> okay, but the problem is still there after downgrading back to 2.12. I
|
||||
> don't really know when this started happening, :-/
|
||||
>
|
||||
> Any ideas on the problem?
|
||||
>
|
||||
> - Robert
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by:ThinkGeek
|
||||
Welcome to geek heaven.
|
||||
http://thinkgeek.com/sf
|
||||
_______________________________________________
|
||||
Razor-users mailing list
|
||||
Razor-users@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/razor-users
|
||||
|
||||
111
lib/jwz/testdata/0082.7f7858a1a7360410ed120899504c3a25.eml
vendored
Normal file
111
lib/jwz/testdata/0082.7f7858a1a7360410ed120899504c3a25.eml
vendored
Normal file
@@ -0,0 +1,111 @@
|
||||
From: rpm-list-admin@freshrpms.net Mon Sep 2 12:21:22 2002
|
||||
Return-Path: <rpm-zzzlist-admin@freshrpms.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id ABCBC43F99
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:21:18 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:21:18 +0100 (IST)
|
||||
Received: from egwn.net (ns2.egwn.net [193.172.5.4]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TJqAZ26468 for
|
||||
<zzzz-rpm@example.com>; Thu, 29 Aug 2002 20:52:10 +0100
|
||||
Received: from auth02.nl.egwn.net (localhost [127.0.0.1]) by egwn.net
|
||||
(8.11.6/8.11.6/EGWN) with ESMTP id g7TJd2J04720; Thu, 29 Aug 2002 21:39:02
|
||||
+0200
|
||||
Received: from imf26bis.bellsouth.net (mail126.mail.bellsouth.net
|
||||
[205.152.58.86]) by egwn.net (8.11.6/8.11.6/EGWN) with ESMTP id
|
||||
g7TJcbJ04352 for <rpm-list@freshrpms.net>; Thu, 29 Aug 2002 21:38:37 +0200
|
||||
Received: from adsl-157-23-10.msy.bellsouth.net ([66.157.23.10]) by
|
||||
imf26bis.bellsouth.net (InterMail vM.5.01.04.19
|
||||
201-253-122-122-119-20020516) with ESMTP id
|
||||
<20020829193005.FDGG5735.imf26bis.bellsouth.net@adsl-157-23-10.msy.bellsouth.net>
|
||||
for <rpm-list@freshrpms.net>; Thu, 29 Aug 2002 15:30:05 -0400
|
||||
Subject: Re: ALSA (almost) made easy
|
||||
From: Lance <lance_tt@bellsouth.net>
|
||||
To: rpm-zzzlist@freshrpms.net
|
||||
In-Reply-To: <20020829062638.53279644.matthias@egwn.net>
|
||||
References: <20020828004215.4bca2588.matthias@rpmforge.net>
|
||||
<1030507320.3214.39.camel@herald.dragonsdawn.net>
|
||||
<20020828100430.378c3856.matthias@rpmforge.net>
|
||||
<1030546780.3214.54.camel@herald.dragonsdawn.net>
|
||||
<20020828112645.B13047@ti19>
|
||||
<1030551945.10627.4.camel@wanderlust.prognet.com>
|
||||
<20020828190006.2200a154.matthias@rpmforge.net>
|
||||
<1030576177.6448.1.camel@localhost.localdomain>
|
||||
<1030580111.1388.2.camel@localhost.localdomain>
|
||||
<20020829062638.53279644.matthias@egwn.net>
|
||||
Content-Type: text/plain
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Mailer: Ximian Evolution 1.0.8 (1.0.8-6)
|
||||
Message-Id: <1030649409.4818.4.camel@localhost.localdomain>
|
||||
MIME-Version: 1.0
|
||||
X-Mailscanner: Found to be clean, Found to be clean
|
||||
Sender: rpm-zzzlist-admin@freshrpms.net
|
||||
Errors-To: rpm-zzzlist-admin@freshrpms.net
|
||||
X-Beenthere: rpm-zzzlist@freshrpms.net
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
Reply-To: rpm-zzzlist@freshrpms.net
|
||||
List-Help: <mailto:rpm-zzzlist-request@freshrpms.net?subject=help>
|
||||
List-Post: <mailto:rpm-zzzlist@freshrpms.net>
|
||||
List-Subscribe: <http://lists.freshrpms.net/mailman/listinfo/rpm-zzzlist>,
|
||||
<mailto:rpm-list-request@freshrpms.net?subject=subscribe>
|
||||
List-Id: Freshrpms RPM discussion list <rpm-zzzlist.freshrpms.net>
|
||||
List-Unsubscribe: <http://lists.freshrpms.net/mailman/listinfo/rpm-zzzlist>,
|
||||
<mailto:rpm-list-request@freshrpms.net?subject=unsubscribe>
|
||||
List-Archive: <http://lists.freshrpms.net/pipermail/rpm-zzzlist/>
|
||||
X-Original-Date: 29 Aug 2002 14:30:08 -0500
|
||||
Date: 29 Aug 2002 14:30:08 -0500
|
||||
|
||||
Thanks Matthias. Actually I got all four speakers with subwoofer
|
||||
working in digital out mode with gamixer.
|
||||
(http://www1.tcnet.ne.jp/fmurata/linux/down/)
|
||||
|
||||
However switching between analog and digital, I'm still baffled. As I
|
||||
have a tuner and cassette deck hooked up to "Line In" on a SBLive! 5.1,
|
||||
which is in analog mode. But digital out works great now!
|
||||
|
||||
On Wed, 2002-08-28 at 23:26, Matthias Saou wrote:
|
||||
> Once upon a time, Lance wrote :
|
||||
>
|
||||
> > Ok, I got ALSA installed and there is no static inbetween mp3s like
|
||||
> > before which is great! My setup is digital 4.1 but sound is only coming
|
||||
> > from front 2 speakers and subwoofer, rear speakers there is no sound.
|
||||
> > Also alsamixer or aumix are unresponsive as well.
|
||||
>
|
||||
> Maybe you could find more info or tips on the ALSA page for your card?
|
||||
> Also, you could try "alsactl store", editing /etc/asound.state" by hand
|
||||
> (for me it contains data similar to what I can control with "alsamixer")
|
||||
> then run "alsactl restore" and see if you're able to change what you want
|
||||
> that way.
|
||||
>
|
||||
> Matthias
|
||||
>
|
||||
> --
|
||||
> Matthias Saou World Trade Center
|
||||
> ------------- Edificio Norte 4 Planta
|
||||
> System and Network Engineer 08039 Barcelona, Spain
|
||||
> Electronic Group Interactive Phone : +34 936 00 23 23
|
||||
>
|
||||
> _______________________________________________
|
||||
> RPM-List mailing list <RPM-List@freshrpms.net>
|
||||
> http://lists.freshrpms.net/mailman/listinfo/rpm-list
|
||||
--
|
||||
:
|
||||
####[ Linux One Stanza Tip (LOST) ]###########################
|
||||
|
||||
Sub : Finding out files larger than given size LOST #324
|
||||
|
||||
To find out all files in a dir over a given size, try:
|
||||
find /path/to/dir_of_file -type f -size +Nk
|
||||
[Where N is a number like 1024 for 1mb, and multiples thereof]
|
||||
|
||||
####[Discussions on LIH : 04 Jul 2002]########################
|
||||
:
|
||||
|
||||
|
||||
_______________________________________________
|
||||
RPM-List mailing list <RPM-List@freshrpms.net>
|
||||
http://lists.freshrpms.net/mailman/listinfo/rpm-list
|
||||
|
||||
135
lib/jwz/testdata/0083.e506d3273b3dde9ae2d340cb0197a2a0.eml
vendored
Normal file
135
lib/jwz/testdata/0083.e506d3273b3dde9ae2d340cb0197a2a0.eml
vendored
Normal file
@@ -0,0 +1,135 @@
|
||||
From: rpm-list-admin@freshrpms.net Mon Sep 2 12:22:38 2002
|
||||
Return-Path: <rpm-zzzlist-admin@freshrpms.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id AEE8243F99
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:22:37 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:22:37 +0100 (IST)
|
||||
Received: from egwn.net (ns2.egwn.net [193.172.5.4]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7TL1YZ28608 for
|
||||
<zzzz-rpm@example.com>; Thu, 29 Aug 2002 22:01:35 +0100
|
||||
Received: from auth02.nl.egwn.net (localhost [127.0.0.1]) by egwn.net
|
||||
(8.11.6/8.11.6/EGWN) with ESMTP id g7TKr3J12965; Thu, 29 Aug 2002 22:53:03
|
||||
+0200
|
||||
Received: from imf13bis.bellsouth.net (mail313.mail.bellsouth.net
|
||||
[205.152.58.173]) by egwn.net (8.11.6/8.11.6/EGWN) with ESMTP id
|
||||
g7TKqXJ12902 for <rpm-list@freshrpms.net>; Thu, 29 Aug 2002 22:52:33 +0200
|
||||
Received: from adsl-157-23-10.msy.bellsouth.net ([66.157.23.10]) by
|
||||
imf13bis.bellsouth.net (InterMail vM.5.01.04.19
|
||||
201-253-122-122-119-20020516) with ESMTP id
|
||||
<20020829205404.EXZW15998.imf13bis.bellsouth.net@adsl-157-23-10.msy.bellsouth.net>
|
||||
for <rpm-list@freshrpms.net>; Thu, 29 Aug 2002 16:54:04 -0400
|
||||
Subject: Re: ALSA (almost) made easy
|
||||
From: Lance <lance_tt@bellsouth.net>
|
||||
To: rpm-zzzlist@freshrpms.net
|
||||
In-Reply-To: <1030649409.4818.4.camel@localhost.localdomain>
|
||||
References: <20020828004215.4bca2588.matthias@rpmforge.net>
|
||||
<1030507320.3214.39.camel@herald.dragonsdawn.net>
|
||||
<20020828100430.378c3856.matthias@rpmforge.net>
|
||||
<1030546780.3214.54.camel@herald.dragonsdawn.net>
|
||||
<20020828112645.B13047@ti19>
|
||||
<1030551945.10627.4.camel@wanderlust.prognet.com>
|
||||
<20020828190006.2200a154.matthias@rpmforge.net>
|
||||
<1030576177.6448.1.camel@localhost.localdomain>
|
||||
<1030580111.1388.2.camel@localhost.localdomain>
|
||||
<20020829062638.53279644.matthias@egwn.net>
|
||||
<1030649409.4818.4.camel@localhost.localdomain>
|
||||
Content-Type: text/plain
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Mailer: Ximian Evolution 1.0.8 (1.0.8-6)
|
||||
Message-Id: <1030654347.9760.1.camel@localhost.localdomain>
|
||||
MIME-Version: 1.0
|
||||
X-Mailscanner: Found to be clean, Found to be clean
|
||||
Sender: rpm-zzzlist-admin@freshrpms.net
|
||||
Errors-To: rpm-zzzlist-admin@freshrpms.net
|
||||
X-Beenthere: rpm-zzzlist@freshrpms.net
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
Reply-To: rpm-zzzlist@freshrpms.net
|
||||
List-Help: <mailto:rpm-zzzlist-request@freshrpms.net?subject=help>
|
||||
List-Post: <mailto:rpm-zzzlist@freshrpms.net>
|
||||
List-Subscribe: <http://lists.freshrpms.net/mailman/listinfo/rpm-zzzlist>,
|
||||
<mailto:rpm-list-request@freshrpms.net?subject=subscribe>
|
||||
List-Id: Freshrpms RPM discussion list <rpm-zzzlist.freshrpms.net>
|
||||
List-Unsubscribe: <http://lists.freshrpms.net/mailman/listinfo/rpm-zzzlist>,
|
||||
<mailto:rpm-list-request@freshrpms.net?subject=unsubscribe>
|
||||
List-Archive: <http://lists.freshrpms.net/pipermail/rpm-zzzlist/>
|
||||
X-Original-Date: 29 Aug 2002 15:52:27 -0500
|
||||
Date: 29 Aug 2002 15:52:27 -0500
|
||||
|
||||
I want to thank those involved in making these RPMS available. Thanks
|
||||
guys, thanks Matthias.
|
||||
|
||||
Lance
|
||||
|
||||
On Thu, 2002-08-29 at 14:30, Lance wrote:
|
||||
> Thanks Matthias. Actually I got all four speakers with subwoofer
|
||||
> working in digital out mode with gamixer.
|
||||
> (http://www1.tcnet.ne.jp/fmurata/linux/down/)
|
||||
>
|
||||
> However switching between analog and digital, I'm still baffled. As I
|
||||
> have a tuner and cassette deck hooked up to "Line In" on a SBLive! 5.1,
|
||||
> which is in analog mode. But digital out works great now!
|
||||
>
|
||||
> On Wed, 2002-08-28 at 23:26, Matthias Saou wrote:
|
||||
> > Once upon a time, Lance wrote :
|
||||
> >
|
||||
> > > Ok, I got ALSA installed and there is no static inbetween mp3s like
|
||||
> > > before which is great! My setup is digital 4.1 but sound is only coming
|
||||
> > > from front 2 speakers and subwoofer, rear speakers there is no sound.
|
||||
> > > Also alsamixer or aumix are unresponsive as well.
|
||||
> >
|
||||
> > Maybe you could find more info or tips on the ALSA page for your card?
|
||||
> > Also, you could try "alsactl store", editing /etc/asound.state" by hand
|
||||
> > (for me it contains data similar to what I can control with "alsamixer")
|
||||
> > then run "alsactl restore" and see if you're able to change what you want
|
||||
> > that way.
|
||||
> >
|
||||
> > Matthias
|
||||
> >
|
||||
> > --
|
||||
> > Matthias Saou World Trade Center
|
||||
> > ------------- Edificio Norte 4 Planta
|
||||
> > System and Network Engineer 08039 Barcelona, Spain
|
||||
> > Electronic Group Interactive Phone : +34 936 00 23 23
|
||||
> >
|
||||
> > _______________________________________________
|
||||
> > RPM-List mailing list <RPM-List@freshrpms.net>
|
||||
> > http://lists.freshrpms.net/mailman/listinfo/rpm-list
|
||||
> --
|
||||
> :
|
||||
> ####[ Linux One Stanza Tip (LOST) ]###########################
|
||||
>
|
||||
> Sub : Finding out files larger than given size LOST #324
|
||||
>
|
||||
> To find out all files in a dir over a given size, try:
|
||||
> find /path/to/dir_of_file -type f -size +Nk
|
||||
> [Where N is a number like 1024 for 1mb, and multiples thereof]
|
||||
>
|
||||
> ####[Discussions on LIH : 04 Jul 2002]########################
|
||||
> :
|
||||
>
|
||||
>
|
||||
> _______________________________________________
|
||||
> RPM-List mailing list <RPM-List@freshrpms.net>
|
||||
> http://lists.freshrpms.net/mailman/listinfo/rpm-list
|
||||
--
|
||||
:
|
||||
####[ Linux One Stanza Tip (LOST) ]###########################
|
||||
|
||||
Sub : Finding out files larger than given size LOST #324
|
||||
|
||||
To find out all files in a dir over a given size, try:
|
||||
find /path/to/dir_of_file -type f -size +Nk
|
||||
[Where N is a number like 1024 for 1mb, and multiples thereof]
|
||||
|
||||
####[Discussions on LIH : 04 Jul 2002]########################
|
||||
:
|
||||
|
||||
|
||||
_______________________________________________
|
||||
RPM-List mailing list <RPM-List@freshrpms.net>
|
||||
http://lists.freshrpms.net/mailman/listinfo/rpm-list
|
||||
|
||||
72
lib/jwz/testdata/0084.e84ff95488fab22c26801bcd5bae337e.eml
vendored
Normal file
72
lib/jwz/testdata/0084.e84ff95488fab22c26801bcd5bae337e.eml
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
From: sitescooper-talk-admin@lists.sourceforge.net Mon Sep 2 12:22:41 2002
|
||||
Return-Path: <sitescooper-talk-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id C5A1343F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:22:40 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:22:40 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7TLB0Z28997 for <zzzz-scoop@example.com>; Thu, 29 Aug 2002 22:11:00 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17kWZF-0004h8-00; Thu,
|
||||
29 Aug 2002 14:11:05 -0700
|
||||
Received: from srv01s4.cas.org ([134.243.50.9] helo=srv01.cas.org) by
|
||||
usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id
|
||||
17kWZ5-0004GD-00 for <sitescooper-talk@lists.sourceforge.net>;
|
||||
Thu, 29 Aug 2002 14:10:55 -0700
|
||||
Received: from lwv26awu.cas.org (lwv26awu [134.243.40.138]) by
|
||||
srv01.cas.org (8.12.5/m8.12.5/CAS_MAIL_HUB-2.00) with ESMTP id
|
||||
g7TLAlPW014804 for <sitescooper-talk@lists.sourceforge.net>;
|
||||
Thu, 29 Aug 2002 17:10:47 -0400 (EDT)
|
||||
Received: (from lwv26@localhost) by lwv26awu.cas.org
|
||||
(8.11.6+Sun/m4_8.11.6/CAS_CLIENT-1.18) id g7TLAlP01838; Thu,
|
||||
29 Aug 2002 17:10:47 -0400 (EDT)
|
||||
From: "Larry W. Virden" <lvirden@cas.org>
|
||||
Message-Id: <20020829171046.AAB1816@cas.org>
|
||||
To: <sitescooper-talk@example.sourceforge.net>
|
||||
Subject: [scoop] Scoop MS Word .doc file into something that plucker or other Palm app can display?
|
||||
Sender: sitescooper-talk-admin@example.sourceforge.net
|
||||
Errors-To: sitescooper-talk-admin@example.sourceforge.net
|
||||
X-Beenthere: sitescooper-talk@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:sitescooper-talk-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:sitescooper-talk@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/sitescooper-talk>,
|
||||
<mailto:sitescooper-talk-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: Discussion of sitescooper - see http://sitescooper.org/
|
||||
<sitescooper-talk.lists.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/sitescooper-talk>,
|
||||
<mailto:sitescooper-talk-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=sitescooper-talk>
|
||||
X-Original-Date: Thu, 29 Aug 2002 17:10:47 -0400 (EDT)
|
||||
Date: Thu, 29 Aug 2002 17:10:47 -0400 (EDT)
|
||||
|
||||
I am wondering whether there's a way that I can use sitescooper and/or plucker
|
||||
or some other free utility to convert word documents into something a bit
|
||||
more palmos friendly?
|
||||
|
||||
I don't have a Windows machine, so it becomes problematic to convert them;
|
||||
I know that if this were not the case, in Word I could save them as some
|
||||
other more friendly format.
|
||||
--
|
||||
Tcl'2002 Sept 16, 2002, Vancouver, BC http://www.tcl.tk/community/tcl2002/
|
||||
Larry W. Virden <mailto:lvirden@cas.org> <URL: http://www.purl.org/NET/lvirden/>
|
||||
Even if explicitly stated to the contrary, nothing in this posting should
|
||||
be construed as representing my employer's opinions.
|
||||
-><-
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by:ThinkGeek
|
||||
Welcome to geek heaven.
|
||||
http://thinkgeek.com/sf
|
||||
_______________________________________________
|
||||
Sitescooper-talk mailing list
|
||||
Sitescooper-talk@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/sitescooper-talk
|
||||
|
||||
81
lib/jwz/testdata/0085.1a80e2b1720bd5cbeb900554a5477d0b.eml
vendored
Normal file
81
lib/jwz/testdata/0085.1a80e2b1720bd5cbeb900554a5477d0b.eml
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
From: razor-users-admin@lists.sourceforge.net Mon Sep 2 12:22:44 2002
|
||||
Return-Path: <razor-users-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 3643543F99
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:22:44 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:22:44 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7TNfsZ01475 for <zzzz-razor@example.com>; Fri, 30 Aug 2002 00:41:54 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17kYnd-0002Im-00; Thu,
|
||||
29 Aug 2002 16:34:05 -0700
|
||||
Received: from 208-150-110-21-adsl.precisionet.net ([208.150.110.21]
|
||||
helo=neofelis.ixazon.lan) by usw-sf-list1.sourceforge.net with esmtp (Exim
|
||||
3.31-VA-mm2 #1 (Debian)) id 17kYnY-0005zK-00 for
|
||||
<razor-users@lists.sourceforge.net>; Thu, 29 Aug 2002 16:34:00 -0700
|
||||
Received: by neofelis.ixazon.lan (Postfix, from userid 504) id A33003C47A;
|
||||
Thu, 29 Aug 2002 19:33:53 -0400 (EDT)
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
From: "cmeclax po'u le cmevi'u ke'umri" <cmeclax@gmx.co.uk>
|
||||
Reply-To: cmeclax@ixazon.dynip.com
|
||||
To: <razor-users@example.sourceforge.net>
|
||||
Subject: Re: [Razor-users] Collision of hashes?
|
||||
X-Mailer: KMail [version 1.2]
|
||||
References: <Pine.LNX.4.44.0208201746330.23681-100000@r2-pc.dcs.qmul.ac.uk>
|
||||
<010501c24f82$947b3340$7c640f0a@mfc.corp.mckee.com>
|
||||
In-Reply-To: <010501c24f82$947b3340$7c640f0a@mfc.corp.mckee.com>
|
||||
Comment: li 0x18080B5EBAEAEC17619A6B51DFF93585D986F633 cu sevzi le mi ckiku
|
||||
MIME-Version: 1.0
|
||||
Message-Id: <02082919334401.04648@neofelis>
|
||||
Content-Transfer-Encoding: 8bit
|
||||
Sender: razor-users-admin@example.sourceforge.net
|
||||
Errors-To: razor-users-admin@example.sourceforge.net
|
||||
X-Beenthere: razor-users@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:razor-users-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:razor-users@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/razor-users>,
|
||||
<mailto:razor-users-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: <razor-users.example.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/razor-users>,
|
||||
<mailto:razor-users-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=razor-users>
|
||||
X-Original-Date: Thu, 29 Aug 2002 19:33:44 -0400
|
||||
Date: Thu, 29 Aug 2002 19:33:44 -0400
|
||||
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA1
|
||||
|
||||
de'i Thursday 29 August 2002 13:36 la Fox cusku di'e
|
||||
> The following was personal correspondence between two people. I can't
|
||||
>
|
||||
> fathom how Razor thinks it is spam:
|
||||
|
||||
Was it sent in HTML? If so, and it had a background, the background may have
|
||||
been sent in a spam.
|
||||
|
||||
cmeclax
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.0.7 (GNU/Linux)
|
||||
|
||||
iD8DBQE9bq9f3/k1hdmG9jMRAk4XAJ9CheEA+/hLIU9zTzfJbPyoPUm+XwCfXgZ1
|
||||
tg7Fn8JcG9Q13UlKVfaOJzk=
|
||||
=Mw8+
|
||||
-----END PGP SIGNATURE-----
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by:ThinkGeek
|
||||
Welcome to geek heaven.
|
||||
http://thinkgeek.com/sf
|
||||
_______________________________________________
|
||||
Razor-users mailing list
|
||||
Razor-users@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/razor-users
|
||||
|
||||
85
lib/jwz/testdata/0086.b96641b3e0a2cf8c238976336d45a86c.eml
vendored
Normal file
85
lib/jwz/testdata/0086.b96641b3e0a2cf8c238976336d45a86c.eml
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
From: razor-users-admin@lists.sourceforge.net Mon Sep 2 12:22:47 2002
|
||||
Return-Path: <razor-users-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 8855D43F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:22:47 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:22:47 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7TNiXZ01537 for <zzzz-razor@example.com>; Fri, 30 Aug 2002 00:44:33 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17kYqW-0003Xb-00; Thu,
|
||||
29 Aug 2002 16:37:04 -0700
|
||||
Received: from h-66-166-21-186.snvacaid.covad.net ([66.166.21.186]
|
||||
helo=rover.vipul.net) by usw-sf-list1.sourceforge.net with esmtp (Exim
|
||||
3.31-VA-mm2 #1 (Debian)) id 17kYqQ-0006NA-00 for
|
||||
<razor-users@lists.sourceforge.net>; Thu, 29 Aug 2002 16:36:58 -0700
|
||||
Received: (from vipul@localhost) by rover.vipul.net (8.11.6/8.11.6) id
|
||||
g7TNar604179 for razor-users@lists.sourceforge.net; Thu, 29 Aug 2002
|
||||
16:36:53 -0700
|
||||
From: Vipul Ved Prakash <mail@vipul.net>
|
||||
To: razor-users@example.sourceforge.net
|
||||
Subject: Re: [Razor-users] Collision of hashes?
|
||||
Message-Id: <20020829163653.A4149@rover.vipul.net>
|
||||
Reply-To: mail@vipul.net
|
||||
Mail-Followup-To: razor-users@example.sourceforge.net
|
||||
References: <Pine.LNX.4.44.0208201746330.23681-100000@r2-pc.dcs.qmul.ac.uk>
|
||||
<010501c24f82$947b3340$7c640f0a@mfc.corp.mckee.com>
|
||||
<02082919334401.04648@neofelis>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Content-Disposition: inline
|
||||
User-Agent: Mutt/1.2.5i
|
||||
In-Reply-To: <02082919334401.04648@neofelis>; from cmeclax@gmx.co.uk on
|
||||
Thu, Aug 29, 2002 at 07:33:44PM -0400
|
||||
X-Operating-System: Linux rover.vipul.net 2.4.18
|
||||
X-Privacy: If possible, encrypt your reply. Key at http://vipul.net/
|
||||
Sender: razor-users-admin@example.sourceforge.net
|
||||
Errors-To: razor-users-admin@example.sourceforge.net
|
||||
X-Beenthere: razor-users@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:razor-users-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:razor-users@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/razor-users>,
|
||||
<mailto:razor-users-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: <razor-users.example.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/razor-users>,
|
||||
<mailto:razor-users-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=razor-users>
|
||||
X-Original-Date: Thu, 29 Aug 2002 16:36:53 -0700
|
||||
Date: Thu, 29 Aug 2002 16:36:53 -0700
|
||||
|
||||
On Thu, Aug 29, 2002 at 07:33:44PM -0400, cmeclax po'u le cmevi'u ke'umri wrote:
|
||||
>
|
||||
> Was it sent in HTML? If so, and it had a background, the background may have
|
||||
> been sent in a spam.
|
||||
|
||||
razor-agents 2.14 needs all parts to be spam to make a positive decision
|
||||
(though this will change with the next release), so it couldn't have been
|
||||
a background. Could you send me the debug log?
|
||||
|
||||
cheers,
|
||||
vipul.
|
||||
|
||||
--
|
||||
|
||||
Vipul Ved Prakash | "The future is here, it's just not
|
||||
Software Design Artist | widely distributed."
|
||||
http://vipul.net/ | -- William Gibson
|
||||
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by:ThinkGeek
|
||||
Welcome to geek heaven.
|
||||
http://thinkgeek.com/sf
|
||||
_______________________________________________
|
||||
Razor-users mailing list
|
||||
Razor-users@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/razor-users
|
||||
|
||||
95
lib/jwz/testdata/0087.dd5f3aa35f50008bf7dfc5059ac8a239.eml
vendored
Normal file
95
lib/jwz/testdata/0087.dd5f3aa35f50008bf7dfc5059ac8a239.eml
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
From: sitescooper-talk-admin@lists.sourceforge.net Mon Sep 2 12:23:07 2002
|
||||
Return-Path: <sitescooper-talk-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 00C9643F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:23:07 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:23:07 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7U0RvZ06008 for <zzzz-scoop@example.com>; Fri, 30 Aug 2002 01:27:57 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17kZdr-0006yt-00; Thu,
|
||||
29 Aug 2002 17:28:03 -0700
|
||||
Received: from [210.14.43.56] (helo=min.kssp.upd.edu.ph) by
|
||||
usw-sf-list1.sourceforge.net with smtp (Exim 3.31-VA-mm2 #1 (Debian)) id
|
||||
17kZdM-0007Tc-00 for <sitescooper-talk@lists.sourceforge.net>;
|
||||
Thu, 29 Aug 2002 17:27:33 -0700
|
||||
Received: (qmail 30374 invoked from network); 30 Aug 2002 00:27:18 -0000
|
||||
Received: from unknown (HELO elayne.kssp.upd.edu.ph) (10.34.130.14) by 0
|
||||
with SMTP; 30 Aug 2002 00:27:18 -0000
|
||||
Received: from elayne.kssp.upd.edu.ph (localhost.kssp.upd.edu.ph
|
||||
[127.0.0.1]) by elayne.kssp.upd.edu.ph (8.12.3/8.12.3) with ESMTP id
|
||||
g7U0RMjS024015 for <sitescooper-talk@lists.sourceforge.net>;
|
||||
Fri, 30 Aug 2002 08:27:23 +0800 (PHT)
|
||||
Received: (from barryg@localhost) by elayne.kssp.upd.edu.ph
|
||||
(8.12.3/8.12.3/Submit) id g7U0R9eT031218 for
|
||||
sitescooper-talk@lists.sourceforge.net; Fri, 30 Aug 2002 08:27:09 +0800
|
||||
(PHT)
|
||||
X-Authentication-Warning: elayne.kssp.upd.edu.ph: barryg set sender to
|
||||
barryg@kssp.upd.edu.ph using -f
|
||||
From: "Barry Dexter A. Gonzaga" <barryg@kssp.upd.edu.ph>
|
||||
To: sitescooper-talk@example.sourceforge.net
|
||||
Subject: Re: [scoop] Scoop MS Word .doc file into something that plucker or other Palm app can display?
|
||||
Message-Id: <20020830002709.GA21600@elayne.kssp.upd.edu.ph>
|
||||
Mail-Followup-To: sitescooper-talk@example.sourceforge.net
|
||||
References: <20020829171046.AAB1816@cas.org>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Content-Disposition: inline
|
||||
In-Reply-To: <20020829171046.AAB1816@cas.org>
|
||||
User-Agent: Mutt/1.3.99i
|
||||
Sender: sitescooper-talk-admin@example.sourceforge.net
|
||||
Errors-To: sitescooper-talk-admin@example.sourceforge.net
|
||||
X-Beenthere: sitescooper-talk@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:sitescooper-talk-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:sitescooper-talk@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/sitescooper-talk>,
|
||||
<mailto:sitescooper-talk-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: Discussion of sitescooper - see http://sitescooper.org/
|
||||
<sitescooper-talk.lists.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/sitescooper-talk>,
|
||||
<mailto:sitescooper-talk-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=sitescooper-talk>
|
||||
X-Original-Date: Fri, 30 Aug 2002 08:27:09 +0800
|
||||
Date: Fri, 30 Aug 2002 08:27:09 +0800
|
||||
|
||||
Good Day!
|
||||
|
||||
On Thu, Aug 29, 2002 at 05:10:47PM -0400, Larry W. Virden wrote:
|
||||
> I am wondering whether there's a way that I can use sitescooper and/or plucker
|
||||
> or some other free utility to convert word documents into something a bit
|
||||
> more palmos friendly?
|
||||
|
||||
You could try antiword (http://www.winfield.demon.nl/linux/).
|
||||
It's consoled based and converts word 6+ docs to text and some images to
|
||||
postscript and png. You could also try openoffice and/or abiword if you
|
||||
have x installed.
|
||||
|
||||
> I don't have a Windows machine, so it becomes problematic to convert them;
|
||||
> I know that if this were not the case, in Word I could save them as some
|
||||
> other more friendly format.
|
||||
|
||||
Great! ;)
|
||||
|
||||
Mabuhay! barryg
|
||||
|
||||
--
|
||||
Barry Dexter A. Gonzaga, bofh
|
||||
barryg@kssp.upd.edu.ph
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by:ThinkGeek
|
||||
Welcome to geek heaven.
|
||||
http://thinkgeek.com/sf
|
||||
_______________________________________________
|
||||
Sitescooper-talk mailing list
|
||||
Sitescooper-talk@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/sitescooper-talk
|
||||
|
||||
46
lib/jwz/testdata/0088.43fa07c598e8b3d272a1a00705398e48.eml
vendored
Normal file
46
lib/jwz/testdata/0088.43fa07c598e8b3d272a1a00705398e48.eml
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
From: pudge@perl.org Mon Sep 2 12:23:11 2002
|
||||
Return-Path: <pudge@perl.org>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 9A7C743F99
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:23:11 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:23:11 +0100 (IST)
|
||||
Received: from cpu59.osdn.com (slashdot.org [64.28.67.73] (may be forged))
|
||||
by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7U20KZ08932 for
|
||||
<zzzz-use-perl@example.com>; Fri, 30 Aug 2002 03:00:21 +0100
|
||||
Received: from [10.2.181.14] (helo=perl.org) by cpu59.osdn.com with smtp
|
||||
(Exim 3.35 #1 (Debian)) id 17kb3f-0002Em-00 for <zzzz-use-perl@example.com>;
|
||||
Thu, 29 Aug 2002 21:58:47 -0400
|
||||
Date: Fri, 30 Aug 2002 02:00:24 +0000
|
||||
From: pudge@perl.org
|
||||
Subject: [use Perl] Headlines for 2002-08-30
|
||||
To: zzzz-use-perl@example.com
|
||||
Precedence: list
|
||||
X-Bulkmail: 2.051
|
||||
Message-Id: <E17kb3f-0002Em-00@cpu59.osdn.com>
|
||||
|
||||
use Perl Daily Headline Mailer
|
||||
|
||||
Installing Perl 5.8.0 on Mac OS X 10.2
|
||||
posted by pudge on Thursday August 29, @15:03 (releases)
|
||||
http://use.perl.org/article.pl?sid=02/08/29/193225
|
||||
|
||||
|
||||
|
||||
|
||||
Copyright 1997-2002 pudge. All rights reserved.
|
||||
|
||||
|
||||
======================================================================
|
||||
|
||||
You have received this message because you subscribed to it
|
||||
on use Perl. To stop receiving this and other
|
||||
messages from use Perl, or to add more messages
|
||||
or change your preferences, please go to your user page.
|
||||
|
||||
http://use.perl.org/my/messages/
|
||||
|
||||
You can log in and change your preferences from there.
|
||||
|
||||
63
lib/jwz/testdata/0089.8b3fea141f5b2f2e5b66a9f12148b7d0.eml
vendored
Normal file
63
lib/jwz/testdata/0089.8b3fea141f5b2f2e5b66a9f12148b7d0.eml
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
From: pudge@perl.org Mon Sep 2 12:23:15 2002
|
||||
Return-Path: <pudge@perl.org>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id EFFAD43F99
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:23:14 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:23:15 +0100 (IST)
|
||||
Received: from cpu59.osdn.com (slashdot.org [64.28.67.73] (may be forged))
|
||||
by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7U20QZ08937 for
|
||||
<zzzz-use-perl@example.com>; Fri, 30 Aug 2002 03:00:26 +0100
|
||||
Received: from [10.2.181.14] (helo=perl.org) by cpu59.osdn.com with smtp
|
||||
(Exim 3.35 #1 (Debian)) id 17kb3l-0002JD-01 for <zzzz-use-perl@example.com>;
|
||||
Thu, 29 Aug 2002 21:58:53 -0400
|
||||
Date: Fri, 30 Aug 2002 02:00:30 +0000
|
||||
From: pudge@perl.org
|
||||
Subject: [use Perl] Stories for 2002-08-30
|
||||
To: zzzz-use-perl@example.com
|
||||
Precedence: list
|
||||
X-Bulkmail: 2.051
|
||||
Message-Id: <E17kb3l-0002JD-01@cpu59.osdn.com>
|
||||
|
||||
use Perl Daily Newsletter
|
||||
|
||||
In this issue:
|
||||
* Installing Perl 5.8.0 on Mac OS X 10.2
|
||||
|
||||
+--------------------------------------------------------------------+
|
||||
| Installing Perl 5.8.0 on Mac OS X 10.2 |
|
||||
| posted by pudge on Thursday August 29, @15:03 (releases) |
|
||||
| http://use.perl.org/article.pl?sid=02/08/29/193225 |
|
||||
+--------------------------------------------------------------------+
|
||||
|
||||
[0]Morbus Iff writes "The newest release of Apple's operating system, Mac
|
||||
OS X v10.2 (Jaguar) comes with perl 5.6.0, surprisingly old for their
|
||||
latest offering. In an [1]Internet Developer article, I walk the Mac OS X
|
||||
user through installing perl 5.8.0, and as well provide a brief
|
||||
introduction to CPAN."
|
||||
|
||||
Discuss this story at:
|
||||
http://use.perl.org/comments.pl?sid=02/08/29/193225
|
||||
|
||||
Links:
|
||||
0. mailto:morbus@disobey.com
|
||||
1. http://developer.apple.com/internet/macosx/perl.html
|
||||
|
||||
|
||||
|
||||
Copyright 1997-2002 pudge. All rights reserved.
|
||||
|
||||
|
||||
======================================================================
|
||||
|
||||
You have received this message because you subscribed to it
|
||||
on use Perl. To stop receiving this and other
|
||||
messages from use Perl, or to add more messages
|
||||
or change your preferences, please go to your user page.
|
||||
|
||||
http://use.perl.org/my/messages/
|
||||
|
||||
You can log in and change your preferences from there.
|
||||
|
||||
98
lib/jwz/testdata/0090.314ec4268af7a3a1974d5eab84ea65af.eml
vendored
Normal file
98
lib/jwz/testdata/0090.314ec4268af7a3a1974d5eab84ea65af.eml
vendored
Normal file
@@ -0,0 +1,98 @@
|
||||
From: rpm-list-admin@freshrpms.net Mon Sep 2 12:24:03 2002
|
||||
Return-Path: <rpm-zzzlist-admin@freshrpms.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 803D843F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:24:02 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:24:02 +0100 (IST)
|
||||
Received: from egwn.net (ns2.egwn.net [193.172.5.4]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7U780Z16522 for
|
||||
<zzzz-rpm@example.com>; Fri, 30 Aug 2002 08:08:00 +0100
|
||||
Received: from auth02.nl.egwn.net (localhost [127.0.0.1]) by egwn.net
|
||||
(8.11.6/8.11.6/EGWN) with ESMTP id g7U754J32624; Fri, 30 Aug 2002 09:05:04
|
||||
+0200
|
||||
Received: from cskk.homeip.net (c17877.carlnfd1.nsw.optusnet.com.au
|
||||
[210.49.140.231]) by egwn.net (8.11.6/8.11.6/EGWN) with ESMTP id
|
||||
g7U73RJ32084 for <rpm-list@freshrpms.net>; Fri, 30 Aug 2002 09:03:28 +0200
|
||||
Received: from amadeus.home (localhost.localdomain [127.0.0.1]) by
|
||||
cskk.homeip.net (8.11.6/8.11.6) with ESMTP id g7U738708102 for
|
||||
<rpm-list@freshrpms.net>; Fri, 30 Aug 2002 17:03:11 +1000
|
||||
From: Cameron Simpson <cs@zip.com.au>
|
||||
To: rpm-zzzlist@freshrpms.net
|
||||
Subject: Re: /home/dude
|
||||
Message-Id: <20020830070306.GA7959@amadeus.home>
|
||||
References: <20020828143235.A5779@bonzo.nirvana>
|
||||
<20020829142252.7b20caab.matthias@egwn.net>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Content-Disposition: inline
|
||||
In-Reply-To: <20020829142252.7b20caab.matthias@egwn.net>
|
||||
User-Agent: Mutt/1.4i
|
||||
X-Mailscanner: Found to be clean, Found to be clean
|
||||
Sender: rpm-zzzlist-admin@freshrpms.net
|
||||
Errors-To: rpm-zzzlist-admin@freshrpms.net
|
||||
X-Beenthere: rpm-zzzlist@freshrpms.net
|
||||
X-Mailman-Version: 2.0.11
|
||||
Precedence: bulk
|
||||
Reply-To: rpm-zzzlist@freshrpms.net
|
||||
X-Reply-To: cs@zip.com.au
|
||||
List-Help: <mailto:rpm-zzzlist-request@freshrpms.net?subject=help>
|
||||
List-Post: <mailto:rpm-zzzlist@freshrpms.net>
|
||||
List-Subscribe: <http://lists.freshrpms.net/mailman/listinfo/rpm-zzzlist>,
|
||||
<mailto:rpm-list-request@freshrpms.net?subject=subscribe>
|
||||
List-Id: Freshrpms RPM discussion list <rpm-zzzlist.freshrpms.net>
|
||||
List-Unsubscribe: <http://lists.freshrpms.net/mailman/listinfo/rpm-zzzlist>,
|
||||
<mailto:rpm-list-request@freshrpms.net?subject=unsubscribe>
|
||||
List-Archive: <http://lists.freshrpms.net/pipermail/rpm-zzzlist/>
|
||||
X-Original-Date: Fri, 30 Aug 2002 17:03:06 +1000
|
||||
Date: Fri, 30 Aug 2002 17:03:06 +1000
|
||||
|
||||
On 14:22 29 Aug 2002, Matthias Saou <matthias@egwn.net> wrote:
|
||||
| Once upon a time, Axel wrote :
|
||||
| > I am now relaxed again ;), and pass this info on. Probably Matthias Saou
|
||||
| > himself is "dude", and some package has hardwired a path in his build
|
||||
| > directory. It would be nice to find out which and fix it, but I am using
|
||||
| > too many of the freshrpm suite to narrow it down.
|
||||
|
|
||||
| Indeed, my usual login is "dude" (and has been since long before "The Big
|
||||
| Lebowsky" came out ;-)), and it seems the some programs wrongly hard code
|
||||
| my home directory when being compiled :-(
|
||||
| For instance :
|
||||
|
|
||||
| [dude@python dude]$ strings /usr/bin/gentoo | grep dude
|
||||
| /home/dude/
|
||||
| [dude@python dude]$ strings /usr/bin/xine | grep dude
|
||||
| /home/dude/redhat/tmp/xine-root/usr/share/locale
|
||||
|
|
||||
| These should probably be considered bugs in the program's build process
|
||||
| (especially for xine, look at that!), I'll report them upstream if/when I
|
||||
| have some time.
|
||||
|
||||
This is a standard trap for people building things from source. It's
|
||||
generally wise to have a special "build" environment to avoid these
|
||||
hassles. Most likely you have some library loading path in your env. An
|
||||
strace of the app will show it:
|
||||
|
||||
the-app 2>&1 | grep dude
|
||||
|
||||
Personally, I have a script called logbuild whose entire purpose is to
|
||||
start a shell with a minimal build environment, logged with script. The
|
||||
prevents this kind of error. Since configure yanks all sorts of ill
|
||||
documented values from one's environment for use in the build (CC, ARCH,
|
||||
various LD_* variables) this kind of thing is necessary.
|
||||
|
||||
Often the easiest thing is to have a special nonroot account with no .profile
|
||||
for building stuff.
|
||||
|
||||
Cheers,
|
||||
--
|
||||
Cameron Simpson, DoD#743 cs@zip.com.au http://www.zip.com.au/~cs/
|
||||
|
||||
Do not taunt Happy Fun Coder.
|
||||
|
||||
_______________________________________________
|
||||
RPM-List mailing list <RPM-List@freshrpms.net>
|
||||
http://lists.freshrpms.net/mailman/listinfo/rpm-list
|
||||
|
||||
116
lib/jwz/testdata/0091.3bdd7b578973ee005733480a8b6c9b54.eml
vendored
Normal file
116
lib/jwz/testdata/0091.3bdd7b578973ee005733480a8b6c9b54.eml
vendored
Normal file
@@ -0,0 +1,116 @@
|
||||
From: sitescooper-talk-admin@lists.sourceforge.net Mon Sep 2 12:28:11 2002
|
||||
Return-Path: <sitescooper-talk-admin@example.sourceforge.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id ADEBC43F99
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:28:09 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:28:09 +0100 (IST)
|
||||
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
||||
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
||||
g7UDpYZ27586 for <zzzz-scoop@example.com>; Fri, 30 Aug 2002 14:51:34 +0100
|
||||
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
||||
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
||||
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17kmB1-0003rI-00; Fri,
|
||||
30 Aug 2002 06:51:07 -0700
|
||||
Received: from snipe.mail.pas.earthlink.net ([207.217.120.62]) by
|
||||
usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id
|
||||
17kmAm-0008KI-00 for <sitescooper-talk@lists.sourceforge.net>;
|
||||
Fri, 30 Aug 2002 06:50:52 -0700
|
||||
Received: from dialup-209.245.228.178.dial1.dallas1.level3.net
|
||||
([209.245.228.178] helo=localhost.localdomain) by
|
||||
snipe.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 17kmAb-00076W-00;
|
||||
Fri, 30 Aug 2002 06:50:42 -0700
|
||||
Subject: Re: [scoop] Scoop MS Word .doc file into something that plucker or other Palm app can display?
|
||||
From: unlisted <unlisted@pobox.com>
|
||||
To: "Larry W. Virden" <lvirden@cas.org>
|
||||
Cc: sitescooper-talk@example.sourceforge.net,
|
||||
"Barry Dexter A. Gonzaga" <barryg@kssp.upd.edu.ph>
|
||||
In-Reply-To: <20020830002709.GA21600@elayne.kssp.upd.edu.ph>
|
||||
References: <20020829171046.AAB1816@cas.org>
|
||||
<20020830002709.GA21600@elayne.kssp.upd.edu.ph>
|
||||
Content-Type: text/plain
|
||||
Content-Transfer-Encoding: 7bit
|
||||
X-Mailer: Ximian Evolution 1.0.5
|
||||
Message-Id: <1030715441.2038.31.camel@leviticus>
|
||||
MIME-Version: 1.0
|
||||
Sender: sitescooper-talk-admin@example.sourceforge.net
|
||||
Errors-To: sitescooper-talk-admin@example.sourceforge.net
|
||||
X-Beenthere: sitescooper-talk@example.sourceforge.net
|
||||
X-Mailman-Version: 2.0.9-sf.net
|
||||
Precedence: bulk
|
||||
List-Help: <mailto:sitescooper-talk-request@example.sourceforge.net?subject=help>
|
||||
List-Post: <mailto:sitescooper-talk@example.sourceforge.net>
|
||||
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/sitescooper-talk>,
|
||||
<mailto:sitescooper-talk-request@lists.sourceforge.net?subject=subscribe>
|
||||
List-Id: Discussion of sitescooper - see http://sitescooper.org/
|
||||
<sitescooper-talk.lists.sourceforge.net>
|
||||
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/sitescooper-talk>,
|
||||
<mailto:sitescooper-talk-request@lists.sourceforge.net?subject=unsubscribe>
|
||||
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=sitescooper-talk>
|
||||
X-Original-Date: 30 Aug 2002 08:50:38 -0500
|
||||
Date: 30 Aug 2002 08:50:38 -0500
|
||||
|
||||
On Thu, 2002-08-29 at 19:27, Barry Dexter A. Gonzaga wrote:
|
||||
> On Thu, Aug 29, 2002 at 05:10:47PM -0400, Larry W. Virden wrote:
|
||||
> > I am wondering whether there's a way that I can use sitescooper and/or plucker
|
||||
> > or some other free utility to convert word documents into something a bit
|
||||
> > more palmos friendly?
|
||||
>
|
||||
> You could try antiword (http://www.winfield.demon.nl/linux/).
|
||||
> It's consoled based and converts word 6+ docs to text and some images to
|
||||
> postscript and png.
|
||||
|
||||
also there's catdoc and wv for Word --> text conversions. actually, wv
|
||||
consists of wvWare, which as the manpage says "converts word documents
|
||||
into other formats such as PS, PDF, HTML, LaTeX, DVI, ABW". HTML would
|
||||
probably be the best format for use with Plucker/SiteScooper, depending
|
||||
on how good the DOC --> HTML conversion is. i haven't used either in
|
||||
over a year as AbiWord or OpenOffice work well enough. (prefer AbiWord
|
||||
for it's light-weight size, but OpenOffice has the better DOC importer.)
|
||||
|
||||
don't know which of these are better or worse than the other, but i
|
||||
figure, "the more the merrier". ;-)
|
||||
|
||||
> You could also try openoffice and/or abiword if you
|
||||
> have x installed.
|
||||
|
||||
AbiWord supports exporting to PalmDoc (.pdb) which is about as
|
||||
PalmOS-friendly as you can get. never tried/needed it, but it's listed
|
||||
there in the "Save As" dialog box.
|
||||
|
||||
Wine (or CrossOver Office, if you already have it) may support Word
|
||||
Viewer (free download from Microsoft), but didn't a year or so ago when
|
||||
i last tried. Word Viewer is what i used back in the day to convert
|
||||
Word 97 docs to Word 95, as you could display the Word 97 doc and copy &
|
||||
paste the text (with formatting) into Word 95, which was the only
|
||||
version of Word that i had. anyways, a little nostalgia.
|
||||
|
||||
> > I don't have a Windows machine, so it becomes problematic to convert them;
|
||||
> > I know that if this were not the case, in Word I could save them as some
|
||||
> > other more friendly format.
|
||||
|
||||
i have a windows (dual-boot) machine, but it only get used by my
|
||||
significant other and for burning multi-session cd-r/rw. (is there any
|
||||
linux gui app that supports cdrecord's multi-session feature?) since
|
||||
OpenOffice, i've been able to edit Word docs flawlessly (or at least the
|
||||
simple Word documents i receive from others).
|
||||
|
||||
anyways...
|
||||
--
|
||||
|
||||
PLEASE REQUEST PERMISSION TO REDISTRIBUTE
|
||||
AUTHOR'S COMMENTS OR EMAIL ADDRESS.
|
||||
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
This sf.net email is sponsored by: OSDN - Tired of that same old
|
||||
cell phone? Get a new here for FREE!
|
||||
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
|
||||
_______________________________________________
|
||||
Sitescooper-talk mailing list
|
||||
Sitescooper-talk@lists.sourceforge.net
|
||||
https://lists.sourceforge.net/lists/listinfo/sitescooper-talk
|
||||
|
||||
120
lib/jwz/testdata/0092.a1560d2416687b2db8204c2fa69163f2.eml
vendored
Normal file
120
lib/jwz/testdata/0092.a1560d2416687b2db8204c2fa69163f2.eml
vendored
Normal file
@@ -0,0 +1,120 @@
|
||||
From: DNS-swap@lists.ironclad.net.au Mon Sep 2 12:28:53 2002
|
||||
Return-Path: <DNS-swap@lists.ironclad.net.au>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 40C6C43F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:28:52 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:28:52 +0100 (IST)
|
||||
Received: from lists.ironclad.net.au ([203.30.247.12]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with SMTP id g7UFQvZ30600 for
|
||||
<zzzz@example.com>; Fri, 30 Aug 2002 16:27:01 +0100
|
||||
Received: from dbsinfo.com by lists.ironclad.net.au with SMTP;
|
||||
Sat, 31 Aug 2002 01:21:00 +1000
|
||||
Message-Id: <00c401c25039$7b055460$976fa8c0@cfl.rr.com>
|
||||
From: "Bob Musser" <BobM@dbsinfo.com>
|
||||
To: <DNS-swap@lists.ironclad.net.au>
|
||||
Subject: Tiny DNS Swap
|
||||
Date: Fri, 30 Aug 2002 11:25:31 -0400
|
||||
MIME-Version: 1.0
|
||||
Content-Type: multipart/alternative;
|
||||
boundary="----=_NextPart_000_00C1_01C25017.F2F04E20"
|
||||
X-Priority: 3
|
||||
X-Msmail-Priority: Normal
|
||||
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
|
||||
X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000
|
||||
Reply-To: "DNS-swap" <DNS-swap@lists.ironclad.net.au>
|
||||
Sender: <DNS-swap@lists.ironclad.net.au>
|
||||
Precedence: Bulk
|
||||
List-Software: LetterRip Pro 3.0.7 by Fog City Software, Inc.
|
||||
List-Subscribe: <mailto:DNS-swap-on@lists.ironclad.net.au>
|
||||
List-Digest: <mailto:DNS-swap-digest@lists.ironclad.net.au>
|
||||
List-Unsubscribe: <mailto:DNS-swap-off@lists.ironclad.net.au>
|
||||
|
||||
(This list is sponsored by Ironclad Networks http://www.ironclad.net.au/)
|
||||
|
||||
This is a multi-part message in MIME format.
|
||||
|
||||
------=_NextPart_000_00C1_01C25017.F2F04E20
|
||||
Content-Type: text/plain;
|
||||
charset="Windows-1252"
|
||||
Content-Transfer-Encoding: quoted-printable
|
||||
|
||||
I'm using Simple DNS from JHSoft. We support only a few web sites and =
|
||||
I'd like to swap secondary services with someone in a similar position.
|
||||
|
||||
We have a static IP, DSL line and a 24/7 set of web, SQL, mail and now a =
|
||||
DNS server. As I said, we are hosting about 10 web sites, web and DNS =
|
||||
traffic is almost nothing. Everything is on lightly loaded APC battery =
|
||||
backups so we are very seldom down.
|
||||
|
||||
I'd like to swap with someone also using Simple DNS to take advantage of =
|
||||
the trusted zone file transfer option.
|
||||
|
||||
|
||||
|
||||
Bob Musser
|
||||
Database Services, Inc.
|
||||
Makers of:
|
||||
Process Server's Toolbox
|
||||
Courier Service Toolbox
|
||||
BobM@dbsinfo.com
|
||||
www.dbsinfo.com
|
||||
106 Longhorn Road
|
||||
Winter Park FL 32792
|
||||
(407) 679-1539
|
||||
|
||||
|
||||
|
||||
------=_NextPart_000_00C1_01C25017.F2F04E20
|
||||
Content-Type: text/html;
|
||||
charset="Windows-1252"
|
||||
Content-Transfer-Encoding: quoted-printable
|
||||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML><HEAD>
|
||||
<META http-equiv=3DContent-Type content=3D"text/html; =
|
||||
charset=3Dwindows-1252">
|
||||
<META content=3D"MSHTML 6.00.2716.2200" name=3DGENERATOR>
|
||||
<STYLE></STYLE>
|
||||
</HEAD>
|
||||
<BODY bgColor=3D#ffffff>
|
||||
<DIV><FONT size=3D2>I'm using Simple DNS from JHSoft. We support =
|
||||
only a few=20
|
||||
web sites and I'd like to swap secondary services with someone in a =
|
||||
similar=20
|
||||
position.</FONT></DIV>
|
||||
<DIV><FONT size=3D2></FONT> </DIV>
|
||||
<DIV><FONT size=3D2>We have a static IP, DSL line and a 24/7 set of web, =
|
||||
SQL, mail=20
|
||||
and now a DNS server. As I said, we are hosting about 10 web =
|
||||
sites, web=20
|
||||
and DNS traffic is almost nothing. Everything is on lightly loaded =
|
||||
APC=20
|
||||
battery backups so we are very seldom down.</FONT></DIV>
|
||||
<DIV><FONT size=3D2></FONT> </DIV>
|
||||
<DIV><FONT size=3D2>I'd like to swap with someone also using Simple DNS =
|
||||
to take=20
|
||||
advantage of the trusted zone file transfer option.</FONT></DIV>
|
||||
<DIV><FONT size=3D2></FONT> </DIV>
|
||||
<DIV><FONT size=3D2></FONT> </DIV>
|
||||
<DIV><FONT size=3D2></FONT> </DIV>
|
||||
<DIV><FONT size=3D2>Bob Musser<BR>Database Services, Inc.<BR>Makers=20
|
||||
of:<BR> Process Server's Toolbox<BR> Courier =
|
||||
Service=20
|
||||
Toolbox<BR><A =
|
||||
href=3D"mailto:BobM@dbsinfo.com">BobM@dbsinfo.com</A><BR><A=20
|
||||
href=3D"http://www.dbsinfo.com">www.dbsinfo.com</A><BR>106 Longhorn =
|
||||
Road<BR>Winter=20
|
||||
Park FL 32792<BR>(407) 679-1539</FONT></DIV>
|
||||
<DIV> </DIV>
|
||||
<DIV><FONT size=3D2></FONT> </DIV></BODY></HTML>
|
||||
|
||||
------=_NextPart_000_00C1_01C25017.F2F04E20--
|
||||
|
||||
|
||||
--
|
||||
To Unsubscribe: <dns-swap-off@lists.ironclad.net.au>
|
||||
Sponsor & Host: Ironclad Networks <http://www.ironclad.net.au/>
|
||||
|
||||
184
lib/jwz/testdata/0093.0c71febfdf6f3acbc4d0c76b777a8530.eml
vendored
Normal file
184
lib/jwz/testdata/0093.0c71febfdf6f3acbc4d0c76b777a8530.eml
vendored
Normal file
@@ -0,0 +1,184 @@
|
||||
From: DNS-swap@lists.ironclad.net.au Mon Sep 2 12:29:02 2002
|
||||
Return-Path: <DNS-swap@lists.ironclad.net.au>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id EE14044155
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:28:59 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:29:00 +0100 (IST)
|
||||
Received: from lists.ironclad.net.au ([203.30.247.12]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with SMTP id g7UFZJZ31030 for
|
||||
<zzzz@example.com>; Fri, 30 Aug 2002 16:35:19 +0100
|
||||
Received: from linkcreations.com.mx by lists.ironclad.net.au with SMTP;
|
||||
Sat, 31 Aug 2002 01:30:02 +1000
|
||||
Date: Fri, 30 Aug 2002 10:30:36 -0500
|
||||
Subject: Re: Tiny DNS Swap
|
||||
Content-Type: multipart/alternative; boundary=Apple-Mail-2-874629474
|
||||
MIME-Version: 1.0 (Apple Message framework v543)
|
||||
From: Javier Cota <javier@linkcreations.com.mx>
|
||||
To: "DNS-swap" <DNS-swap@lists.ironclad.net.au>
|
||||
In-Reply-To: <00c401c25039$7b055460$976fa8c0@cfl.rr.com>
|
||||
Message-Id: <6EA7567E-BC2D-11D6-9CA1-00306565A7B2@linkcreations.com.mx>
|
||||
X-Mailer: Apple Mail (2.543)
|
||||
Reply-To: "DNS-swap" <DNS-swap@lists.ironclad.net.au>
|
||||
Sender: <DNS-swap@lists.ironclad.net.au>
|
||||
Precedence: Bulk
|
||||
List-Software: LetterRip Pro 3.0.7 by Fog City Software, Inc.
|
||||
List-Subscribe: <mailto:DNS-swap-on@lists.ironclad.net.au>
|
||||
List-Digest: <mailto:DNS-swap-digest@lists.ironclad.net.au>
|
||||
List-Unsubscribe: <mailto:DNS-swap-off@lists.ironclad.net.au>
|
||||
|
||||
(This list is sponsored by Ironclad Networks http://www.ironclad.net.au/)
|
||||
|
||||
|
||||
--Apple-Mail-2-874629474
|
||||
Content-Transfer-Encoding: quoted-printable
|
||||
Content-Type: text/plain;
|
||||
charset=ISO-8859-1;
|
||||
format=flowed
|
||||
|
||||
Bob
|
||||
|
||||
We are a commercial company who host around 150 web sites on each of it=20=
|
||||
|
||||
servers, we can=B4t swap with you because we need someone in a similar=20=
|
||||
|
||||
position.
|
||||
|
||||
Thank you
|
||||
|
||||
Javier
|
||||
|
||||
El Viernes, 30 agosto, 2002, a las 10:25 AM, Bob Musser escribi=F3:
|
||||
|
||||
> I'm using Simple DNS from JHSoft.=A0 We support only a few web sites =
|
||||
and=20
|
||||
> I'd like to swap secondary services with someone in a similar > =
|
||||
position.
|
||||
> =A0
|
||||
> We have a static IP, DSL line and a 24/7 set of web, SQL, mail and now=20=
|
||||
|
||||
> a DNS server.=A0 As I said, we are hosting about 10 web sites, web and=20=
|
||||
|
||||
> DNS traffic is almost nothing.=A0 Everything is on lightly loaded APC=20=
|
||||
|
||||
> battery backups so we are very seldom down.
|
||||
> =A0
|
||||
> I'd like to swap with someone also using Simple DNS to take advantage=20=
|
||||
|
||||
> of the trusted zone file transfer option.
|
||||
> =A0
|
||||
> =A0
|
||||
> =A0
|
||||
> Bob Musser
|
||||
> Database Services, Inc.
|
||||
> Makers of:
|
||||
> =A0=A0 Process Server's Toolbox
|
||||
> =A0=A0 Courier Service Toolbox
|
||||
> BobM@dbsinfo.com
|
||||
> www.dbsinfo.com
|
||||
> 106 Longhorn Road
|
||||
> Winter Park FL 32792
|
||||
> (407) 679-1539
|
||||
> =A0
|
||||
> =A0
|
||||
>
|
||||
---
|
||||
Atentamente
|
||||
Javier Cota
|
||||
Integraci=F3n tecnol=F3gica
|
||||
52723341
|
||||
javier@linkcreations.com.mx
|
||||
|
||||
|
||||
--Apple-Mail-2-874629474
|
||||
Content-Transfer-Encoding: quoted-printable
|
||||
Content-Type: text/enriched;
|
||||
charset=ISO-8859-1
|
||||
|
||||
Bob
|
||||
|
||||
|
||||
We are a commercial company who host around 150 web sites on each of
|
||||
it servers, we can=B4t swap with you because we need someone in a
|
||||
similar position.
|
||||
|
||||
|
||||
Thank you
|
||||
|
||||
|
||||
Javier=20
|
||||
|
||||
|
||||
El Viernes, 30 agosto, 2002, a las 10:25 AM, Bob Musser escribi=F3:
|
||||
|
||||
|
||||
<excerpt><smaller>I'm using Simple DNS from JHSoft.=A0 We support only a
|
||||
few web sites and I'd like to swap secondary services with someone in
|
||||
a similar position.</smaller>
|
||||
|
||||
=A0
|
||||
|
||||
<smaller>We have a static IP, DSL line and a 24/7 set of web, SQL,
|
||||
mail and now a DNS server.=A0 As I said, we are hosting about 10 web
|
||||
sites, web and DNS traffic is almost nothing.=A0 Everything is on
|
||||
lightly loaded APC battery backups so we are very seldom down.</smaller>
|
||||
|
||||
=A0
|
||||
|
||||
<smaller>I'd like to swap with someone also using Simple DNS to take
|
||||
advantage of the trusted zone file transfer option.</smaller>
|
||||
|
||||
=A0
|
||||
|
||||
=A0
|
||||
|
||||
=A0
|
||||
|
||||
<smaller>Bob Musser
|
||||
|
||||
Database Services, Inc.
|
||||
|
||||
Makers of:
|
||||
|
||||
=A0=A0 Process Server's Toolbox
|
||||
|
||||
=A0=A0 Courier Service Toolbox
|
||||
|
||||
<underline><color><param>1999,1999,FFFF</param>BobM@dbsinfo.com
|
||||
|
||||
www.dbsinfo.com
|
||||
|
||||
</color></underline>106 Longhorn Road
|
||||
|
||||
Winter Park FL 32792
|
||||
|
||||
(407) 679-1539</smaller>
|
||||
|
||||
=A0
|
||||
|
||||
=A0
|
||||
|
||||
|
||||
</excerpt>---
|
||||
|
||||
Atentamente
|
||||
|
||||
Javier Cota
|
||||
|
||||
Integraci=F3n tecnol=F3gica
|
||||
|
||||
52723341
|
||||
|
||||
javier@linkcreations.com.mx
|
||||
|
||||
|
||||
|
||||
--Apple-Mail-2-874629474--
|
||||
|
||||
|
||||
--
|
||||
To Unsubscribe: <dns-swap-off@lists.ironclad.net.au>
|
||||
Sponsor & Host: Ironclad Networks <http://www.ironclad.net.au/>
|
||||
|
||||
309
lib/jwz/testdata/0094.b7bf14fae9c31d0516cfe00dd9ab068d.eml
vendored
Normal file
309
lib/jwz/testdata/0094.b7bf14fae9c31d0516cfe00dd9ab068d.eml
vendored
Normal file
@@ -0,0 +1,309 @@
|
||||
From: tips@spesh.com Mon Sep 2 12:29:16 2002
|
||||
Return-Path: <tips@spesh.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id BF46B43F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:29:13 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:29:13 +0100 (IST)
|
||||
Received: from prune.flirble.org (prune.flirble.org [195.40.6.30]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with SMTP id g7UFv4Z32113 for
|
||||
<zzzz-ntk@example.com>; Fri, 30 Aug 2002 16:57:04 +0100
|
||||
Received: (qmail 11976 invoked by uid 7789); 30 Aug 2002 15:32:37 -0000
|
||||
Mailing-List: contact ntknow-help@lists.ntk.net; run by ezmlm
|
||||
Precedence: bulk
|
||||
X-No-Archive: yes
|
||||
Delivered-To: mailing list ntknow@lists.ntk.net
|
||||
Delivered-To: moderator for ntknow@lists.ntk.net
|
||||
Received: (qmail 11905 invoked from network); 30 Aug 2002 15:30:57 -0000
|
||||
Message-Id: <3.0.6.32.20020830163318.01f75d40@pop.dial.pipex.com>
|
||||
X-Sender: af06@pop.dial.pipex.com
|
||||
X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32)
|
||||
Date: Fri, 30 Aug 2002 16:33:18 +0100
|
||||
To: NTK recipient list <ntknow@lists.ntk.net>
|
||||
From: Dave Green <tips@spesh.com>
|
||||
Subject: NTK Now, 2002-08-30
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset="us-ascii"
|
||||
|
||||
|
||||
_ _ _____ _ __ <*the* weekly high-tech sarcastic update for the uk>
|
||||
| \ | |_ _| |/ / _ __ __2002-08-30_ o join! mail an empty message to
|
||||
| \| | | | | ' / | '_ \ / _ \ \ /\ / / o ntknow-subscribe@lists.ntk.net
|
||||
| |\ | | | | . \ | | | | (_) \ v v / o website (+ archive) lives at:
|
||||
|_| \_| |_| |_|\_\|_| |_|\___/ \_/\_/ o http://www.ntk.net/
|
||||
|
||||
|
||||
"A case in point is web designer Matt Jones, the man
|
||||
responsible for how BBC News Online looked when it launched.
|
||||
Since then, he has invented 'warchalking', which he recently
|
||||
described as a 'curse'..."
|
||||
http://news.bbc.co.uk/1/hi/2210091.stm
|
||||
- but you cannot turn against me! I... created you!
|
||||
|
||||
|
||||
>> HARD NEWS <<
|
||||
stiffening sinews
|
||||
|
||||
More hot summer days in the mailinglist alleyways,
|
||||
dangerously empty of sane postings, strewn with the rotting
|
||||
carcasses of broiling vacation messages. Hacktress and
|
||||
Silicon Valley's chief rat-keeper LILE ELAM, excitedly posts
|
||||
about a new open 802.11 network she's found. "I am here at
|
||||
the police station waiting to see a judge and I thought I
|
||||
would check to see if there is connectivity", she writes,
|
||||
somewhat recklessly, to the Bay Area Wireless list. Exit
|
||||
the rest of the Wifi community through the nearest window
|
||||
and out into the streets... where, cooling tempers, the
|
||||
Microsoft Palladium boys are on an endless summer tour,
|
||||
reassuring the experts that while, hmm, they *suppose* Pd
|
||||
could *theoretically* be used as a Hollywood DRM system,
|
||||
they truly have no plans to do any such thing. Cypherpunk
|
||||
and friend of freedom Lucky Green hears this; thinks up four
|
||||
or five of the obvious Palladium DRM implementations; sends
|
||||
them off to be patented in his name. Licensing funds, we
|
||||
imagine, will go on cracking his own DRMs. And so the mail
|
||||
loops on.
|
||||
http://lists.bawug.org/pipermail/wireless/2002-August/008507.html
|
||||
- administrivia: HI MOM, I'M IN JAIL
|
||||
http://www.mail-archive.com/cryptography@wasabisystems.com/msg02554.html
|
||||
- Green/Palladium, like Green Kryptonite
|
||||
|
||||
Could Lucky get himself arrested under the DMCA for
|
||||
distributing a circumvention device? Worse: now we have the
|
||||
EUCD incoming, could he here in the UK? Will Alan Cox go to
|
||||
jail for posting detailed Changelogs? Will even the nicest
|
||||
UK cryptographer (or curious garage tinkerer) find
|
||||
themselves hauled up under our new and scarily DMCAish
|
||||
copyright regime? Find out the facts at the free FAIR DEAL
|
||||
FOR COPYRIGHT conference, organised by the irrepressible
|
||||
FOUNDATION FOR INFORMATION POLICY RESEARCH for Wednesday
|
||||
2002-09-18 at the London School of Economics. All the usual
|
||||
fun from the creators of the Scrambling for Safety crypto
|
||||
cons: we confidently predict government spokesmen caught in
|
||||
headlights, wanton Dave Bird heckling, some industry bigwig
|
||||
fighting off the audience with a broken chairleg, and other
|
||||
epiphenomena of the interzone between legal minds and hacker
|
||||
ethics. Oh, and FIPR are still looking for a Programme
|
||||
Director, so if you're interested, let them know. We
|
||||
suggested a convention raffle (first prize: the director's
|
||||
job, second prize: Ross Anderson as your personal slave for
|
||||
a day). They say there's some rule that would break, though.
|
||||
http://www.fipr.org/vacancy.html
|
||||
- doesn't the Foundation use psychohistory for filling these positions?
|
||||
|
||||
For those of us who can't read the abbreviation EULA without
|
||||
thinking of Martian fighting machines and their "deafening
|
||||
howls... which roared like thunder", we're sorry to report
|
||||
that this weekend's multimedia performance of Jeff Wayne's WAR
|
||||
OF THE WORLDS has been postponed due to "health and safety
|
||||
issues". The event was to feature computer graphics,
|
||||
fireworks, "60ft-tall Martian fighting machines" wreaking
|
||||
"havoc and destruction", and - most terrifyingly of all - the
|
||||
possibility of a David Essex tribute singer performing with
|
||||
Hawkwind, but UKP18 tickets for the Sat 2002-08-31 show at
|
||||
Manchester's Heaton Park will still be valid at a range of new
|
||||
venues next summer. Ironically, the Martians' original
|
||||
invasion plans were similarly thwarted by health and safety
|
||||
issues, "slain after all man's devices had failed by the
|
||||
humblest creatures that God, in his wisdom, has put upon this
|
||||
earth: bacteria. Minute, invisible, bacteria. For, directly
|
||||
the invaders arrived and drank and fed, our microscopic allies
|
||||
attacked them..."
|
||||
http://www.waroftheworlds.info/postpone.htm
|
||||
- "...From that moment, they were doomed."
|
||||
|
||||
|
||||
>> ANTI-NEWS <<
|
||||
berating the obvious
|
||||
|
||||
moving on from PUERILE GOOGLE MISSPELLINGS, weird search-and-
|
||||
replace artefact: http://www.google.com/search?q=consideyellow ,
|
||||
Japanese fan sites for "plince", "steery dan", "def reppard"
|
||||
et al, plus the 18,000 or more self-referential Usenet .sigs:
|
||||
http://groups.google.com/groups?q=%22get+random+signatures%22
|
||||
...http://www.colocation-network.com/ "Zerodowntime" ad leads
|
||||
to: http://www.ntk.net/2002/08/30/dohzero.gif ... slightly
|
||||
harsh alt text: http://www.ntk.net/2002/08/30/dohover.gif ...
|
||||
US military discovers the only "translator" those bastards
|
||||
seem to understand: http://www.ntk.net/2002/08/30/dohgun.gif
|
||||
... scary blue men herald return of the bizarre BBC hacking
|
||||
pics: http://news.bbc.co.uk/1/hi/1494091.stm ... reporter RYAN
|
||||
DILLEY http://news.bbc.co.uk/1/hi/uk/2202552.stm pulls his
|
||||
http://starwars.org.pl/galeria/e2/char/anakin/t001.jpg face
|
||||
... banjo maestro GEORGE FORMBY still alive, cooking, black:
|
||||
http://www.readersheds.co.uk/readersheds/shop.cfm?WOSNAMES=Wosnames
|
||||
... thanks guys, that ought to do it: http://www.eap.ca/ ...
|
||||
|
||||
|
||||
>> EVENT QUEUE <<
|
||||
goto's considered non-harmful
|
||||
|
||||
Controversially, we're all in favour of THE GUARDIAN GREAT
|
||||
BRITISH BLOG COMPETITION (closing date next Fri 2002-09-06,
|
||||
first prize UKP1000, entry free), in that any initiative that
|
||||
encourages this notoriously primadonna-ish "community" to try
|
||||
and engage with real-world notions of editorial quality surely
|
||||
has to be a good thing. Our only disappointment is that The
|
||||
Guardian appears to be focussing on the "best" of the entries,
|
||||
when everyone knows the real fun is to be had cruising the
|
||||
truly terrible examples that the genre has to offer, mentally
|
||||
allocating points for "Most Depressing Recycling Of Daypop Top
|
||||
40 URLs", "Most Unsettling Revelations About Personal Life",
|
||||
plus of course "Most Tedious Linking/Reciprocal Linking To Other
|
||||
Bloggers In Absence Of Having Anything Interesting To Say".
|
||||
http://www.guardian.co.uk/weblog/bestbritishblog/
|
||||
- "A strange game, Professor Falken..."
|
||||
http://media.guardian.co.uk/newmedia/comment/0,7496,765161,00.html
|
||||
- "...the only winning move is not to play."
|
||||
|
||||
|
||||
>> TRACKING <<
|
||||
sufficiently advanced technology : the gathering
|
||||
|
||||
The respective trademark holders will hate this, but
|
||||
Windows really *is* like the Sun. You have this big hulking
|
||||
mass of concentrated power in the middle, with a few small
|
||||
orbiting utilities - like WinZip, and PuTTY, and VNC.
|
||||
Occasionally one will get a bit too close to the OS, and
|
||||
Microsoft will suck it down and turn it into fuel for the
|
||||
System. One such discrete satellite remains FILEZILLA, the
|
||||
still-necessary ftp gui client for Windows. Those who know
|
||||
it won't need the introduction, although they might
|
||||
appreciate the note that it's getting close to v2.0 time.
|
||||
For dogged WS_FTP users, though, it's got multiple
|
||||
downloads, auto-restart of interrupted 'loads, queuing, and
|
||||
sftp and Kerberos support. It's also GPL'd which makes it a
|
||||
nice bit of source for anyone wanting to grok Win32
|
||||
networking from something that works.
|
||||
http://filezilla.sf.net/
|
||||
- talking of trademarks, will the Godzilla people strike before MS?
|
||||
|
||||
|
||||
>> MEMEPOOL <<
|
||||
ceci n'est pas une http://www.gagpipe.com/
|
||||
|
||||
(Not safe for work) next year's RED NOSE DAY looks more fun
|
||||
than usual: http://www.threepillows.com/tour2.htm ... Mirrored
|
||||
Disaster Recovery Suite - to go with mirrored bathroom etc?:
|
||||
http://www.dovebid.com/Auctions/AuctionDetail.asp?AuctionID=1450
|
||||
... and then the kid can take you to court for mental cruelty:
|
||||
http://www.cnn.com/2002/TECH/ptech/08/27/turok.baby.reut/ ...
|
||||
"funny" prefixes in front of "chalking" #n+1 - the actually
|
||||
quite pragmatic: http://www.pinkbunny.co.uk/poochalking/ ...
|
||||
no longer knowing - or caring - if these are prank AMAZON
|
||||
reviews or not, for Potter's ever-popular "vibrating" broom:
|
||||
http://www.amazon.com/exec/obidos/tg/stores/detail/-/toys/B00005NEBW/
|
||||
... ditto "Use This Software At Your Own Risk" disclaimer for:
|
||||
http://www.palmgear.com/software/showsoftware.cfm?prodID=41030
|
||||
... DAFFY DUCK appears in dock - accused of "dethpicable"
|
||||
behaviour?: http://news.bbc.co.uk/1/hi/england/2223065.stm ,
|
||||
http://www.ananova.com/news/story/sm_659889.html ...
|
||||
|
||||
|
||||
>> GEEK MEDIA <<
|
||||
get out less
|
||||
|
||||
TV>> celebrity cameo night tonight, with Brad Pitt in FRIENDS
|
||||
(9pm, Fri, C4), Sydney Pollack in WILL AND GRACE (9.30pm, Fri,
|
||||
C4), Dustin Hoffman in V GRAHAM NORTON (10.30pm, Fri, C4), and
|
||||
a singing, dancing peanut in globalised trade documentary ALT-
|
||||
TV (7.30pm, Fri, C4)... the BBC have kept McEnroe and the
|
||||
heart monitor, got rid of the live crocodiles in gimmicky
|
||||
quizshow THE CHAIR (6.40pm, Sat, BBC1)... and a month of
|
||||
"September 11th" specials kicks off with AVENGING TERROR (8pm,
|
||||
Sat & Sun, C4) - yet those responsible for BOWFINGER (9pm,
|
||||
Sat, C4) and NOTTING HILL (9pm, Sun, C4) still remain
|
||||
unpunished... John "The Last Seduction" Dahl's ROUNDERS (11pm,
|
||||
Sat, BBC2) turns out to be about high-stakes poker, rather
|
||||
than the girls' version of baseball... in the wake of DAVE
|
||||
GORMAN'S IMPORTANT ASTROLOGY EXPERIMENT (10.40pm, Sun, BBC2),
|
||||
how about a three-way challenge where he, Tony Hawks and Pete
|
||||
McCarthy battle to come up with the most lucrative pointless
|
||||
pretext for a book and TV show?... but we still have a soft
|
||||
spot for Ron "Alien: Resurrection" Perlman liberal self-
|
||||
flagellation THE LAST SUPPER (11.20pm, Sun, C4)... 9/11 CLEAR
|
||||
THE SKIES (9pm, Sun, BBC2) is a presumably uneventful account
|
||||
of "how US air defence systems responded to the events of
|
||||
September 11th"... inexplicably, the three finalists in THE
|
||||
TARTIEST MEN IN BRITAIN (10.30pm, Mon, ITV) all come from
|
||||
Leeds... Larry Clark takes a somewhat indirect approach to
|
||||
conveying his safe-sex message in New York filth-fest KIDS
|
||||
(1.15am, Tue, C4)... and the September 11th build-up continues
|
||||
with HOW THE TWIN TOWERS COLLAPSED (8pm, Mon, C4), LET'S ROLL:
|
||||
THE STORY OF FLIGHT 93 (10.30pm, Wed, ITV), plus THE MEYSSAN
|
||||
CONSPIRACY (11.05pm, Tue, C4) - ie the French guy behind:
|
||||
http://www.asile.org/citoyens/numero13/pentagone/erreurs_en.htm
|
||||
... away from the polluted nightmare of modern living, a
|
||||
family seek out a new way of life in Earth Summit tie-in A
|
||||
LAND WORTH LOVING (7pm, Wed, BBC1)... which coincidentally
|
||||
also forms the plot of this week's second Heather "Bowfinger"
|
||||
Graham turkey, LOST IN SPACE (7.55pm, Wed, BBC1) - not to be
|
||||
confused with the return of those annoying posh women in
|
||||
WORLD'S WORST DRESSED (8pm, Wed, BBC2), who have at least shut
|
||||
up about their always-doomed hideously purple e-commerce
|
||||
site: http://news.bbc.co.uk/1/hi/business/712188.stm ...
|
||||
|
||||
FILM>> the comic skills of Cameron Diaz, Christina Applegate
|
||||
and Parker Posey combine in a cross between a teen smut comedy
|
||||
and an episode of "Sex And The City", THE SWEETEST THING
|
||||
( http://www.screenit.com/movies/2002/the_sweetest_thing.html :
|
||||
As [Diaz] and [Applegate] drive down the road still dressed in
|
||||
just their bras and underwear, [Applegate] drops her bottle of
|
||||
fingernail polish. [Diaz] then goes over to get it, with
|
||||
her panty-covered butt in the air and her head down toward
|
||||
[Applegate]'s legs and crotch; [Selma Blair] [has] her mouth
|
||||
stuck around a man's privates after apparently performing oral
|
||||
sex on him)... Robin Williams plays a surprisingly convincing
|
||||
Hannibal Lecter in morally complicated Alaskan Al Pacino
|
||||
murder madness INSOMNIA ( http://www.cndb.com/ : You can see
|
||||
[Crystal Lowe's] tits in autopsy photos and again - along with
|
||||
bush - when she's seen on a autopsy table. Nice boobs but
|
||||
she's dead)... it's Eddie Murphy, Randy Quaid, Jay "Jerry
|
||||
Maguire" Mohr, John Cleese and Pam Grier - together at last! -
|
||||
in blaxploitation sci-fi spoof THE ADVENTURES OF PLUTO NASH
|
||||
( http://www.screenit.com/movies/2002/the_adventures_of_pluto_nash.html :
|
||||
the woman then causes the image of [Rosario "Kids" Dawson] to
|
||||
suddenly have much larger breasts and an exaggeratedly large
|
||||
rear end)... all of which, shockingly, are an improvement on
|
||||
John Woo interspersing lame battle scenes with agonising anti-
|
||||
racist philosophising in WW2 Navajo crypto clunker WINDTALKERS
|
||||
( http://www.capalert.com/capreports/windtalkers.htm :
|
||||
gambling; beheading; brief partial nudity of a Japanese
|
||||
soldier; I have no doubt that such gore is present in war but
|
||||
must it be regurgitated in and as entertainment?)...
|
||||
|
||||
|
||||
>> SMALL PRINT <<
|
||||
|
||||
Need to Know is a useful and interesting UK digest of things that
|
||||
happened last week or might happen next week. You can read it
|
||||
on Friday afternoon or print it out then take it home if you have
|
||||
nothing better to do. It is compiled by NTK from stuff they get sent.
|
||||
Registered at the Post Office as
|
||||
"yeah, but bet we were banned first"
|
||||
http://www.b3ta.com/newsletter/issue54/
|
||||
|
||||
|
||||
NEED TO KNOW
|
||||
THEY STOLE OUR REVOLUTION. NOW WE'RE STEALING IT BACK.
|
||||
Archive - http://www.ntk.net/
|
||||
Unsubscribe? Mail ntknow-unsubscribe@lists.ntk.net
|
||||
Subscribe? Mail ntknow-subscribe@lists.ntk.net
|
||||
NTK now is supported by UNFORTU.NET, and by you: http://www.geekstyle.co.uk/
|
||||
|
||||
(K) 2002 Special Projects.
|
||||
Copying is fine, but include URL: http://www.ntk.net/
|
||||
|
||||
Tips, news and gossip to tips@spesh.com
|
||||
All communication is for publication, unless you beg.
|
||||
Press releases from naive PR people to pr@spesh.com
|
||||
Remember: Your work email may be monitored if sending sensitive material.
|
||||
Sending >500KB attachments is forbidden by the Geneva Convention.
|
||||
Your country may be at risk if you fail to comply.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
44
lib/jwz/testdata/0095.b51416f612ac5737e0f4a5529ce453d1.eml
vendored
Normal file
44
lib/jwz/testdata/0095.b51416f612ac5737e0f4a5529ce453d1.eml
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
From: justin.armstrong@acm.org Mon Sep 2 12:29:05 2002
|
||||
Replied: Mon, 02 Sep 2002 16:16:00 +0100
|
||||
Replied: Justin Armstrong <justin.armstrong@acm.org>
|
||||
Return-Path: <justin.armstrong@acm.org>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 059B643F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:29:03 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:29:03 +0100 (IST)
|
||||
Received: from mail02.svc.cra.dublin.eircom.net
|
||||
(mail02.svc.cra.dublin.eircom.net [159.134.118.18]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with SMTP id g7UFaQZ31051 for <zzzz@example.com>;
|
||||
Fri, 30 Aug 2002 16:36:26 +0100
|
||||
Received: (qmail 43115 messnum 226689 invoked from
|
||||
network[159.134.229.50/p306.as3.adl.dublin.eircom.net]); 30 Aug 2002
|
||||
15:36:34 -0000
|
||||
Received: from p306.as3.adl.dublin.eircom.net (HELO mingmecha)
|
||||
(159.134.229.50) by mail02.svc.cra.dublin.eircom.net (qp 43115) with SMTP;
|
||||
30 Aug 2002 15:36:34 -0000
|
||||
Content-Type: text/plain; charset="iso-8859-1"
|
||||
From: Justin Armstrong <justin.armstrong@acm.org>
|
||||
Subject: find the bug
|
||||
Date: Fri, 30 Aug 2002 16:36:46 +0100
|
||||
X-Mailer: KMail [version 1.4]
|
||||
To: zzzz@example.com (Justin Mason)
|
||||
MIME-Version: 1.0
|
||||
Content-Transfer-Encoding: 8bit
|
||||
Message-Id: <200208301636.46996.justin.armstrong@acm.org>
|
||||
|
||||
|
||||
//this function should print all numbers up to 100...
|
||||
|
||||
void print_nums()
|
||||
{
|
||||
int i;
|
||||
|
||||
for(i = 0; i < 10l; i++) {
|
||||
printf("%d\n",i);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
63
lib/jwz/testdata/0096.0446f3ed63b550a8622c8671d8ae9a9c.eml
vendored
Normal file
63
lib/jwz/testdata/0096.0446f3ed63b550a8622c8671d8ae9a9c.eml
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
From: DNS-swap@lists.ironclad.net.au Mon Sep 2 12:29:06 2002
|
||||
Return-Path: <DNS-swap@lists.ironclad.net.au>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 5B22044155
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:29:06 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:29:06 +0100 (IST)
|
||||
Received: from lists.ironclad.net.au ([203.30.247.12]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with SMTP id g7UFbiZ31242 for
|
||||
<zzzz@example.com>; Fri, 30 Aug 2002 16:37:45 +0100
|
||||
Received: from aernet.ru by lists.ironclad.net.au with SMTP;
|
||||
Sat, 31 Aug 2002 01:35:15 +1000
|
||||
Date: Fri, 30 Aug 2002 19:39:57 +0400
|
||||
From: "Andrey G. Sergeev (AKA Andris)" <andris@aernet.ru>
|
||||
X-Mailer: The Bat! (v1.60q)
|
||||
Reply-To: "DNS-swap" <DNS-swap@lists.ironclad.net.au>
|
||||
Organization: AerNet Ltd.
|
||||
X-Priority: 3 (Normal)
|
||||
Message-Id: <16279722375.20020830193957@aernet.ru>
|
||||
To: "Bob Musser" <DNS-swap@lists.ironclad.net.au>
|
||||
Subject: Re: Tiny DNS Swap
|
||||
In-Reply-To: <00c401c25039$7b055460$976fa8c0@cfl.rr.com>
|
||||
References: <00c401c25039$7b055460$976fa8c0@cfl.rr.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Sender: <DNS-swap@lists.ironclad.net.au>
|
||||
Precedence: Bulk
|
||||
List-Software: LetterRip Pro 3.0.7 by Fog City Software, Inc.
|
||||
List-Subscribe: <mailto:DNS-swap-on@lists.ironclad.net.au>
|
||||
List-Digest: <mailto:DNS-swap-digest@lists.ironclad.net.au>
|
||||
List-Unsubscribe: <mailto:DNS-swap-off@lists.ironclad.net.au>
|
||||
|
||||
(This list is sponsored by Ironclad Networks http://www.ironclad.net.au/)
|
||||
|
||||
Hello!
|
||||
|
||||
|
||||
Friday, August 30, 2002, 7:25:31 PM Bob Musser <BobM@dbsinfo.com> wrote:
|
||||
|
||||
[lost]
|
||||
|
||||
BM> I'd like to swap with someone also using Simple DNS to take
|
||||
BM> advantage of the trusted zone file transfer option.
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
Are you speaking about limiting AXFR requests on IP address basis? If
|
||||
yes, then virtually every BIND-equipped DNS server in the world will
|
||||
be suitable for your needs.
|
||||
|
||||
|
||||
--
|
||||
|
||||
Yours sincerely,
|
||||
|
||||
Andrey G. Sergeev (AKA Andris) http://www.andris.msk.ru/
|
||||
|
||||
|
||||
--
|
||||
To Unsubscribe: <dns-swap-off@lists.ironclad.net.au>
|
||||
Sponsor & Host: Ironclad Networks <http://www.ironclad.net.au/>
|
||||
|
||||
145
lib/jwz/testdata/0097.39badf2fea6bcebc640bea05ced59b59.eml
vendored
Normal file
145
lib/jwz/testdata/0097.39badf2fea6bcebc640bea05ced59b59.eml
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
From: webster@ryanairmail.com Mon Sep 2 12:30:45 2002
|
||||
Return-Path: <webster@ryanairmail.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 1B3B143F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:30:37 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:30:37 +0100 (IST)
|
||||
Received: from mail.ryanair2.ie ([193.120.152.8]) by dogma.slashnull.org
|
||||
(8.11.6/8.11.6) with SMTP id g7ULMQZ08782 for <zzzz-ryanair@example.com>;
|
||||
Fri, 30 Aug 2002 22:22:36 +0100
|
||||
From: webster@ryanairmail.com
|
||||
To: "Customers" <customers@mail.ryanairmail.com>
|
||||
Subject: Save up to 70% on international calls!
|
||||
Date: Fri, 30 Aug 2002 17:42:52 +0100
|
||||
X-Assembled-BY: XWall v3.21
|
||||
Message-Id: <LISTMANAGER-949326-32914-2002.08.30-17.47.31--zzzz-ryanair#example.com@mail.ryanairmail.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: multipart/mixed;
|
||||
boundary="_NextPart_1_bvfoDiTVghtoCXFdvJNKcuWblFV"
|
||||
List-Unsubscribe: <mailto:leave-customers-949326K@mail.ryanairmail.com>
|
||||
Reply-To: webster@ryanairmail.com
|
||||
|
||||
This is a multi part message in MIME format.
|
||||
|
||||
--_NextPart_1_bvfoDiTVghtoCXFdvJNKcuWblFV
|
||||
Content-Type: text/plain; charset="us-ascii"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
........... with our telecoms partner Bumblebee !
|
||||
|
||||
Don't get ripped off by expensive hotel, payphone and mobile charges.
|
||||
SAVE, SAVE, SAVE on international calls with Ryanair's phone partner.
|
||||
************************************************************************
|
||||
*********
|
||||
|
||||
You'll save up to 70% on international phone calls when you use our
|
||||
online phone card. You can use the card from any phone in any country
|
||||
you visit and you won't have to worry about high phone charges
|
||||
when you call home or the office.
|
||||
|
||||
Buying a card couldn't be easier and it's totally secure. Simply go to
|
||||
http://www.bumblebeecommunications.com/lowcostcalls/
|
||||
to avail of this special offer for Ryanair customers.
|
||||
|
||||
It's another great deal from Ryanair and our online phone
|
||||
partner, Bumblebee Communications.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
=====================================================================
|
||||
|
||||
E-MAIL DISCLAIMER
|
||||
|
||||
This e-mail and any files and attachments transmitted with it
|
||||
are confidential and may be legally privileged. They are intended
|
||||
solely for the use of the intended recipient. Any views and
|
||||
opinions expressed are those of the individual author/sender
|
||||
and are not necessarily shared or endorsed by Ryanair Holdings plc
|
||||
or any associated or related company. In particular e-mail
|
||||
transmissions are not binding for the purposes of forming
|
||||
a contract to sell airline seats, directly or via promotions,
|
||||
and do not form a contractual obligation of any type.
|
||||
Such contracts can only be formed in writing by post or fax,
|
||||
duly signed by a senior company executive, subject to approval
|
||||
by the Board of Directors.
|
||||
|
||||
The content of this e-mail or any file or attachment transmitted
|
||||
with it may have been changed or altered without the consent
|
||||
of the author. If you are not the intended recipient of this e-mail,
|
||||
you are hereby notified that any review, dissemination, disclosure,
|
||||
alteration, printing, circulation or transmission of, or any
|
||||
action taken or omitted in reliance on this e-mail or any file
|
||||
or attachment transmitted with it is prohibited and may be unlawful.
|
||||
|
||||
If you have received this e-mail in error
|
||||
please notify Ryanair Holdings plc by emailing postmaster@ryanair.ie
|
||||
or contact Ryanair Holdings plc, Dublin Airport, Co Dublin, Ireland.
|
||||
|
||||
--_NextPart_1_bvfoDiTVghtoCXFdvJNKcuWblFV
|
||||
Content-Type: application/ms-tnef
|
||||
Content-Transfer-Encoding: base64
|
||||
|
||||
eJ8+IjUQAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy
|
||||
b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEEgAEAJwAAAFNhdmUgdXAgdG8gNzAlIG9u
|
||||
IGludGVybmF0aW9uYWwgY2FsbHMhACgNAQWAAwAOAAAA0gcIAB4AEQAqADQABQBzAQEggAMADgAA
|
||||
ANIHCAAeABEAKgA0AAUAcwEBCYABACEAAAAxNUNDQzU1M0ZCNjVGOTRCODJBOTE2NjI0QjY5ODI2
|
||||
NAAgBwEDkAYAYAgAADEAAAALAAIAAQAAAAMAJgAAAAAAAwA2AAAAAABAADkAOHxzSERQwgEeAD0A
|
||||
AQAAAAEAAAAAAAAAAgFHAAEAAAAyAAAAYz11czthPSA7cD1SeWFuYWlyO2w9Q0hPVk1BSUwxLTAy
|
||||
MDgzMDE2NDI1MlotNTY1NgAAAB4AcAABAAAAJwAAAFNhdmUgdXAgdG8gNzAlIG9uIGludGVybmF0
|
||||
aW9uYWwgY2FsbHMhAAACAXEAAQAAABYAAAABwlBESGNVR3XMDo5JP7LazaO6pGd8AAAeABoMAQAA
|
||||
AAwAAABDb3lsZSwgU2VhbgAeAB0OAQAAACcAAABTYXZlIHVwIHRvIDcwJSBvbiBpbnRlcm5hdGlv
|
||||
bmFsIGNhbGxzIQAAAgEJEAEAAAC7AgAAtwIAALsEAABMWkZ1TPw4mgMACgByY3BnMTI14jIDQ3Rl
|
||||
eAVBAQMB908KgAKkA+MCAGNoCsBz8GV0MCAHEwKAD/MAUH8EVghVB7IRxQ5RAwEQxzL3BgAGwxHF
|
||||
MwRGEMkS2xHT2wjvCfc7GL8OMDURwgxgzmMAUAsJAWQzNhFQC6YUIC4dmCAD8HRoINUIYSAOsGwF
|
||||
kW0EIAqxZHRuEyFCdQbQHwBiuQngICEKogqECoBEAiBQXCc5MgVAZxEwIB0FEXAJgB6QASAgYnku
|
||||
IA7AImAAgXYgcGhvZR7hLB9heXAjsB+wIPcAcCKABGBiAxAgcBDiIfCGcx4wIKRTQVZFJAA/Jlge
|
||||
kAOgC4AOsASgYXTeaQIgB0AlUAdAbAQgHlPsUnkAcAtwciGSH1EkY/sfdSXWKitPLF8tby5/L0od
|
||||
IKpZCGAhkiiQIHNhCSOBdXAe0G8gNzAuJSdfKeUodWgJ8CB5vwhgMfARIB6TIKQCIGwLgO8qMTPF
|
||||
CyAeMCAxEShhA6D3NQIecDaUIANSJKEi8CRU1wuAOLMFoHUCMHIi8CCkvTTCdgQAHmAkozTCdyF2
|
||||
7xDwI4EyMTvQcjohAaAIYPk8QWlnHoAztSV0JeU0d/8ociOhB4AekB7BN/EioQ3grGUuIKof8HkL
|
||||
gGckoHM4FDnRbGQhhSBQIwBh/wCQEyEksh5gKZQyMAGQKJC7IvARIGMIcEEgNwBTB3BbC1Ai8Gcy
|
||||
QDIxaAJAcJA6Ly93R1AuYiAGfR8hbTnwDeAn8yXAHyEvpRhQdwWgc3Qocy83AP8gpDIiMcALcAMg
|
||||
IqA30QQA+zGgImBjBzEikhMhAhAFwH8pJSVQNQAyMAeAERBBO0l/RJUAcCPANIAFwAnBJ/Ag/wEA
|
||||
KEE4c0zmJLIeojXrIKT/H3UkAB/4CFBISyXlSkUgqgtWX1drfVigAB4ANRABAAAASAAAADxEMTNG
|
||||
N0MwNTQ3RDcxRjRDQTQwNzMyN0E4MjUxMzYwMDE5Q0E5Q0BDSE9WTUFJTDEuY2hvLmNvcnAucnlh
|
||||
bmFpci5jb20+AAMAgBD/////CwDyEAEAAAAfAPMQAQAAAFoAAABTAGEAdgBlACAAdQBwACAAdABv
|
||||
ACAANwAwACUAMgA1ACAAbwBuACAAaQBuAHQAZQByAG4AYQB0AGkAbwBuAGEAbAAgAGMAYQBsAGwA
|
||||
cwAhAC4ARQBNAEwAAAAAAAsA9hAAAAAAQAAHMN0ZcUhEUMIBQAAIMJPedUhEUMIBAwDeP59OAAAD
|
||||
APE/CQQAAB4A+D8BAAAADAAAAENveWxlLCBTZWFuAAIB+T8BAAAAXQAAAAAAAADcp0DIwEIQGrS5
|
||||
CAArL+GCAQAAAAAAAAAvTz1SWUFOQUlSL09VPUZJUlNUIEFETUlOSVNUUkFUSVZFIEdST1VQL0NO
|
||||
PVJFQ0lQSUVOVFMvQ049Q09ZTEVTAAAAAB4A+j8BAAAAFQAAAFN5c3RlbSBBZG1pbmlzdHJhdG9y
|
||||
AAAAAAIB+z8BAAAAHgAAAAAAAADcp0DIwEIQGrS5CAArL+GCAQAAAAAAAAAuAAAAAwAZQAAAAAAD
|
||||
ABpAAAAAAB4AMEABAAAABwAAAENPWUxFUwAAHgAxQAEAAAAHAAAAQ09ZTEVTAAAeADhAAQAAAAcA
|
||||
AABDT1lMRVMAAB4AOUABAAAAAgAAAC4AAAADAAlZAQAAAAsAWIEIIAYAAAAAAMAAAAAAAABGAAAA
|
||||
AA6FAAAAAAAAAwBwgQggBgAAAAAAwAAAAAAAAEYAAAAAUoUAAFmUAQAeAHGBCCAGAAAAAADAAAAA
|
||||
AAAARgAAAABUhQAAAQAAAAUAAAAxMC4wAAAAAAMAuIEIIAYAAAAAAMAAAAAAAABGAAAAAAGFAAAA
|
||||
AAAAQAC6gQggBgAAAAAAwAAAAAAAAEYAAAAAYIUAAAAAAAAAAAAACwC9gQggBgAAAAAAwAAAAAAA
|
||||
AEYAAAAAA4UAAAAAAAADAMeBCCAGAAAAAADAAAAAAAAARgAAAAAQhQAAAAAAAAMAzoEIIAYAAAAA
|
||||
AMAAAAAAAABGAAAAABiFAAAAAAAACwDlgQggBgAAAAAAwAAAAAAAAEYAAAAABoUAAAAAAAALAOmB
|
||||
CCAGAAAAAADAAAAAAAAARgAAAACChQAAAAAAAAsAKQAAAAAACwAjAAAAAAADAAYQHr1S2QMABxB/
|
||||
AgAAAwAQEAsAAAADABEQAQAAAB4ACBABAAAAZQAAAFdJVEhPVVJURUxFQ09NU1BBUlRORVJCVU1C
|
||||
TEVCRUVET05UR0VUUklQUEVET0ZGQllFWFBFTlNJVkVIT1RFTCxQQVlQSE9ORUFORE1PQklMRUNI
|
||||
QVJHRVNTQVZFLFNBVkUsU0EAAAAAAgF/AAEAAABIAAAAPEQxM0Y3QzA1NDdENzFGNENBNDA3MzI3
|
||||
QTgyNTEzNjAwMTlDQTlDQENIT1ZNQUlMMS5jaG8uY29ycC5yeWFuYWlyLmNvbT4AEOQ=
|
||||
|
||||
|
||||
--_NextPart_1_bvfoDiTVghtoCXFdvJNKcuWblFV
|
||||
Content-Type: text/plain; charset="us-ascii"
|
||||
Content-description: footer
|
||||
|
||||
---
|
||||
You are currently subscribed to customers as: zzzz-ryanair@example.com
|
||||
To unsubscribe send a blank email to leave-customers-949326K@mail.ryanairmail.com
|
||||
|
||||
--_NextPart_1_bvfoDiTVghtoCXFdvJNKcuWblFV--
|
||||
|
||||
|
||||
137
lib/jwz/testdata/0098.5053f669dda8f920e5300ed327cdd986.eml
vendored
Normal file
137
lib/jwz/testdata/0098.5053f669dda8f920e5300ed327cdd986.eml
vendored
Normal file
@@ -0,0 +1,137 @@
|
||||
From: updates-admin@ximian.com Mon Sep 2 12:29:39 2002
|
||||
Return-Path: <updates-admin@ximian.com>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 5EA4843F99
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:29:37 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:29:37 +0100 (IST)
|
||||
Received: from trna.ximian.com (trna.ximian.com [141.154.95.22]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7UIZpZ04242;
|
||||
Fri, 30 Aug 2002 19:35:51 +0100
|
||||
Received: from trna.ximian.com (localhost [127.0.0.1]) by trna.ximian.com
|
||||
(8.11.6/8.11.6) with ESMTP id g7UHqm306561; Fri, 30 Aug 2002 13:52:48
|
||||
-0400
|
||||
Received: from peabody.ximian.com (peabody.ximian.com [141.154.95.10]) by
|
||||
trna.ximian.com (8.11.6/8.11.6) with ESMTP id g7UHEO301839 for
|
||||
<updates@ximian.com>; Fri, 30 Aug 2002 13:14:24 -0400
|
||||
Date: Fri, 30 Aug 2002 13:14:24 -0400
|
||||
Message-Id: <200208301714.g7UHEO301839@trna.ximian.com>
|
||||
Received: (qmail 30686 invoked from network); 30 Aug 2002 17:14:34 -0000
|
||||
Received: from localhost (127.0.0.1) by localhost with SMTP;
|
||||
30 Aug 2002 17:14:34 -0000
|
||||
From: Ximian GNOME Security Team <distribution@ximian.com>
|
||||
To: Ximian Desktop Updates List <updates@ximian.com>
|
||||
Cc: BugTraq Mailing List <bugtraq@securityfocus.com>
|
||||
Subject: [Ximian Updates] Hyperlink handling in Gaim allows arbitrary code to be executed
|
||||
Sender: updates-admin@ximian.com
|
||||
Errors-To: updates-admin@ximian.com
|
||||
X-Mailman-Version: 1.1
|
||||
Precedence: bulk
|
||||
List-Id: Announcements about updates to the Ximian GNOME distribution.
|
||||
<updates.ximian.com>
|
||||
X-Beenthere: updates@ximian.com
|
||||
|
||||
Severity: Security
|
||||
Product: gaim
|
||||
Keywords: gaim hyperlink manual
|
||||
References:
|
||||
CAN-2002-0989
|
||||
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2002-0989
|
||||
Gaim Changelog
|
||||
http://gaim.sourceforge.net/ChangeLog
|
||||
|
||||
Gaim is an instant messaging client based on the published TOC
|
||||
protocol from AOL. The developers of Gaim, an instant messenger client
|
||||
that combines several different networks, found a vulnerability in the
|
||||
hyperlink handling code. The 'Manual' browser command passes an
|
||||
untrusted string to the shell without escaping or reliable quoting,
|
||||
permitting an attacker to execute arbitrary commands on the users
|
||||
machine. Unfortunately, Gaim doesn't display the hyperlink before the
|
||||
user clicks on it. Users who use other inbuilt browser commands aren't
|
||||
vulnerable.
|
||||
|
||||
The fixed version of Gaim no longer passes the user's manual browser
|
||||
command to the shell. Commands which contain the %s in quotes will
|
||||
need to be amended, so they don't contain any quotes. The 'Manual'
|
||||
browser command can be edited in the 'General' pane of the
|
||||
'Preferences' dialog, which can be accessed by clicking 'Options' from
|
||||
the login window, or 'Tools' and then 'Preferences' from the menu bar
|
||||
in the buddy list window.
|
||||
|
||||
Please download Gaim 0.59.1 or later using Red Carpet. You may also
|
||||
obtain this update from the Ximian FTP site.
|
||||
|
||||
Debian Potato
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/debian-potato-i386/gaim_0.59.1-1.ximian.2_i386.deb
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/debian-potato-i386/gaim-common_0.59.1-1.ximian.2_i386.deb
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/debian-potato-i386/gaim-gnome_0.59.1-1.ximian.2_i386.deb
|
||||
|
||||
Mandrake 8.0
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/mandrake-80-i586/gaim-0.59.1-1.ximian.2.i586.rpm
|
||||
|
||||
Mandrake 8.1
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/mandrake-81-i586/gaim-0.59.1-1.ximian.2.i586.rpm
|
||||
|
||||
Mandrake 8.2
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/mandrake-82-i586/gaim-0.59.1-1.ximian.2.i586.rpm
|
||||
|
||||
Redhat 6.2
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-62-i386/gaim-0.59.1-1.ximian.2.i386.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-62-i386/gaim-applet-0.59.1-1.ximian.2.i386.rpm
|
||||
|
||||
Redhat 7.0
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-70-i386/gaim-0.59.1-1.ximian.2.i386.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-70-i386/gaim-applet-0.59.1-1.ximian.2.i386.rpm
|
||||
|
||||
Redhat 7.1
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-71-i386/gaim-0.59.1-1.ximian.2.i386.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-71-i386/gaim-applet-0.59.1-1.ximian.2.i386.rpm
|
||||
|
||||
Redhat 7.2
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-72-i386/gaim-0.59.1-1.ximian.2.i386.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-72-i386/gaim-applet-0.59.1-1.ximian.2.i386.rpm
|
||||
|
||||
Redhat 7.3
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-73-i386/gaim-0.59.1-1.ximian.2.i386.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/redhat-73-i386/gaim-applet-0.59.1-1.ximian.2.i386.rpm
|
||||
|
||||
Solaris 7/8
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/solaris-7-sun4/gaim-0.59.1-2.ximian.1.sparc.rpm
|
||||
|
||||
SuSE 7.1
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/suse-71-i386/gaim-0.59.1-1.ximian.2.i386.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/suse-71-i386/gaim-applet-0.59.1-1.ximian.2.i386.rpm
|
||||
|
||||
SuSE 7.2
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/suse-72-i386/gaim-0.59.1-1.ximian.2.i386.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/suse-72-i386/gaim-applet-0.59.1-1.ximian.2.i386.rpm
|
||||
|
||||
SuSE 7.3
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/suse-73-i386/gaim-0.59.1-1.ximian.2.i386.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/suse-73-i386/gaim-applet-0.59.1-1.ximian.2.i386.rpm
|
||||
|
||||
SuSE 8.0
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/suse-80-i386/gaim-0.59.1-1.ximian.2.i386.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/suse-80-i386/gaim-applet-0.59.1-1.ximian.2.i386.rpm
|
||||
|
||||
Yellowdog 2.0
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/yellowdog-20-ppc/gaim-0.59.1-1.ximian.2.ppc.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/yellowdog-20-ppc/gaim-applet-0.59.1-1.ximian.2.ppc.rpm
|
||||
|
||||
Yellowdog 2.1
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/yellowdog-21-ppc/gaim-0.59.1-1.ximian.2.ppc.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/yellowdog-21-ppc/gaim-applet-0.59.1-1.ximian.2.ppc.rpm
|
||||
|
||||
Yellowdog 2.2
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/yellowdog-22-ppc/gaim-0.59.1-1.ximian.2.ppc.rpm
|
||||
ftp://ftp.ximian.com/pub/ximian-gnome/yellowdog-22-ppc/gaim-applet-0.59.1-1.ximian.2.ppc.rpm
|
||||
|
||||
|
||||
|
||||
_______________________________________________
|
||||
updates maillist - updates@ximian.com
|
||||
To unsubscribe from this list, or to change your subscription options, follow the link below:
|
||||
http://lists.ximian.com/mailman/listinfo/updates
|
||||
|
||||
61
lib/jwz/testdata/0099.9f54be08406e67fd8944f2f1d0fbdd90.eml
vendored
Normal file
61
lib/jwz/testdata/0099.9f54be08406e67fd8944f2f1d0fbdd90.eml
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
From: 0xdeadbeef-request@petting-zoo.net Mon Sep 2 12:31:10 2002
|
||||
Return-Path: <0xdeadbeef-request@petting-zoo.net>
|
||||
Delivered-To: zzzz@localhost.netnoteinc.com
|
||||
Received: from localhost (localhost [127.0.0.1])
|
||||
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 679CA43F9B
|
||||
for <zzzz@localhost>; Mon, 2 Sep 2002 07:31:09 -0400 (EDT)
|
||||
Received: from phobos [127.0.0.1]
|
||||
by localhost with IMAP (fetchmail-5.9.0)
|
||||
for zzzz@localhost (single-drop); Mon, 02 Sep 2002 12:31:09 +0100 (IST)
|
||||
Received: from petting-zoo.net (petting-zoo.net [64.166.12.219]) by
|
||||
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7UMh7Z10885 for
|
||||
<zzzz-deadbeef@example.com>; Fri, 30 Aug 2002 23:43:08 +0100
|
||||
Received: by petting-zoo.net (Postfix, from userid 1004) id 6770BEA3D;
|
||||
Fri, 30 Aug 2002 15:42:18 -0700 (PDT)
|
||||
Old-Return-Path: <gkm@petting-zoo.net>
|
||||
Delivered-To: 0xdeadbeef@petting-zoo.net
|
||||
Received: from petting-zoo.net (localhost [127.0.0.1]) by petting-zoo.net
|
||||
(Postfix) with ESMTP id 53DEBEA0A for <0xdeadbeef@petting-zoo.net>;
|
||||
Fri, 30 Aug 2002 15:42:07 -0700 (PDT)
|
||||
From: gkm@petting-zoo.net (glen mccready)
|
||||
To: 0xdeadbeef@petting-zoo.net
|
||||
Subject: Promises.
|
||||
Date: Fri, 30 Aug 2002 15:41:47 -0700
|
||||
Sender: gkm@petting-zoo.net
|
||||
Message-Id: <20020830224207.53DEBEA0A@petting-zoo.net>
|
||||
Resent-Message-Id: <1GcX0D.A.UFH.ET_b9@petting-zoo.net>
|
||||
Resent-From: 0xdeadbeef@petting-zoo.net
|
||||
X-Mailing-List: <0xdeadbeef@petting-zoo.net> archive/latest/532
|
||||
X-Loop: 0xdeadbeef@petting-zoo.net
|
||||
List-Post: <mailto:0xdeadbeef@petting-zoo.net>
|
||||
List-Help: <mailto:0xdeadbeef-request@petting-zoo.net?subject=help>
|
||||
List-Subscribe: <mailto:0xdeadbeef-request@petting-zoo.net?subject=subscribe>
|
||||
List-Unsubscribe: <mailto:0xdeadbeef-request@petting-zoo.net?subject=unsubscribe>
|
||||
Precedence: list
|
||||
Resent-Sender: 0xdeadbeef-request@petting-zoo.net
|
||||
Resent-Date: Fri, 30 Aug 2002 15:42:18 -0700 (PDT)
|
||||
|
||||
|
||||
Forwarded-by: Rob Windsor <windsor@warthog.com>
|
||||
Forwarded-by: "Shirley Baer"
|
||||
Forwarded-by: cjw59068
|
||||
Forwarded-by: Joe & Allie Greenough
|
||||
|
||||
There were four buddies golfing and the first guy said, "I had to
|
||||
promise my wife that I would paint the whole outside of the house
|
||||
just to go golfing."
|
||||
|
||||
The second guy said, "I promised my wife that I would remodel the
|
||||
kitchen for her."
|
||||
|
||||
The third guy said, "You guys have it easy! I promised my wife that
|
||||
I would build her a new deck." They continued to play the hole.
|
||||
Then the first guy said to the fourth guy, "What did you have to
|
||||
promise your wife?"
|
||||
|
||||
The fourth guy replied, "I didn't promise anything." All the guys
|
||||
were shocked, "How did you do it?!" He replied, "It's simple. I
|
||||
set the alarm clock for 5:30. Then I poked my wife and asked, 'Golf
|
||||
course or intercourse?' And she said, 'Wear your sweater.'"
|
||||
|
||||
|
||||
128
lib/jwz/threadable.go
Normal file
128
lib/jwz/threadable.go
Normal file
@@ -0,0 +1,128 @@
|
||||
// Author: Jim Idle - jimi@idle.ws / jimi@gatherstars.com
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package jwz
|
||||
|
||||
import "time"
|
||||
|
||||
// ThreadableRoot is an interface that supports traversing a set of Threadables in some arbitrary
|
||||
// way - for instance if they are in some kind of tree structure, the traversal can be
|
||||
// hidden behind the interface
|
||||
//
|
||||
// JI - Although it might be useful to support incoming tree structures, all the
|
||||
// Next and Get are doing is keeping a pointer if the input is a []Threadable. So we also
|
||||
// have a function that just accepts that as input as well as one that accepts a ThreadableRoot
|
||||
type ThreadableRoot interface {
|
||||
// Next causes an internal iterator over your internal representation of Threadable
|
||||
// elements to either be created and pointing to the next element, or to simply
|
||||
// advance to the next element if there is one. It returns true if another element
|
||||
// is available and false if there are no more beans.
|
||||
//
|
||||
Next() bool
|
||||
|
||||
// Get returns the next available Threadable from your internal storage.
|
||||
// Note that this func should not be called without a prior call to Next and your
|
||||
// implementation can assume that.
|
||||
//
|
||||
Get() Threadable
|
||||
}
|
||||
|
||||
// Threadable is an interface which can be implemented by any go type, which will then
|
||||
// allow it to be threaded.
|
||||
type Threadable interface {
|
||||
// MessageThreadID returns a string identifying this message.
|
||||
// Generally this will be a representation of the contents of the
|
||||
// Message-ID header.
|
||||
//
|
||||
MessageThreadID() string
|
||||
|
||||
// MessageThreadReferences returns the IDs of the set of messages referenced by this one.
|
||||
// This list should be ordered from oldest-ancestor to youngest-ancestor. However, the returned
|
||||
// tree can be sorted however you like.
|
||||
//
|
||||
MessageThreadReferences() []string
|
||||
|
||||
// Subject returns the subject line of the threadable with no manipulation of Re: Re: etc.
|
||||
//
|
||||
Subject() string
|
||||
|
||||
// SimplifiedSubject - provides a threadable subject string.
|
||||
//
|
||||
// When no references are present, subjects will be used to thread together
|
||||
// messages. This method should return a threadable subject: two messages
|
||||
// with the same simplifiedSubject will be considered to belong to the same
|
||||
// thread. This string should not have `Re:' on the front, and may have
|
||||
// been simplified in whatever other ways seem appropriate.
|
||||
//
|
||||
// This is a String of Unicode characters, and should have had any encodings -
|
||||
// such as RFC 2047 charset encodings - removed first.
|
||||
//
|
||||
// If you aren't interested in threading by subject at all, return "".
|
||||
//
|
||||
SimplifiedSubject() string
|
||||
|
||||
// SubjectIsReply indicates whether the original subject was one that appeared to be a reply
|
||||
// I.E. it had a `Re:' or some other indicator that lets you determine that. When threading by subject,
|
||||
// this property is used to tell whether two messages appear to be siblings,
|
||||
// or in a parent/child relationship.
|
||||
//
|
||||
SubjectIsReply() bool
|
||||
|
||||
// SetNext is called after the proper thread order has been computed,
|
||||
// and will be called on each Threadable in the chain, to set up the proper tree
|
||||
// structure.
|
||||
//
|
||||
SetNext(next Threadable)
|
||||
|
||||
// SetChild is called after the proper thread order has been computed,
|
||||
// and will be called on each Threadable in the chain, to set up the proper tree
|
||||
// structure.
|
||||
//
|
||||
SetChild(kid Threadable)
|
||||
|
||||
// SetParent is not called by the jwz algorithm and if you do not need the pointer in your
|
||||
// implementation, then you can implement it as a null function. It can be useful when using
|
||||
// the Walk utility method though
|
||||
//
|
||||
SetParent(parent Threadable)
|
||||
|
||||
// GetNext just makes it easier to navigate through the threads after they are built,
|
||||
// but you don't have to use this if you have a better way
|
||||
//
|
||||
GetNext() Threadable
|
||||
|
||||
// GetChild just makes it easier to navigate through the threads after they are built,
|
||||
// but you don't have to use this if you have a better way
|
||||
//
|
||||
GetChild() Threadable
|
||||
|
||||
// GetParent just makes it easier to navigate through the threads after they are built,
|
||||
// but you don't have to use this if you have no need for it
|
||||
//
|
||||
GetParent() Threadable
|
||||
|
||||
// GetDate is not used by the threading algorithm, but implementing this function may make
|
||||
// your own tree walking routines and sorting methods easier to implement.
|
||||
// It should return the Date associated with the Threadable
|
||||
//
|
||||
GetDate() time.Time
|
||||
|
||||
// MakeDummy creates a dummy parent object.
|
||||
//
|
||||
// With some set of messages, the only way to achieve proper threading is
|
||||
// to introduce an element into the tree which represents messages which are
|
||||
// not present in the set: for example, when two messages share a common
|
||||
// ancestor, but that ancestor is not in the set. This method is used to
|
||||
// make a placeholder for those sorts of ancestors. It should return
|
||||
// a Threadable type. The SetNext() and SetChild() funcs
|
||||
// will be used on this placeholder, as either the object or the argument,
|
||||
// just as for other elements of the tree.
|
||||
//
|
||||
MakeDummy(forID string) Threadable
|
||||
|
||||
// IsDummy should return true of dummy messages, false otherwise.
|
||||
// It is legal to pass dummy messages within your input;
|
||||
// the isDummy() method is the mechanism by which they are noted and ignored.
|
||||
//
|
||||
IsDummy() bool
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user