Don't break news posting from Netscape.

Links to incorporate into the remailer list:
http://www.replay.com/remailer/
http://www.eskimo.com/~joelm/index.html
http://www.cyberpass.net/
http://www.hotmail.com/
http://www.juno.com/
http://www.mailmasher.com/
http://www.rocketmail.com
http://www.skuz.net

Fix internal links within
http://www.cs.berkeley.edu/~raph/n.a.n.help.html

handle messages containing -----BEGIN PGP SIGNED MESSAGE----- but
don't contain signature.

Remailers to add: cracker, dustman's nymserver, magus, bureau42,
medusa, mccain(?)

Date: Sat, 28 Jun 1997 14:39:40 -0700
From: javafan@poboxes.com
Subject: Something, you may want to link....

Hello, Ralh.

I like you remailer's page a lot. 
Recently, I've designed an Anonymous Usenet Poster.
You may want to put a link there to your page.
http://www.geocities.com/SiliconValley/Heights/1599/usenet.html

Thanks for your time.

JavaFan.

-----
Explain blank in history list. Explain ?.


Date: Wed, 30 Jul 1997 22:38:19 +0300 (EET DST)
From: Antti Vaha-Sipila <avs@iki.fi>
Reply to: avs@cs.tut.fi
To: raph@c2.net
Subject: A small premail bug (feature)

Hello,

And first I have to thank you for Premail. It really has helped me
a lot.

I've been having a small problem when updating my existing nym
at weasel.owl.de with Premail 0.45. When I issue the command

premail -makenym mynym@weasel.owl.de my@address

It tells me that "remailer medusa does not support nyms".
A quick look at the remailer list:

$remailer{'weasel'} = '<config@weasel.owl.de> newnym pgp';
$remailer{"medusa"} = "<medusa@weasel.owl.de> mix middle"

Now, it seems that premail thinks that "weasel.owl.de" belongs to medusa,
and not to weasel, which would support nyms.

-- 
<URL:http://www.modeemi.cs.tut.fi/~avs/> PGP public key available
Dear Raph,

I saw that you were updating your webpage.  Please be advised that the
latest version of ChainMail is not available at the link on your page.

ChainMail 1.0b2 can be downloaded from:

ftp.primenet.com/users/e/europa/

The latest version fixes all the bugs from the old version, which
according to the original authors, no-one was ever able to use (except
for me for some strange reason :)  It also updates the manual, makes
available all development resources, includes OSAXen, and packages it
all in a self extracting archive.  Nifty.

My update has the blessing and approval from the original authors. (I
think they are on summer vacation, as they haven't responded to my
mail for couple of months)

Also, another person is working on a version that will be compatible
with MacPGP 5.0.  So Chainmail is again live and well.

If you are interested in learning more, the manual can be downloaded
seperately on the ftp site.

Thanks alot,  Rob.

------------------------------------------
Date: Mon, 11 Aug 1997 14:35:35 -0500
From: Hal DeVore <hdevore@bmc.com>
To: premail-dev@alpha.jpunix.com
Subject: premail, MH, and invalid local users

I just ran across premail and am trying it out for the first time.  I've
read the doc and I have a problem that I can't figure out how to solve.

I'm using premail with MH (usually exmh) so I've put prepost in as my MH 
postproc per the doc.

This works EXCEPT in the case of an invalid local user.  In my case
this is actually a misspelled alias.

In that error case EVERY TRACE of the failed message gets deleted.  It is 
gone from the MH drafts folder, it hasn't yet made it into the MH fcc 
folder, and premail deletes it's temp copy.

What can I change so that the draft copy of the message doesn't get 
deleted and so that the error is fed back to the caller to allow the draft 
message to be re-edited?

The problem (to my Perl-illiterate eyes) seems to be a total lack of
checking for error returns from the MH post program where it is called by
line 2230 of premail 0.45



Hal
------------------------------------------
www.rocketmail.com
www.netaddress.com
www.mailcity.com

------------------------------------------

Explain (in docs) that ~/.premail is better than /tmp if ~ is not NFS
mounted.

Date: 11 Sep 1997 17:45:34 GMT
From: Ian Goldberg <iang@cs.berkeley.edu>
To: premail-dev@alpha.jpunix.com
Newsgroups: isaac.lists.premail-dev
Subject: Re: [Premail-Dev] Getting Perl 5.004_1 to work with premail

In article <Pine.BSF.3.96.970911094839.7278E-100000@shell5.ba.best.com>,
Aaron D. Turner <aturner@pobox.com> wrote:
>I know I asked this a few weeks ago, but I haven't gotten any answers, and
>right now I'm SOL.
>
>Anyone know how to get premail .45 to work with Perl 5.004_1?  Ever since
>my ISP upgraded I can't get it to work!  Here the errors:            

I'm using perl5.004_01 with premail just fine.  Attached are the patches I made
to premail.

   - Ian

diff --recursive --new-file -u ../dist-src/premail ./premail
--- ../dist-src/premail Wed Oct 30 19:25:10 1996
+++ ./premail   Tue Aug 26 11:40:42 1997
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 #
 # premail, an e-mail privacy package
 #
@@ -1268,7 +1268,7 @@
     my ($body, @the_recips) = @_;
     my ($key_type, $key);
     my (@keys);
-    my ($new_body, $err, $line);
+    my ($err, $line);
     my (@mime_fields, $prefix, $boundary);
     my ($sign_type, $sign);
     my ($invoc, $errfile);
@@ -1354,7 +1354,7 @@
     my ($body, @the_recips) = @_;
     my ($key_type, $key);
     my (@keys);
-    my ($new_body, $err, $line);
+    my ($err, $line);
     my (@mime_fields, $prefix);
     my ($sign_type, $sign);
     my ($invoc, $errfile);
@@ -3238,7 +3238,7 @@
     return ($mimefile, $err, $boundary);
 }
 
-my $PUBRING, $SECRING;
+my ($PUBRING, $SECRING);
 sub pgp_decrypt {
 # ($out_body, $err) = &pgp_decrypt ($body, $pass)
 # Try to decrypt $body using passphrase $pass. $out_body is null on error.
@@ -5997,7 +5997,7 @@
 
     # The main loop
     $quit = 0;
-    $inoef = 0;
+    $ineof = 0;
     while (!$quit) {
        $rin = $win = $ein = '';
        vec ($rin, fileno(STDIN), 1) = 1 unless $ineof;
@@ -6315,7 +6315,7 @@
 # Open a Web connection for the file as file handle WWW.
     my ($url) = @_;
     my ($host, $port, $suf);
-    my ($fqdn, $aliases, $type, $len, $thataddr);
+    my ($fqdn, $aliases, $type, $len);
     my ($name, $proto);
     my ($that, $thataddr);
     my ($savesel, $gotsep);

Date: Thu, 11 Sep 1997 21:52:16 +0100
From: OneSky <sky@mailgate.grid9.net>
To: raph@cs.berkeley.edu
Subject: Web Based remailer


Hi,

I've this running for over a month now.

http://www.onesky.com/email/

Web based anonymous remailer (can get a reply through rand #)

Due to system upgrade it's a bit slow to deliver email at a moment.

But it was real fast a few days ago.

Please in clude in your list ,

Thanks

------------------------------------------
Date: Sun, 14 Sep 1997 21:36:37 -0700 (PDT)
From: "Aaron D. Turner" <aturner@best.com>
Reply to: Aaron Turner <aturner@pobox.com>
To: Premail Developers <premail-dev@alpha.jpunix.com>
Subject: [Premail-Dev] Stripping before ------Begin PGP

Hi All!

Well now that I've got premail working again with Pine 3.96, I'm noticing
a rather annoying issue.  It usually happens when a cc:Mail user replies
to a PGP signed message.  Basically cc:Mail places the response before my
old message, with the PGP header intact (no ">" before each line).  This
causes premail to strip the reply and only display my original message,
which is rather useless to me (I end up going into Pine setup and changine
the string premail scans for so it ignores the PGP "headers").  Is there
someway to fix it so premail does that by default?

Thanks!
------------------------------------------
Date: Sun, 28 Sep 1997 02:56:31 +0000
From: Peter Foster <pf@acefox.com>
To: raph@acm.org
Subject: nym signing and perl 5.004_03

Hi Raph,

I've found a problen in using premail 0.45 with perl 5.004_03

The signing of a nym does not work,
eg, To: address ((chain;nym=mynym, sign))

Everything seems ok when the sign field is absent.

refcnt_bump (/tmp/premail.4037.1, 1) 2
refcnt_bump (/tmp/premail.4037.1, -1) 3
purify_mime: $non_ascii=0 $ctrl=0 $other=0
purify_mime: $charset=us-ascii $ct_present=0 $mv_present=0
No passphrase in /tmp/.premail-secrets.1024 for   <<NOTE BLANK
Saving message in /home/pf/dead.letter
refcnt_bump (/tmp/premail.4037.1, -1) 2
Deleting /tmp/premail.4037.1
Deleting /tmp/premail.4037.2
Deleting /tmp/premail.4037.3

The last version of perl I used, 5.002, did not exhibit this problem.

Best regards,

Peter Foster.
------------------------------------------
Date: Sun, 26 Oct 1997 13:44:49 +0900
From: Joichi Ito <jito@eccosys.com>
To: remailer-operators@anon.lcs.mit.edu
Subject: remailer in Tokyo

    [The following text is in the "ISO-2022-JP" character set]
    [Your display is set for the "US-ASCII" character set]
    [Some characters may be displayed incorrectly]

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

We have set up a remailer in Tokyo. The address is
mixer@htp.org.

I don't think it is working perfectly yet so please
let us know if you notice anything. We have set up
a type I and type II mixmaster using qmail on a FreeBSD
machine. It is currently on a 100MB line that peers to
several Japanese ISP's at the IX in Tokyo so for Japanese,
it should be fairly fast. We are working on Japanese documentation
for remailers.

We are using PGP 5.0 for the type I key. It is:

- -----BEGIN PGP PUBLIC KEY BLOCK-----
Version: PGPfreeware 5.0i for non-commercial use

mQGiBDQ4VvURBADG5phfc6hXpCgJB/CCHS6ARc+GBa6h5puSOJMxfK9klynsup25
JtURVCf4IqdHE9Phv5QIUF31+5KKIdRsqYy7Ce6fBg/VN9D9y9OyL3it7FMGtN38
RpQAtrfVqTyCkKvifqJyJCM39KLdkB7kfdddCbvUW9UrC8vFIZzWDURi8QCg//r0
ybTYYD3zhev41ySRH2URpNcD/RgtVMU3bCvl+5JPyhGZ4BvEHsOaV+tDrVmxi7s2
WeSV07/B36MRm+7GCvbOBJuGBOoYozQLKqIG6zZRBB0RKSvqL2k/HP8tX9ANWJ48
dCUlDRHzZ5L44BXyAwLWWpZuF2ddaQKLR3pbGFMUGsHlLlC5wHv9S+IGXGFa5IOn
3jW1A/9+c/7Ci6n/ZYibNxddyxQJ1xHeXGzhg7GSfrt7tZ+IxlTto2JNhAzV2qVf
v0pCo0ZWlytz3W5JI0VSUlbB0CyUri+cOTWciFwiwlA+gSn19yWlRQHfrrOs6hxB
hicx8tQWUcvt997aonxPYz466tgqldY4jnpGxplob9nR0QUAvLQiSFRQIENQIFJl
bWFpbGVyIDxjcG1haWxlckBodHAub3JnPokASwQQEQIACwUCNDhW9QQLAwECAAoJ
EPTnMvXJv+f08kYAoIYoSpeFT69Gz2771mAEhdS6aVSKAJ9YUqfv7jJvmQc99uNI
KAc1UPGexrkCDQQ0OFb1EAgA9kJXtwh/CBdyorrWqULzBej5UxE5T7bxbrlLOCDa
AadWoxTpj0BV89AHxstDqZSt90xkhkn4DIO9ZekX1KHTUPj1WV/cdlJPPT2N286Z
4VeSWc39uK50T8X8dryDxUcwYc58yWb/Ffm7/ZFexwGq01uejaClcjrUGvC/RgBY
K+X0iP1YTknbzSC0neSRBzZrM2w4DUUdD3yIsxx8Wy2O9vPJI8BD8KVbGI2Ou1WM
uF040zT9fBdXQ6MdGGzeMyEstSr/POGxKUAYEY18hKcKctaGxAMZyAcpesqVDNmW
n6vQClCbAkbTCD1mpF1Bn5x8vYlLIhkmuquiXsNV6TILOwACAgf/StDuMV+y4Odj
2h3RuxaTRStWvplQSLvgRr96767Fhb8brGa7CAYGBUp+3FMjCZ2id3SDNnGMpDje
Kv1UO+3sOTcZTLFzqSpyxikQ9c0yUkZZZnaJPlIdmDY3Zg5ejqwJhWvh4grPnVpJ
j1/EWykgkSXJ/GZfMsByFb3dQb1Vd52i8iUbu8f7BwOysXqrH8geIRocUOpTPu0I
gvw4uCS6SObJXCNvtUCTY5/10RSifIqoi4ouevjtyaJVt0sPpT9nNaAH3ryT71vo
AGKyypNPzyHPPRBrIJeM/d2tqc4dMyZ/5WKIDULl/CVLKe1qMgADy3m11vMg47LN
3+cRwkvXgokAPwMFGDQ4VvX05zL1yb/n9BECcfUAmwdxrtPBN7y7Cips34qu4rXp
UYtRAKDjYAYzuh3yWUdWFgv37QY0dE8NbQ==
=/RHO
- -----END PGP PUBLIC KEY BLOCK-----

The type II key is:  

htp mixer@htp.org 128ab3341e1b89d10c95360816b6b313 2.0.4b19 C

- -----Begin Mix Key-----
128ab3341e1b89d10c95360816b6b313
258
AATQjBkIUlojzBN5phchb7j7rIYpgsJOqnmbs4GX
e9l738qSKFIiXQg7Q3eeLIEiJIbWEoNLDEjul5kC
HRPrM/XlftKzSygw2OhnszUtg0S5k0g0kV7rASYg
/uLrgT5VYqmQeJJo9X9+QuHpjPk3SpHrZU86z/vw
7JBgiyVnzySigQAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAQAB
- -----End Mix Key-----


-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBNFJMMeSNryotlGHxEQJd2ACeIhHjkelNHq4hYQWtPgnd4Xe0lD0An1vO
GWLrP9l+cJcVhwBGu6M/0tdy
=ETc6
-----END PGP SIGNATURE-----

--
PGP Key: http://pgp.ai.mit.edu:11371/pks/lookup?op=get&search=0x2D9461F1
PGP Fingerprint: 58F3 CA9A EFB8 EB9D DF18  6B16 E48D AF2A 2D94 61F1
Home Page: http://domino.garage.co.jp/jito/joihome.nsf
To subscribe to my personal mailing list send mailto:friends-subscribe@ji.to
ICQ: 4251587
------------------------------------------
Date: Fri, 31 Oct 1997 07:32:11 -0600
From: Harry Tuttle <htuttle@dallas.net>
To: remailer-operators@anon.lcs.mit.edu
Subject: Changes to htuttle <h_tuttle@juno.com>

To All,

        With the latest release of the Juno Remailer, 4.9, I have added the
following to htuttle remailer:

<h_tuttle@juno.com> cpunk pgp pgponly hash cut post nym ek

        As goddesshera has mentioned, the Nym Service is available and
operational. To access this service, send a blank message to
h_tuttle@juno.com with the following: 

        nym-help

        And instructions will be sent back by return mail.

        As usual the following are also auto return for info about the remailer 
or
stats.

        remailer-help

        remailer-stats

        remailer-key

        For blocking or a reply via human, send a message to h_tuttle@juno.com 
and
I will get back with you as soon as possible.


Harry Tuttle

------------------------------------------
Deal with failing signature verifications (pgp 5.x, MessageID: header
field after Version:)
