dec9cde128
be). Removed the staroffice.* key because it doesn't match the fingerprint and doesn't appear to be available anywhere currently. Resort and reformat. Remove a few keys that weren't self-signed and therefore cannot be imported by GnuPG (not for any major hierarchies). Update to the current key available from the web site for some hierarchies (they may have additional signatures).
2158 lines
81 KiB
HTML
2158 lines
81 KiB
HTML
<HTML><!-- -*- sgml -*- -->
|
||
<HEAD>
|
||
<TITLE>Authentication of Usenet Group Changes</TITLE>
|
||
<LINK REV="made" HREF="mailto:tale@isc.org">
|
||
</HEAD>
|
||
|
||
<BODY>
|
||
<H1>Authentication of Usenet Group Changes</H1>
|
||
|
||
<P>This document addresses a method for the authentication of the special
|
||
types of Usenet articles that are used to maintain the namespace of
|
||
Usenet groups. A basic familiarity with what the Usenet control
|
||
message types "newgroup", "rmgroup" and "checkgroups" do is assumed;
|
||
this is not a tutorial in namespace administration.</P>
|
||
|
||
<P>Usenet articles are notoriously easy to forge, and control messages
|
||
are no exception. Since administrators often want to have their news
|
||
systems automatically honor requests from some particular people to
|
||
add or remove newsgroups, it is risky to trust the From: and Sender:
|
||
headers to identify the real sender of a message, as has historically
|
||
been done. Thus a system using Philip Zimmerman's
|
||
<A HREF="#Getting PGP">Pretty Good Privacy</A>®
|
||
(PGP® ) was developed to provide a more secure means
|
||
of authenticating the sender of a control message.</P>
|
||
|
||
<P>Unlike traditional PGP authentication of messages, which just
|
||
verifies that the contents of the body of a message are unchanged from
|
||
when it was digitally "signed", this system also needed to sign a few
|
||
headers of the control message to verify the action to be taken and
|
||
to guard against certain other pitfalls. Another goal was to make the
|
||
signature as unobtrusive as possible and require minimal changes to
|
||
existing software in order to work.</P>
|
||
|
||
<H2>How to Verify Control Messages</H2>
|
||
|
||
<P>Listed below are the steps you need to take to enable PGP
|
||
authentication of control messages on your system.</P>
|
||
|
||
<P>Here is the short and simple version for someone who feels confident
|
||
hacking around the news system and doesn't like to read a lot:</P>
|
||
|
||
<OL>
|
||
<LI>Get and configure the software:
|
||
<UL>
|
||
<LI>
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/pgpverify">
|
||
ftp://ftp.isc.org/pub/pgpcontrol/pgpverify</A>
|
||
<LI>
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/server-patches/">
|
||
ftp://ftp.isc.org/pub/pgpcontrol/server-patches/</A>
|
||
</UL>
|
||
<LI>Add
|
||
<A HREF="#Keys">maintainers' PGP public keys</A>
|
||
to the news system key ring.
|
||
<LI>Enable verification through the news system authorization system.
|
||
<DL>
|
||
<DT>INN:
|
||
<DD>Use the action <B>verify-<I>pgp_userid</I></B> (possibly appended
|
||
<B>=<I>logfile</I></B>) in <I>control.ctl</I>.
|
||
<DT>C News:
|
||
<DD>Use the action <B>p</B> in the fourth field of <I>controlperm</I>
|
||
followed by a suitable <I>pgp_userid</I> in the fifth field.
|
||
<DT>D News:
|
||
<DD>Use the action <B>doit,pgp</B> in <I>control.conf</I>.
|
||
<DT>ANU News:
|
||
<DD>Use the <B>HELP ADD FILE PGP_verification</B> ANU command.
|
||
<DT>Other systems:
|
||
<DD>Sorry, not implemented yet.
|
||
</DL>
|
||
<LI>Test <I>pgpverify</I>.
|
||
If you have the news.announce.newgroups key in your key ring, run
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/sample.control">
|
||
ftp://ftp.isc.org/pub/pgpcontrol/sample.control</A>
|
||
through <I>pgpverify</I> on stdin. It should spit out the
|
||
string "news.announce.newgroups" on stdout.
|
||
</OL>
|
||
|
||
<P>Here is a more verbose version of the instructions:</P>
|
||
|
||
<P>
|
||
<OL>
|
||
<LI>
|
||
Get the software.
|
||
|
||
<P>There are two pieces of code that will need to be added to a news
|
||
server to make use of this authentication system: a stand-alone
|
||
script that verifies an article is what it says it is, and a
|
||
patch to hook it into the news server's processing of control messages.</P>
|
||
|
||
<P>The stand-alone program,
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/pgpverify">
|
||
ftp://ftp.isc.org/pub/pgpcontrol/pgpverify</A>,
|
||
is a
|
||
<A HREF="#Getting Perl">Perl</A>
|
||
script that should work with Perl version 4 and up. (I have not tested
|
||
it with earlier versions.) It does not contain any code making it
|
||
dependent on any particular news server software.</P>
|
||
|
||
<P>
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/server-patches/">
|
||
ftp://ftp.isc.org/pub/pgpcontrol/server-patches/</A>
|
||
has patches for hooking the system into existing news server software.
|
||
Choose the one for your system from the list below.</P>
|
||
<UL>
|
||
<LI>
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/server-patches/inn1.4sec/pgpcontrol.pch">
|
||
INN version 1.4sec</A>
|
||
<LI>
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/server-patches/inn1.4unoff4/pgpcontrol.pch">
|
||
INN version 1.4unoff4</A>
|
||
<LI>
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/server-patches/cnews-CR.G/pgpcontrol.pch">
|
||
C News version CR.G</A>
|
||
(Courtesy of System Administrator <root@hp9000.laafb.af.mil> and
|
||
Charles Lindsey <chl@clw.cs.man.ac.uk>)
|
||
</UL>
|
||
|
||
<P>Newer versions of INN (since 1.5), D News and ANU News (since 6.2.0)
|
||
do not need to be patched, as they ship with built-in handling for pgp
|
||
verification. You can therefore skip past the "Install it on your
|
||
news system" section to "Enable verification for the hierarchies that
|
||
interest you". I recommend that you upgrade to <I>at least</I>
|
||
INN 1.5.1sec if you
|
||
are running any prior INN version, because it has a few important
|
||
security problems fixed.</P>
|
||
|
||
<P>I regret that I do not have the time to develop more patches, but I
|
||
will gladly add patches for other systems to this page as they are
|
||
made available to me. The INN version 1.4sec patch will apply to
|
||
all INN "unoff" versions, albeit with a little bit of fuzz. I am not
|
||
positive what versions of C News will work with the C News CR.G
|
||
patch; if you try it with other versions, please let me know how it goes.</P>
|
||
|
||
<LI>
|
||
Install it in your news system.
|
||
|
||
<P>First you must ensure that the absolute paths to <I>perl</I> and to
|
||
<I>pgp</I> are correct in the first few lines of the <I>pgpverify</I>
|
||
program. No other configuration of options or pathnames should be
|
||
needed.</P>
|
||
|
||
<P>Next, the following steps assume, solely for the sake of making it
|
||
easy for me to write a simple recipe, that you have copied
|
||
<I>pgpverify</I> and the patch for your system to your news server as
|
||
<I>/tmp/pgpverify</I> and <I>/tmp/pgpcontrol.pch</I> respectively. I
|
||
have tried to format this so that you should be able to cut and paste
|
||
any of the lines in italics directly to your shell.</P>
|
||
|
||
<P>
|
||
<UL>
|
||
<LI>If you are running INN:
|
||
|
||
<PRE>
|
||
cd to the executable program directory that has <I>ctlinnd</I>.
|
||
<I>mv /tmp/pgpverify pgpverify</I>
|
||
|
||
cd to the root of your INN source tree.
|
||
<I>cd site</I>
|
||
<I>patch < /tmp/pgpcontrol.pch</I>
|
||
<I>make install</I>
|
||
</PRE>
|
||
|
||
<P>It has been reported to me that at least one AIX system has problems
|
||
with <I>patch</I> not applying the last section of
|
||
<I>parsecontrol.pch</I>. If you run AIX, double check it and apply by
|
||
manually editing, if necessary.</P>
|
||
|
||
<LI>If you are running C News:
|
||
|
||
<PRE>
|
||
cd to the C News program directory that has <I>spacefor</I>.
|
||
<I>mv /tmp/pgpverify pgpverify</I>
|
||
|
||
cd to the root of your C News source tree.
|
||
<I>cd ctl</I>
|
||
<I>patch < /tmp/pgpcontrol.pch</I>
|
||
<I>make install</I>
|
||
</PRE>
|
||
|
||
<LI>If you are running some other system:
|
||
|
||
<P>You're out of luck until someone writes a patch and instructions for
|
||
your system and makes it available to me for redistribution.</P>
|
||
</UL>
|
||
|
||
<LI>
|
||
Enable verification for the hierarchies that interest you.
|
||
|
||
<P>To verify messages, you must have a
|
||
<A HREF="#Keys">PGP public key for each signer</A>
|
||
that you wish to trust. It should be entered in a key ring that is
|
||
accessible to the user-id that runs the news system by running
|
||
<I>pgp -ka</I> on a file containing the key to add. For example, at a
|
||
site that runs the news server software as <I>news</I>, the following
|
||
command run by the <I>news</I> user-id should add the key bounded by
|
||
BEGIN and END "PGP PUBLIC KEY BLOCK" lines in the file <I>/tmp/key</I>
|
||
to the default key ring that would be used for authentication:</P>
|
||
|
||
<PRE>
|
||
<I>pgp -ka /tmp/key</I>
|
||
</PRE>
|
||
|
||
<P>As a general policy rule, control message signers will not use their
|
||
control message keys to introduce other keys, so when PGP asks you a
|
||
question similar to, "Would you trust this user to act as an
|
||
introducer and certify other people's public keys to you?" answer that
|
||
you would not.</P>
|
||
|
||
<P>After you have added the appropriate key to your key ring, you need to
|
||
tell the news software to validate the control messages received.
|
||
As implemented, the system will perform the requested action if the
|
||
message can be authenticated and it will mail the message to the news
|
||
system administrator if it cannot. Clearly there are other possible
|
||
actions that could be implemented, but I wanted to keep the patches
|
||
minimal. Future releases of the server software will probably have
|
||
increased flexibility.</P>
|
||
|
||
<P>
|
||
<UL>
|
||
<LI>If you are running INN:
|
||
|
||
<P>Automatic processing of control messages is handled by
|
||
<I>control.ctl</I>, which you edit in the same <I>site</I>
|
||
subdirectory where you patched <I>parsecontrol</I>.
|
||
<I>control.ctl</I> has several lines at the beginning of it that
|
||
describe the format of the file, and there is an even longer
|
||
<I>control.ctl(5)</I> manual page. To enable PGP verification in
|
||
addition to the normal authorization done by <I>control.ctl</I>, use
|
||
the action <B>verify-<I>pgp_userid</I></B> in the fourth field.
|
||
<P>For example, if you trust group-admin@isc.org (currently David
|
||
Lawrence <tale@isc.org>, aka tale@uunet.uu.net, the author of
|
||
this document) to manage groups in the "Big 8" hierarchies, you could
|
||
have lines like these (but don't use the backslash continuation, which
|
||
I have used here for readability; keep it all on one line):</P>
|
||
|
||
<PRE>
|
||
newgroup:group-admin@isc.org:\
|
||
comp.*|humanities.*|misc.*|news.*|rec.*|sci.*|soc.*|talk.*:\
|
||
verify-news.announce.newgroups
|
||
rmgroup:group-admin@isc.org:\
|
||
comp.*|humanities.*|misc.*|news.*|rec.*|sci.*|soc.*|talk.*:\
|
||
verify-news.announce.newgroups
|
||
checkgroups:group-admin@isc.org:\
|
||
comp.*|humanities.*|misc.*|news.*|rec.*|sci.*|soc.*|talk.*:\
|
||
verify-news.announce.newgroups
|
||
</PRE>
|
||
|
||
<P>Additionally, if you like the logging feature available with the
|
||
action <B>doit=<I>logfile</I></B>, you can get the same logging
|
||
by using <B>verify-<I>pgp_userid</I>=<I>logfile</I></B>.</P>
|
||
|
||
<LI>If you are running C News:
|
||
|
||
<P>Automatic processing of control messages is handled by
|
||
<I>controlperm</I>, which you edit in the subdirectory where you
|
||
patched the control message handling scripts. There is a
|
||
<I>controlperm(5)</I> manual page that describes its format. To
|
||
enable PGP verification in addition to the normal authorization done
|
||
by <I>controlperm</I>, use the action <B>p</B> in the fourth field
|
||
instead of <B>y</B> and add a fifth field for the <I>pgp_userid</I>.</P>
|
||
|
||
<P>For example, if you trust group-admin@isc.org (currently David
|
||
Lawrence <tale@isc.org>, aka tale@uunet.uu.net, the author of
|
||
this document) to manage groups in the "Big 8" hierarchies, you could
|
||
have lines like these (but don't use the backslash continuation, which
|
||
I have used here for readability; keep it all on one line):</P>
|
||
|
||
<PRE>
|
||
comp,sci,misc,news,rec,soc,talk group-admin@isc.org nrc pv \
|
||
news.announce.newgroups
|
||
</PRE>
|
||
|
||
<P>You could then remove the line that follows the comment, "but his name
|
||
can be forged, so don't let him rmgroup..."</P>
|
||
|
||
<LI>If you are running D News:
|
||
|
||
<P>Automatic processing of control messages is handled by
|
||
<I>control.conf</I>. To enable PGP verification in addition to the
|
||
normal authorization done by <I>control.conf</I>, use the action
|
||
<B>pgp</B> in the fourth field, in addition to whatever action you
|
||
want to happen. For example, if you trust group-admin@isc.org
|
||
(currently David Lawrence <tale@isc.org>, aka tale@uunet.uu.net,
|
||
the author of this document) to manage groups in the "Big 8"
|
||
hierarchies, you could have lines like these (but don't use the
|
||
backslash continuation, which I have used here for readability; keep
|
||
it all on one line):</P>
|
||
|
||
<PRE>
|
||
newgroup:group-admin@isc.org:\
|
||
comp.*,misc.*,news.*,rec.*,sci.*,soc.*,talk.*:doit,pgp
|
||
rmgroup:group-admin@isc.org:\
|
||
omp.*,misc.*,news.*,rec.*,sci.*,soc.*,talk.*:doit,pgp
|
||
checkgroups:group-admin@isc.org:\
|
||
comp.*,misc.*,news.*,rec.*,sci.*,soc.*,talk.*:doit,pgp
|
||
</PRE>
|
||
|
||
<P>Note that there is no provision, with the current D News
|
||
implementation, for checking that the signature matches a particular
|
||
string, just that it it has a valid signature. This is probably
|
||
adequate security as long as you keep the news user's PGP key ring
|
||
limited only to people you trust to maintain newsgroup hierarchies.</P>
|
||
|
||
<P>Finally, if you have not installed pgp on your system in a
|
||
directory where D News normally looks for auxiliary programs, you will
|
||
need to add a pointer to it in <I>dnews.conf</I>, like this:
|
||
|
||
<PRE>
|
||
pgp /path/to/pgp
|
||
</PRE>
|
||
|
||
<P>See
|
||
<A HREF="http://www.netwinsite.com/pgp.htm">
|
||
http://www.netwinsite.com/pgp.htm</A>
|
||
for documentation by the D News authors that might supersede
|
||
this document.</P>
|
||
|
||
<LI>If you are running ANU News (V6.2.0 or later):
|
||
|
||
<P>Instructions will (hopefully) soon appear here. In the meantime,
|
||
consult the <B>HELP ADD FILE PGP_verification</B> server command.
|
||
|
||
<LI>If you are running some other system:
|
||
|
||
<P>You're out of luck until someone writes a patch and instructions for
|
||
your system and makes it available to me for redistribution.</P>
|
||
</UL>
|
||
|
||
<LI>
|
||
Test the system.
|
||
|
||
<P>Get
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/sample.control">
|
||
ftp://ftp.isc.org/pub/pgpcontrol/sample.control</A>
|
||
and save it to a file on your system; <I>/tmp/sample.control</I> will
|
||
be used for this example. You'll use it to make sure things will work
|
||
as expected.</P>
|
||
|
||
<P>To verify the control message, you will need the
|
||
<A HREF="#comp">key for news.announce.newgroups</A>
|
||
and authorization in your news system for group-admin@isc.org to
|
||
automatically perform "newgroup". Go ahead and enable it for the test
|
||
even if you don't want to really allow this, because it is easy enough
|
||
to rescind after the test by editing the control message authorization
|
||
file and removing the key with <I>pgp -kr news.announce.newgroups</I>.</P>
|
||
|
||
<P>You can check that the <I>pgpverify</I> part of the system will work
|
||
properly simply by feeding it the sample control message on stdin:
|
||
|
||
<PRE>
|
||
pgpverify < /tmp/sample.control
|
||
</PRE>
|
||
|
||
<P>If if could run pgp and find the correct key in the default key ring,
|
||
the string <B>news.announce.newgroups</B> should be printed. The exit
|
||
status of the script, found in most shells with the command <I>echo
|
||
$?</I> as the next command after <I>pgpverify</I>, should be 0 (zero).</P>
|
||
|
||
<P>If it doesn't work, then
|
||
|
||
<PRE>
|
||
pgpverify -test < /tmp/sample.control
|
||
</PRE>
|
||
|
||
might give you some enlightment. It will print out the input that is
|
||
used for pgp (which is a reconstructed version of the input that
|
||
supposedly created the control message) as well as the output of PGP's
|
||
analysis of the message. Look especially closely at the latter, since
|
||
it can give you important information such as which keyring is being
|
||
used.</P>
|
||
|
||
<P>If it still doesn't work and you've tried and tried to figure out why,
|
||
<A HREF="mailto:tale@isc.org (David C Lawrence)">email me</A>
|
||
a complete description of the problem you are having and how you have
|
||
tried to remedy it. At a bare minimum, your mail should include a
|
||
copy of the message you are trying to verify, a typescript of the
|
||
attempted execution of <I>pgpverify -test</I>, and the output of
|
||
<I>pgp -kc</I> and <I>pgp -kvc news.announce.newgroups</I>.</P>
|
||
|
||
<P>When <I>pgpverify</I> passes its test, use the appropriate procedure
|
||
below for you news server to verify the authorization system.</P>
|
||
|
||
<P>
|
||
<UL>
|
||
<LI>If you are running INN:
|
||
|
||
<P>First, cd to the directory where <I>parsecontrol</I> is installed.
|
||
Then execute the following four lines, in order, as the user who owns
|
||
the news system:</P>
|
||
|
||
<PRE>
|
||
/bin/sh
|
||
PROG=newgroup
|
||
set "--" group-admin@isc.org "" /tmp/sample.control
|
||
(. ./parsecontrol "$@"; echo $ACTION)
|
||
</PRE>
|
||
|
||
<P>If the message verified correctly, the <I>echo</I> command should
|
||
output <B>doit</B>; otherwise, verification failed and the output
|
||
should be <B>mail</B>.</P>
|
||
|
||
<P>Edit <I>/tmp/sample.control</I> and change all occurences of
|
||
<B>newusers</B> to <B>newgroups</B>. Then repeat the
|
||
<I>parsecontrol</I> and <I>echo</I> lines. This time verification
|
||
should fail.</P>
|
||
|
||
<LI>If you are running C News:
|
||
|
||
<P>Because of the way C News is implemented, I have not taken the trouble
|
||
to find out how it can be tested without running through the whole
|
||
<I>newgroup</I> script. If you are testing with <I>sample.control</I>,
|
||
I think this should let you know whether things will work:</P>
|
||
|
||
<PRE>
|
||
newsflag news.announce.newusers y
|
||
newgroup news.announce.newusers moderated < /tmp/sample.control
|
||
</PRE>
|
||
|
||
<P>(newsflag is the C News program <I>maint</I> subdirectory; newgroup is
|
||
in the <I>ctl</I> subdirectory.)</P>
|
||
|
||
<P>You should get a mail message telling you that news.announce.newusers
|
||
was changed to moderated. If it didn't appear to work, doublecheck
|
||
the <I>active</I> file. If it really didn't work, fix the status of
|
||
the group with the following command then let me know about.</P>
|
||
|
||
<PRE>
|
||
newsflag news.announce.newusers m
|
||
</PRE>
|
||
|
||
<P>If the message did verify correctly, edit <I>/tmp/sample.control</I>
|
||
and change all occurences of <B>newusers</B> to <B>newgroups</B>.
|
||
Then repeat the <I>newgroup</I> line with an <B>unmoderated</B>
|
||
argument instead of <B>moderated</B>; the argument is unused in the
|
||
PGP verification code and doing it this way saves you the effort of
|
||
<I>newsflag</I>ging things again.</P>
|
||
|
||
<P>With the changes to <I>sample.control</I> you should now get a mail
|
||
message saying, "authentication failed".</P>
|
||
|
||
<P>When you are all done, make sure news.announce.newusers is really
|
||
marked moderated in your <I>active</I> file.</P>
|
||
|
||
<LI>If you are running D News:
|
||
|
||
<P>It appears to me that currently you'll have to wait for a control
|
||
message to come in and see whether it does what you want. If it
|
||
doesn't, and you can't readily tell why, contact D News's customer
|
||
support staff.</P>
|
||
|
||
<LI>If you are running ANU News (V6.2.0 or later):
|
||
|
||
<P>Instructions will (hopefully) soon appear here. In the meantime,
|
||
consult the <B>HELP ADD FILE PGP_verification</B> server command.</P>
|
||
|
||
<LI>If you are running some other system:
|
||
|
||
<P>You're out of luck until someone writes a patch and instructions for
|
||
your system and makes it available to me for redistribution.</P>
|
||
</UL>
|
||
</OL>
|
||
|
||
<H2>Format of Signed Control Messages</H2>
|
||
|
||
<P>The format of the input to PGP for signing and verifying messages
|
||
is described in a separate document,
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/FORMAT">
|
||
ftp://ftp.isc.org/pub/pgpcontrol/FORMAT</A>.
|
||
It is intended for people who want to implement their own signing
|
||
and/or verifying programs instead of using pgpverify or signcontrol.</P>
|
||
|
||
<H2>Frequently Asked Questions</H2>
|
||
|
||
<OL>
|
||
<H3><LI>How come this presumably valid messages doesn't check out with
|
||
pgpverify?</H3>
|
||
|
||
<UL>
|
||
<LI>You don't have the latest version of <I>pgpverify</I>, which fixed
|
||
whatever bug is causing authentication of the message to fail.
|
||
<LI>You don't have your PGP configuration files and keyrings in the
|
||
default path used by <I>pgp</I> and <B>PGPPATH</B> is not correctly
|
||
set in your environment. Either move your PGP directory to the
|
||
default location or set the <B>$ENV{'PGPPATH'}</B> line in <I>pgpverify</I>.
|
||
(Warning: some INN versions set <B>$HOME</B> to <B>_PATH_NEWSLIB</B>,
|
||
so this might be the source of your trouble.)
|
||
<LI>You don't have the correct key for the user that signed it in your
|
||
key ring.
|
||
<LI>You are using a non-English version of <I>pgp</I>, set up with
|
||
a "<B>Language</B> = " line in your PGP <I>config.txt</I> file. This
|
||
means pgpverify can't find the string it is looking for in
|
||
the <I>pgp</I> output. <I>pgpverify</I> tries to overcome a non-English
|
||
language specification by setting <B>LANGUAGE</B> in the
|
||
environment before calling <I>pgp</I>, but <I>pgp</I> overrides the
|
||
runtime environment with the <I>config.txt</I> variables.
|
||
<LI>You cut-and-pasted the message in your window system, which
|
||
converted the tab characters in the original message into spaces in
|
||
the message you are trying to decode. Having this handled completely
|
||
correctly by the signing/verifying code is harder than you might first
|
||
think.
|
||
<LI>You are running <I>pgpverify</I> on a saved
|
||
copy of the article that includes an extraneous trailing newline, such
|
||
as might be inserted by saving the message from a mail handler or news
|
||
reader, that was not present in the original message.
|
||
<LI>You cut-and-pasted the sample INN <I>control.ctl</I> lines above
|
||
and left the continuation lines in, instead of joining each group of
|
||
three physical lines comprising one logical line to just one physical line.
|
||
</UL>
|
||
</OL>
|
||
|
||
<HR><HR>
|
||
<H2><A NAME="Keys">List of PGP Public Keys for Newsgroup Administration</A></H2>
|
||
|
||
<P>This is a list of keys known to be used for maintaining various parts
|
||
of the newsgroup namespace. They are listed alphabetically by the
|
||
hierarchies they are used for, along with the email address they are
|
||
sent by and the pgp key userid of the signature (both for use in
|
||
<I>control.ctl</I>). The group that people should follow if they are
|
||
interested in tracking announcements about the hierarchy is also
|
||
listed. The "Check also" references point to locations that should
|
||
have identical public key blocks; it is best if you confirm the block
|
||
listed here by checking against the others.</P>
|
||
|
||
<P>The existence of key here only means that I, David Lawrence, trust the
|
||
person who uses it to be a responsible maintainer of that particular
|
||
hierarchy of groups. You are solely responsible for deciding whether
|
||
you will use the keys here at your own site.</P>
|
||
|
||
<A NAME="aus"><HR></A>
|
||
<H3>AUS</H3>
|
||
|
||
Control message sender: ausadmin@aus.news-admin.org<BR>
|
||
Key User ID: ausadmin@aus.news-admin.org<BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://aus.news-admin.org/ausadmin.asc">http://aus.news-admin.org/ausadmin.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 1024/CB522BD1 1998/06/05 ausadmin@aus.news-admin.org
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzV3rngAAAEEALmKaSxOB2MpJWPRzbDuYh1vOlE2qdtHIJvk9qKfE3ER8yAP
|
||
PVlHxs2aUYxpgFDt9ShVqcP3457zGUnbDQbzH3F9jVQKDIryYUvQHN3Saayr2pv9
|
||
17KXQmGK1TtDF2qSknyZeUubPjGSVYaNeVxALG35y2ZtMvtw2FL4gcrLUivRAAUR
|
||
tBthdXNhZG1pbkBhdXMubmV3cy1hZG1pbi5vcmeJAJUDBRA1iH+1UviBystSK9EB
|
||
AVfZBACCtHCzFS59eYCkpVwpSD+MfYnUQCr5B9QAn0sQoh+SauCAispP8nuObPd3
|
||
P+gV59T+fQoTda1IEUSeGtQaVZaJ/5p77C0vJOHt2sg5hOdSYdoa03cy3CxuqZtR
|
||
T3CwZN4GJkmHrcWcApIMnZS0GoIu5Ixt9tIpVkv6tEhbZehx4g==
|
||
=c+AC
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="ba"><HR></A>
|
||
<H3>BA</H3>
|
||
|
||
Control message sender: ba-mod@nas.nasa.gov<BR>
|
||
Key User ID: ba.news.config<BR>
|
||
Administrative group: <A HREF="news:ba.news.config">ba.news.config</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://ennui.org/ba/ba-mod.asc">http://ennui.org/ba/ba-mod.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2
|
||
|
||
mQCNAzVH8LEAAAEEAKMSuifzHOYm6iucbn8yvrnpr8ApkQMtkPbSKQ6aoCkqTodf
|
||
E/kfVOmfYZdDgRdO0CGO7lnc43PKZgSJg8V1bEMnQvlSgyTLvBW5a27Pi4Wizguu
|
||
BvJCG3CpaZQgzfEheI1Ay9QVaDZOqqzWpZKjJ5w1G5sL4cnP/iA859VjLgOpAAUR
|
||
tA5iYS5uZXdzLmNvbmZpZ4kAlQMFEDVH/M0gPOfVYy4DqQEBwXoD+gMKEeFwq7EK
|
||
yvkb9E/9aO41u6OWn1VIz2jyIS8t/HHcuoqB0cRpgX8daco8iT8LVoMf/IOASffG
|
||
Zho5lteB53bKczcxublnHpaMZ94+psoq7GGSxDZI7HWa96Cqb2NT3aZpOjgmGrp/
|
||
itTuIS4X+avdu2BrptgxQcWZS9K3DaEi
|
||
=6Ke1
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="baynet"><HR></A>
|
||
<H3>BAYNET</H3>
|
||
|
||
Control message sender: news@mayn.de<BR>
|
||
Key User ID: news.mayn.de<BR>
|
||
Administrative group: <A HREF="news:baynet.announce">baynet.announce</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://home.mayn.de/news/pubkey-news.mayn.de">http://home.mayn.de/news/pubkey-news.mayn.de</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 2048/77549CCD 1998/02/19 news.mayn.de
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQENAzTsKfIAAAEIALiQniRHIsKL95gPi0rpxTLz9X7UNDp3k4uUvTC+SryeR8MA
|
||
NMNprudlAGkRHfoD4EQlWC4hq3kEWm3AolSIfH2pApgcKrkEkpr/t6GR0CFZBJFo
|
||
f1tWbIevRZwdtrh9AgpnkGv84g+MycNmirQHc8VbP3wtmQWsPvvp5UUPf3mC3ikk
|
||
1/CV7gtRsOMtYbGiz8st9j6wG5Y7wKACZm+87+bVG1MzuM6b5mKI5PbTYrPry1p1
|
||
+jq7BE3viS4ntT2Ptbyw3ApPkDxqu7yhAm7hfwNr6lJhjmyyRQeLrnUyNvtLwh3w
|
||
5JnHUtKAxH0wAKE8Q/Ctqn6FECmD2QAIAHdUnM0ABRG0DG5ld3MubWF5bi5kZYkB
|
||
FQMFEDT5SAXZAAgAd1SczQEBM1kH/RP6G1TlKcF3ld56VrJVdunDZV9mbmZ8LuFV
|
||
u/3zTu9OxZphR1WHxL1djB5IVHFs7TNv8FMFOB5sX4iYpRMUr2AeMgbtnIENKBnx
|
||
DJvAaQgvWTMi/AVR+aaWXFtV/mdv9wEyvJrq17p6EaBP7RpWz+JFEL9dZUgOCXpX
|
||
AWi8ZisLqhq6YbkA1/ZYnnJ/8Ds/rBcdazDqKzTtsBx7IxmaqJDmmibQH2eS+Tug
|
||
Xds4+SpPjcrwmb19u7AYWFZyc3rv0l/YSqf3DvpP1QnLWe6qc/z/UmXL6cioWbLH
|
||
ghSFukUJpf4KAZxiaI9pcn7JwG22iKNwDYazdSeamiqwGVGHCVE=
|
||
=6O/8
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="be"><HR></A>
|
||
<H3>BE</H3>
|
||
|
||
Control message sender: group-admin@usenet.be<BR>
|
||
Key User ID: be.announce.newgroups<BR>
|
||
Administrative group: <A HREF="news:be.announce.newgroups">be.announce.newgroups</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://usenet.be/be.announce.newgroups.asc">http://usenet.be/be.announce.newgroups.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 1024/BA8601A1 1997/01/19 be.announce.newgroups
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzLiE1oAAAEEAMx8KAOO9TJzY8A9scImT1CFTZHe7gzynsvlzDprmGRoWYBa
|
||
xf1z61buwk24WnC/hXcHwKKxTi2gZ2UaFlrJLcsgtCo1+7000UYY1OrVSuojD5i6
|
||
0Senfi45cTqD/I5UH6qrGgfs6dacWXk6Fauw7ivvWMcvKys6Tx4Em/q6hgGhAAUR
|
||
tBViZS5hbm5vdW5jZS5uZXdncm91cHOJAJUDBRAy4hNaHgSb+rqGAaEBASoyA/sE
|
||
nEec3XRO9CnycCUYlw6Ls38+rW4KZZws/saeXuzSC5YF0mKM0LewuvQ53eogepYD
|
||
ybubtfdMjb2qvMQYHUvJzKiGymq02WTB6X+gZRKxywCroSU3057wLIAfX/GBe/zy
|
||
EMJV16sienUOFC5kjkkMEde4MA/QohlEKnGyt7xlWA==
|
||
=kCY2
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="bionet"><HR></A>
|
||
<H3>BIONET</H3>
|
||
|
||
Control message sender: Biosci-control-key@net.bio.net<BR>
|
||
Key User ID: Biosci-control-key@net.bio.net<BR>
|
||
Administrative group: <A HREF="news:bionet.general">bionet.general</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzi749YAAAEEAOeP5jfujltxaQt8eFqEebuPHBJUgDQsSTfoA4MaDvRfT3pq
|
||
pm5kpjmuqcxkgAqBxCYiAYpiMfdHfHSaUfAxlXgDigKBPaA9MehFP+0oM4K3iC/i
|
||
9rrdTuNt0SAUG73VBxV1xzMgTml6DstmjDvr3H1o6s1W/Tu9YUTvH+UXzHMBAAUT
|
||
tB5CaW9zY2ktY29udHJvbC1rZXlAbmV0LmJpby5uZXSJAJUDBRA47ICHeSdEm13x
|
||
+NkBAWSqA/47yV2u0CrIagSADta03CnJu4HPVo3DbTjgB3+Wo9hWkc6HHcq3opBf
|
||
ptbqqDo7A1P8gDvXmVimA5aVt7X/lQgOCT0qCnZX9+hLZpziYYGDptJFTUZ/bS9r
|
||
kEThwgtSrjUOsYXeG9aZxcO2le4eL0xkvGOld9Bj2H4pwr2wAJwWeokAlQMFEDi7
|
||
49ZE7x/lF8xzAQEBT6MD/iAnoxYSUMFlg90bbdLLsQTtKE9kHRZRSH+cCTs2YY6y
|
||
mEujWnHybWPs+XT1tUaZKcNjYR93NwGBiBh630PLexQnX7m9OVb82EOTdr6bRAb+
|
||
r5BiVh124UOVVZ8pZnXRVu+sqDlt4YnSFfsHL8Ub8BJQNzH+eFtAjidn5Xtiw6fL
|
||
=KMOt
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="bit"><HR></A>
|
||
<H3>BIT</H3>
|
||
|
||
Control message sender: bit@newsadmin.com<BR>
|
||
Key User ID: bit@newsadmin.com<BR>
|
||
Administrative group: <A HREF="news:bit.admin">bit.admin</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2
|
||
|
||
mQCNAzpA/JMAAAEEALUuDA4puig52BrpAIuAAtJw37qbiOc+Q86EZt3uw8UBlcO6
|
||
kCTyXaHYCLyEJWU/a7F87v6U/aMSGz2A/ehouv9ut2/TlXayT3rKSEbEmlkksxxg
|
||
uO5TbYMzyNeLX/QLNssnwwIrORhykc7KL7OvIP7P/NcK73fDMWZsol7EuJDpAAUR
|
||
tBFiaXRAbmV3c2FkbWluLmNvbYkAlQMFEDpA/WxmbKJexLiQ6QEBtgkD/2wYbaqU
|
||
U6JQppbXtZNCzfDUpMYZ+K+TSKW6DPmJo7IoAfVTUvnS4s4GbULz8QQHiaX5GC7W
|
||
DOK6xsbzudrM9HNbFWSevbQzuZ1YN2fIMUxQv9Zk1fwnYqu4DlRNCnjy325tpBn2
|
||
fCHC7vNZQoBU60SU073DJ0oda7Dg7nXpJmqj
|
||
=J6Dq
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="ch"><HR></A>
|
||
<H3>CH</H3>
|
||
|
||
Control message sender: felix.rauch@nice.ch<BR>
|
||
Key User ID: ch-news-admin@use-net.ch<BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.use-net.ch/Usenet/adminkey.html">http://www.use-net.ch/Usenet/adminkey.html</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 1024/EF6D6715 1997/06/25 ch-news-admin@use-net.ch
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzOxjWsAAAEEALEaVl7kSMbwlv85DA7HY23DwIQgIpgzIfklYpjW7lQgh8IA
|
||
q2SI5JeB/xDPTybTA/+p0sWNBuR4b8BsTIKx/F1164WTU3Xz81CvraaiA8kp941s
|
||
8Kn++CNa8VcQZCpYsDG2pLs6Rgoq0jxRa4wUy0qRxQOJAC07wNXMrG7vbWcVAAUR
|
||
tBhjaC1uZXdzLWFkbWluQHVzZS1uZXQuY2iJAJUDBRAzsY1s1cysbu9tZxUBAZZr
|
||
A/9xV8LidNqYPJDRB0BeSJrJVTJ8X3e88pEyxOO8r759kZyTC+1Bb98hAEHFlaqi
|
||
rkfuCvaM/zbW4pbftbIBEeopm7eDj7qW0GFr4kBiKgPn7ugznh+yx0KrRqUpgEqk
|
||
OO/PtUgGjGhGPg/Yycg1oE4OGq+hbsKJzQ1miwPO2VxWCQ==
|
||
=S2AP
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="clari"><HR></A>
|
||
<H3>CLARI</H3>
|
||
|
||
Control message sender: cl*@clarinet.com<BR>
|
||
Key User ID: ClariNet.Group<BR>
|
||
Administrative group: <A HREF="news:clari.net.admin">clari.net.admin</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.clari.net/tech/clarikey.txt">http://www.clari.net/tech/clarikey.txt</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2
|
||
|
||
mQCNAzHhqEwAAAEEAK4YEXf3jB1ArKUs8bUMT666mjovSpCiuNGhTClxwLvSJrrB
|
||
K4n5ibvAPqAKh8T1AxqDdprDPWPdm/uGAF6/3gFHD8YFA1wU2EayYNWlQ1kvDRI7
|
||
bkmkq4QC2rtLnYpsOxwxyjTFsY1cvav+SSLziYauIlsOcHcix8rAq9eiL9vNAAUR
|
||
tA5DbGFyaU5ldC5Hcm91cIkAlQMFEDKjVJHKwKvXoi/bzQEBEA4D/095q7TCeLji
|
||
h1+qYHD52g2YuTRfL4NlGGmvEZjaHIe+Da6YBrCwKQVnZahckSv5VoHYhccKTtfz
|
||
6BJ6+EfdcqvJdXoTkP1IqKFKr4yHL/QS6TWUrC4pjAF7WTg0jKdPMbwjFR983sIi
|
||
KzhYhzUEfXdmNaooA+pYaDhl/SUGqh8q
|
||
=stal
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="comp"><HR></A>
|
||
<H3>COMP, HUMANITIES, MISC, NEWS, REC, SCI, SOC, TALK</H3>
|
||
|
||
Control message sender: group-admin@isc.org<BR>
|
||
Key User ID: news.announce.newgroups<BR>
|
||
Administrative group: <A HREF="news:news.announce.newgroups">news.announce.newgroups</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.7
|
||
|
||
mQCNAjFsLmQAAAEEAKPbDQI6oDtYJYPvYxt7I4PMxThaq51Z/5kqfW7C3dMn6vPL
|
||
d+UsXHfRzMaQXkLBR4nIaQj5OHVtbKCjVTVIMtgfgsPeh9GRSONW870S5HUTQcB7
|
||
eDhQqvvst1ZEowhTf/CX01chaxOfWq3ZPB09VVohQTmvRJn2BMJdOtO4janBAAUR
|
||
tBduZXdzLmFubm91bmNlLm5ld2dyb3Vwc4kAlQIFEDF33BHCXTrTuI2pwQEBiJQD
|
||
/1uiv20adyB2a3tzBYESEEhKtugAVHGRJQJE4Ar5PrcnovF3aNpLFumslIaAzCwP
|
||
XlCANMjFHg140IB6SgJ8W8XH15u+1cMOmqTbk0wtmVgeLOLaSMgNWt65FV4AUn7e
|
||
RZdhK8j/JKxE0a+6gKu4S0PiUDrvnCEWUPjlXiqsbnjR
|
||
=E8K8
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="de"><HR></A>
|
||
<H3>DE</H3>
|
||
|
||
Control message sender: moderator@dana.de<BR>
|
||
Key User ID: de.admin.news.announce<BR>
|
||
Administrative group: <A HREF="news:de.admin.news.announce">de.admin.news.announce</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2
|
||
|
||
mQCNAzGeB/YAAAEEALZ+Xfm/WDCEMXM48gK1PlKG6TkV3SLbXt4CnzpGM0tOMxsT
|
||
HjlHaU6Xco5ijAuqM1wEGUHD5hw/BL/heR5Tq+C5IEyXQQmYwkrgeVFMOz/rA3Rf
|
||
rd9aKQk1bXBxmavi9WxdXP2zxuSglc395StvmO+WxXbBCg1POnU26rXTAzyZAAUT
|
||
tBZkZS5hZG1pbi5uZXdzLmFubm91bmNliQCVAwUQMaEnw/Ki8vYA8NXpAQF7kQP/
|
||
YNaIHxaHzqQQwfcTG+ICdoiIakmainbZyyHwOYV6nG+sPlRnkPnlC9RP2I+wE91o
|
||
WrPHQLlZv1a7+VkXstmHtzW+JzzaaQGaH2+E9wOXMMI97/7GtsCfjEKWi8OZPDEE
|
||
SloZH+ibsyPXCnOb7LPUyfGuh8RK9aUAnZUEmAzi20+JAHUDBRAxn7vcfZiDsyJG
|
||
Qh0BARv+AvoCVp8UUmQ+Us5OKwGNZfLgVjOa3o9q/MMCR7eGdR3rqUiTL23YVD2s
|
||
j4/L2nBnwYF0vLkiPhhrAVO7Gq/z29D5g2vQXJdH0NHc4CAUps0Uls6w8n5Uy3Xu
|
||
fB4DCQx/f7WJARUDBRAxngnCCdxwOTnzf10BAcKUB/9F8pyUyGKYc8I9lj3oUxe2
|
||
Piz+3DtTpBxvf3zQwylxFnWgZ9ZwuqhXmyzhBdUmGmT8xmk1jONJZyrR6P38D+h5
|
||
EduaQ2mKKa3iNgYMwv5Qzh5UCka7NLXkfylsuXOCFDNhSaY4jU4HLgI5ngL8gJJ1
|
||
7LnC5heUw6yvO8wyUyH4cW8rbv5Ov+22t/9d48x44hvcHZZ4ZOWvYh+dQGAH484t
|
||
sK7CXqvH5QYHxetUSq/p2mlEsxf0tzgEAoQ9TZ0/Ai9o5/6H7EgGRTPRLMxJd+/H
|
||
y9iJs4QRI/gCjdqcvzHj1wHtLcVWiG+qQZxIXeX/u665Qe7aSSSrGLp7QOmFnAo1
|
||
iQCVAwUQMZ4H93U26rXTAzyZAQE0IgP/dTnrrgsVLRAa5gJYVWmQgSqkXYcsVgYt
|
||
isBpaGJSW2+5ifD7vaPu9Vj4aNvqO4zyzdAoWXiqRJ/qiXgoeG7DV01tw8s197RH
|
||
IB+DQ6hLuF0IX4dtbGjpiujapwXQ0s3fcu/UuLBRv5UJtNU9hD8vGFkj9mYBzA8L
|
||
XjtwTuQVfBe0Ezxtb2RlcmF0b3JAZGFuYS5kZT6JAJUDBRAxngjIdTbqtdMDPJkB
|
||
AXQsA/96/iGcbkpEaOUdb3aQCzCDocUGCDH9UrRfjT0sjTMgAmXELdukCiMyt1KT
|
||
+vnnPqiwNRdIPD4h3Qk8U70BY6JCAAC03rOtg6EcUGn7ryH2TrvhiD0geqPcFZ1G
|
||
MkXq08qh9g9Wm9Gi8zP6VI7L1lyxuz7m3w+P1lUBDJ/EGSoPkA==
|
||
=i/Qv
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="dk"><HR></A>
|
||
<H3>DK</H3>
|
||
|
||
Control message sender: news@news.dknet.dk<BR>
|
||
Key User ID: news@news.dknet.dk<BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.usenet.dk/grupper/control_pubkey.html">http://www.usenet.dk/grupper/control_pubkey.html</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzSoyLAAAAEEANs4Yb6Xdi2m5nJ9Ky+lS/DhXEU7drCouqCTLiOH1csVuEul
|
||
5c2X2mFifcSBGUbNsJQ19TQXg1Bfp9neVBU9f3WimUp4fXVH60UJGmuMxgPXxVpu
|
||
UuDrGrum+JaVhKhCXoYkbo8MOygWxiPPLfv4/q5LfX+lzp2Dw1A+Uwa6Eu1pAAUR
|
||
tBJuZXdzQG5ld3MuZGtuZXQuZGuJAJUDBRA0vf8JUD5TBroS7WkBAd2KBADDKeFa
|
||
nFvchkvS6Qdg5FznMyhl+fdRtEmG6fywXLPnvUWE6SDbey+9eGbLgmy/piOivbAm
|
||
6TdvMSoxUis1V2nzjpEkAvbcdpTka4eAk4E1OftZ0xM5+zDyLPpvkmom5RUtvG3t
|
||
pmy/EMI+5gxM/pBdYnHoCwiKxJ+obDeIYMHkI7QoVXNlbmV0IGF0IERLbmV0IEEv
|
||
UyA8bmV3c0BuZXdzLmRrbmV0LmRrPokAlQMFEDSwxvko4J5eQPKqKQEBlAcD/1Zl
|
||
86QpHJtjkfyNBx3k9lnOHUH2mkDBu27MsPEeO81huUJ2CsFFAbjG6ZXmXiwOY/9L
|
||
kPqc5HvBvl3f2/4z6MLMTkX7jOD/5J7Rc5PmZJSiZ1z2QhqP51yZcoYNqGP1+A4r
|
||
TKYiBDzc7reiuthuGpoS6tcxiYcyXVYEC0AbexPaiQCVAwUQNK0AkfqRupgHJQ5J
|
||
AQFnZwP+JWTRdWdzrBzSDAWzYay52kXqngNAD6AVPvTc4ETNZlTU1efsoC4akOxR
|
||
lgTP0J6g9nCVDxj8uoszcK+PGmcLnvZzQIXmCnEqpMT0Ci+/SCKLSETjHF8BFnkh
|
||
gi7M9n0PCfRA8ARKibTTRwcbzrFuFblTP3eSGEyQlrzfZ3IX1J2JAJUDBRA0rPEr
|
||
yZsYVEloQjkBATCWBACNa8mYljxQ7PzOHFNZX24+b3DSHTaHq5E+pGw+FnzdW8F8
|
||
MGGbd1ZcPDsLCvSdA7OfMPvxr8jlmEWZLusG3dHNmb41zjkOR4rRLMgBS95NtRVR
|
||
KzhmqljnoRFKC/iNYlvJK+8JQJQe0I202Yzf4eLWX8gEdmmUhgf1Cnrc1PuWG4kA
|
||
lQMFEDSo04nRHo2ycsieAQEBOHsEAIJIUqdeYXMX4KBa0NL3/joSRO19vKJyddzc
|
||
K7FUC6r4Mz5fyAIfGbYnY5SEJi4cCSLO/x4cVFxGj8ayNv3X/UcfCJBbIht1XO3G
|
||
T0DGS9sLVUcXZNlDdVXq8Hi0vFBQ8B8LDJfJjlQk51yxZC9PhVWTRo4hKxQkpngQ
|
||
Cko0vlyXiQCVAwUQNKjIslA+Uwa6Eu1pAQG0rgP6AgOl+8fdlZhSwPISp6aPB5PR
|
||
1rjzO0MMi4b4hySHJWVLLwRGWCWjCE7ZyBDmVQ5oSxfSumdSKmwP6AT4PwJb9kjh
|
||
N8m/iKwOwxUn54n8I9kkQeASytbeUKYJU6O7b3nrHVGMfEokCrR+AvE/YdJcRr/j
|
||
WtPVceGJHSapj0/tspc=
|
||
=SrO+
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="easynet"><HR></A>
|
||
<H3>EASYNET</H3>
|
||
|
||
Control message sender: newsmaster@easynet.net<BR>
|
||
Key User ID: easynet.news<BR>
|
||
Administrative group: <A HREF="news:easynet.support">easynet.support</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzcA310AAAEEAMHG4cqrO0lTV76f0HcEXIO2Sr1P3Fe+JRv7g1dpQB80Iewu
|
||
+b5QQkMisCJd53amQ1EL0pk1P5CEakH7cpaEPgnRKhZzMsBqdX4he6egKCXqm7VB
|
||
hYkvMRH2qnrwolq1CuRrOTwIdDI9Yu7ciQjY22SZ56nU0QjiYo9vPoWy7GHVAAUR
|
||
tCVlYXN5bmV0Lm5ld3MgPG5ld3NtYXN0ZXJAZWFzeW5ldC5uZXQ+iQCVAwUQNwDf
|
||
XY9vPoWy7GHVAQFkNQP+O9C1onjq+Mb47znTNiFT3NMBVHcMrU71H5YH4qoyld4v
|
||
u3gEr2Y+v4x+WbZQI4SB59xyAPIribd/r+z8FwrSDYYXfqmXTPxRXrmi4iKhniVP
|
||
q9VUcIT/SARP8lvcCzTYAS7cxuHTXgdfNAasK2e37Ya7j+U8BA8hnbKTQZevK2o=
|
||
=eYSV
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="ee"><HR></A>
|
||
<H3>EE</H3>
|
||
|
||
Control message sender: news@news.ut.ee<BR>
|
||
Key User ID: ee.news<BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://news.ut.ee/pubkey.asc">http://news.ut.ee/pubkey.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 2048/99C39705 1997/07/25 ee.news
|
||
Usenet News <news@news.ut.ee>
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQENAzPYu+UAAAEIAK1NNCYvPj5l/vd04qtf31Z5YsOj7ONqvoQ6M2zDoqeMz2EN
|
||
8WuJOzGyoJYUF342p9NTh79qPz8vnUSZxKpIK6gvl8cYw76jDSjNbt27Ro/oY0T1
|
||
sR3K6bk2xKq7+BhuXDA35DAVUyI5bEk3wJQTgpMaGGJi1rYol+ElCxguyzWX8m0R
|
||
mV3hdEZUj6Xiniu2PnvhJcm/8HCq3CRWH0u1Y/IzC2/COaIlQU4aOB061McYKVJD
|
||
bMoa7by1WPzkCFOLBsVrFMNjXezC1MjyLUjXtYCwtau8G1v8wl9jiGs+d5HjVB+y
|
||
nLCkst4KlCwEDZcvH7vNCNyIzrCZU8oP/5nDlwUABRG0B2VlLm5ld3OJARUDBRA2
|
||
AnlPU8oP/5nDlwUBAZU1B/9jmLOoZM5kLlE/VmVcuLxLRkkJaFgMawvdpYi5lzGR
|
||
WXV6fpErVraEiWc1u+IpofydbdDtP50o02pfeYh73MvRs2RbztF+DLV5C94nFVbn
|
||
W0ycxPc7EkJsJcsAwDBcVz7ZorOUKjFMJtxdstcTlMWbRhd/TuXjr6gSzVzfzFqf
|
||
Mk/ImSsMWm5d/YOD1ZNKEE4yUUFUamxLU7N2/fa3IxBUAiAaNZpsuJ0gOXI4vx/m
|
||
yXfc3THEgnQZ2McBZHxwPDanpfCZARAXxA6bO27lcVMBGYVGC2HUeZJ60G7VeOhK
|
||
tqifSXlJ7pYIUNzXGSYItjQ9LPnchhnOXIY5ZdHfMGzltB1Vc2VuZXQgTmV3cyA8
|
||
bmV3c0BuZXdzLnV0LmVlPokBFQMFEDPYu+VTyg//mcOXBQEBll4H/ieX/E25hzYO
|
||
BgKB/YoPuS5s5nFMQv1wbnPV7rSrCpBlYI9o+H3XCbzRml3c+5TEfq4loqLbN7DC
|
||
/SmVOvoUh2nqYFmitqxXXH/NMg3lL2Lk6qVd4TmzFWvjlq9G8XFiTqsDnu53wTcu
|
||
xBbnwAQTsHUeefTy2jwSuf1/mBMOofouHtenKcWupQb/UyfaH1+usZoCfaxIpQF+
|
||
ioLfqyfELHAbnuAEshhmvyNfnE/b7rj8vISFSZ9fdE9rLr+SAkuB+6mk4x7jq0tE
|
||
+1rZhVlutCixlA1KirjXB1bhXLcbRiOpNpz65cM4wtDKtzto0d2UPqZY6m+JJjVE
|
||
C/P77Nd9h8Q=
|
||
=Y45x
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="efn"><HR></A>
|
||
<H3>EFN & EUG</H3>
|
||
|
||
Control message sender: newsadmin@efn.org<BR>
|
||
Key User ID: eug.config<BR>
|
||
Administrative group: <A HREF="news:eug.config">eug.config</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 4.0 Business Edition
|
||
|
||
mQCNAzLXM7UAAAEEAMddVSqOf6hpg5YFwOvJYMZM0GvJut1IdM+ioq2ol1VrD5pN
|
||
qykjqgn8dOCvM07r64yTRFHMG2iX13ibWrlRv0ot4Wf3K4ZPyGb97lUxz47x7XKB
|
||
rYiNxZSo38YoecqpWXyAzKP98woBL3xzl1wc5muPssRlGPxBKawdUS4mXJCnAAUR
|
||
tApldWcuY29uZmlniQCVAwUQMvzweawdUS4mXJCnAQGppQP+I8CYmfETXSP6gAbQ
|
||
3hgcE9tgtPtewTgAlV4m0VconEtqwI3b8tjgzC0gtnprvcZ1vCfRkjVNl9kIA+sV
|
||
+dHLVy0EeAKXLqZaUlX3TKU8WA9U2VzABiHSPWpbkeNFUiR9hS/BBlh4WL/T8mqg
|
||
N7GmwFYwYCGqcrvkFkFdIZKylOM=
|
||
=cGP0
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="england"><HR></A>
|
||
<H3>ENGLAND</H3>
|
||
|
||
Control message sender: admin@england.news-admin.org<BR>
|
||
Key User ID: england-usenet<BR>
|
||
Administrative group: <A HREF="news:england.news.policy">england.news.policy</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.england.news-admin.org/pgpkey.html">http://www.england.news-admin.org/pgpkey.html</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 1024/D88B01E1 2000/05/31 england-usenet
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzk1B30AAAEEAJOKxeP6Svlf64s8o3wKFUmV/7QqtJAjhy0TSqmV5C30INiz
|
||
5yCehcoigJmy6egVK359rr9XIxti83jqwJ0EpV/aZHzhASIasrSpx8j6tl4JDPqI
|
||
J3ZIeSE7EjpPJJF8ggq9lfHOyWLwrnM5QNtl7MubsWPQlecZAL7CAJ7YiwHhAAUR
|
||
tA5lbmdsYW5kLXVzZW5ldIkAlQMFEDk1B32+wgCe2IsB4QEB3d4D+wfBTGm6k77c
|
||
HVBC+uY24Oy0dpLkB8Cbd/fP1RhOl6k7m535g8V6iWC8Ki5EoK+lFkWPR/WDJnBf
|
||
zKy78NTEBzWxTf94SzsMdcaAdW6MiPebrRdS0p9ubHrxKFc5NbURX76uaSRJVXUC
|
||
EvHkaugFJcFOuhzReRXAAxaTLNwUVbAs
|
||
=jgds
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="es"><HR></A>
|
||
<H3>ES</H3>
|
||
|
||
Control message sender: moderador@news.rediris.es<BR>
|
||
Key User ID: es.news<BR>
|
||
Administrative group: <A HREF="news:es.news">es.news</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzKltbIAAAEEAM9cNJJ8gJDDOA2mN9EDBlw4jOqFywOIUU8g+vBTJXnJi389
|
||
TSfsZTneJAw2rROf/CyNVVpM5RKIN9QotvqQV80SkpMOnShGWbp4JgeYl2Mz1dki
|
||
Rtcs4dZ2MrnAK62eresA9f0LpPktTqV6KaFvugRewAoNnl9GnZAe7JVtRX8ZAAUR
|
||
tAdlcy5uZXdziQCVAwUQMqW1spAe7JVtRX8ZAQFBqgP/ddF/iolVGKNIoYLHVpb9
|
||
KcmJ0q6zB3+JynSz8Bsugg9Ojh2NlujzGeDVN8eY2eOkrAqYt806LCUEsAZTVwGv
|
||
VufAr3jVIIZrhdnTziMdJfq5GixzkJKwDNbOp/5z85wSGrmc5FlmoJ8lEvFznuP5
|
||
nnVjbiyR9Tqc3Ny9omAR2z8=
|
||
=LeAj
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="europa"><HR></A>
|
||
<H3>EUROPA</H3>
|
||
|
||
Control message sender: group-admin@usenet.eu.org<BR>
|
||
Key User ID: group-admin@usenet.eu.org<BR>
|
||
Administrative group: <A HREF="news:europa.usenet.admin">europa.usenet.admin</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzpLn5UAAAEEAM7SSRvbsrDw5J/kOkg/aWO2I9uZVt0B2qKcFSLUqWkcO+AJ
|
||
GlSaioiAD7Ad7zcbauyCRiFxPHBl/OrOKh9qKLArOqUDr/ZlJpZJXUCabYWgB8rc
|
||
RxqBhL1RaxOf7u+1GhizSnOWufZzv2iGI6nWNKlrGrhkV+fkm8f+GMD1kZyjAAUR
|
||
tBlncm91cC1hZG1pbkB1c2VuZXQuZXUub3JniQCVAwUQOlZJhMf+GMD1kZyjAQHw
|
||
AQP+PFGdojhoWpFbghNN8q6pa4D3GG2OGwbCz7KfOHzVnj90T54chAyCwLAQ212f
|
||
WVv/3r/kXneFcCfyC8mAFeOWMpOi0BHA0JqAEwzSF/mw/LXy8C/WQmozkP9qiWu7
|
||
eTKLFV4f6DfqcPj2z+CLC7rN1by14UoZ3zfIC2Xywx6237S0J2dyb3VwLWFkbWlu
|
||
IDxncm91cC1hZG1pbkB1c2VuZXQuZXUub3JnPokAlQMFEDpLn5XH/hjA9ZGcowEB
|
||
NaoD/26XKy9+JYUY4bab4xBbNvUlk0L9rmNa7WGAGLdbId8+dzbJFEhY6Q5mPTuq
|
||
I9HlEgItuGIrnV+YGVdfoCq39SKhpDqjWmmehbkqy+UUMNopys22OVgUfvdkERks
|
||
d02wRzEm8BPVo4gDycMcuDBrSF8KuzQ92vjqNL6HCd1jeAodiQCVAwUQOkunj684
|
||
G+aJbDmvAQE7UgP9EgXupY+oRoA//YqgeAkuh8AUzv5aWKyMnjRvaHN9mbpfStWP
|
||
qlnsmHJRVn7Y/8A2mMpEgOZxTQ+i2IYP1tkcbyQIt6gAr9D0nLD1TQgIcH8/zLVL
|
||
8FdaIMWCXLTppYeEHOXoiVsDkenVSzLz93z/yK3/1ZPlVEXr7dA5ckm+PeI=
|
||
=xb9/
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="fido.belg"><HR></A>
|
||
<H3>FIDO.BELG</H3>
|
||
|
||
Control message sender: fidobelg@mail.z2.fidonet.org<BR>
|
||
Key User ID: fido.belg.news<BR>
|
||
Administrative group: <A HREF="news:fido.belg.news">fido.belg.news</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzPJJwAAAAEEALfkcZZHR5PhWqPXMf5qU7uf8D6cso4tzo5QfQWa7rZskmgZ
|
||
yY/JIViT0TWc0uRuTuFtx/A5oAVsiqVWAVeUNtRN1aIJmI2nN0PDrV0kZhwHJ/O8
|
||
Ztef6E8WOj9wkfoFcJ29g+bUrIwJZLSrdqfziq6onaWwseXd+bDMztimfbldAAUR
|
||
tA5maWRvLmJlbGcubmV3c4kAlQMFEDPJKfTZ+PMFjw5JdQEB1DUD/R/+ypJuhyDy
|
||
VHOIxb+jOn+5QplhdyKuOQbzzq5hO1u6wzKPVm43bdx3LKIX4pyv+SKTw3DSoEFR
|
||
J7fYicrI0QtvqhAvRZX8dSJhMydfLNbtzIfXuu8LSCgw2eFwpL5pMEVbZdhOLczN
|
||
AE/ILKmkZmWSvsFMfDd3peEoDMrWmW3iiQCUAwUQM8knALDMztimfbldAQHgzgP3
|
||
UG5Z/5tZDt/hSZJBQTY2olBVVeawuaINVv1LsRN3AfLrQ1G52ZD2/0tShemuF0MV
|
||
TjinJg4WZnt0wgjwdIQnd6+IQRBvTo1CQGbmJwzOiTBF4sILqeMfeo2lQlmLBLsQ
|
||
jEO4nn4C6vo1Vm1KgFYD51silHnQ0t0whiBL0xcqBLQcZmlkb2JlbGdAbWFpbC56
|
||
Mi5maWRvbmV0Lm9yZ4kAlQMFEDPJRnawzM7Ypn25XQEBg0gD/jtnIpaapuVf50kH
|
||
tf+AW+5lwXYWGu/ilyRfJLc0xtrJ5sEuHGw+vfoxGcst41xr3cNka9HYn/+7Kohd
|
||
CE5GFcoOafIgU110bv4it64uKJuFZVwDW80jcsartydmqqQYY57NN4qHTubtWhcX
|
||
gYSrk3bKxKa4N1/4ePyBUqmU1rw9tB5CZWxnaWFuIEZpZG9uZXQgZ3JvdXBzIFBH
|
||
UCBrZXmJAJUDBRAzySlIsMzO2KZ9uV0BAUhGA/4tLb797bR/CJUsFi5+GE+OzrLf
|
||
+wMSLeZlLPqLBbxbeMQbvLJo7mZHeJmIOFb4rdP9KS5CthegeWFUJAh89c9qDqaa
|
||
jMs2pdF8c7ACvQbqJY5UOHuFv0wFU6d79sSFuUGvJWNmOQnzrs+DZ2RQpJdDvw9/
|
||
oC+nSA+cXGoIOjc7rw==
|
||
=bKdx
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="fj"><HR></A>
|
||
<H3>FJ</H3>
|
||
|
||
Control message sender: committee@fj-news.org<BR>
|
||
Key User ID: fj.news.announce<BR>
|
||
Administrative group: <A HREF="news:fj.news.announce">fj.news.announce</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.is.tsukuba.ac.jp/~yas/fj/fj.asc">http://www.is.tsukuba.ac.jp/~yas/fj/fj.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 1024/607F5DA9 1998/08/30 fj.news.announce
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzXpV8UAAAEEALhiIKN7JxF+ShGlemWqXAPNmOYqsq8KgJdekqgqoGLl8h3r
|
||
CvxJzt8ZajyUvqmHDgYN36tncGOo1hbNHeXTVs/vY5BNUKsJXe/xP9HdUc7bZfXZ
|
||
SRezERxujZ2JneJmoFkx5g4TD86lj87RGVzS9pGblxNfpv4mvRf4TH9gf12pAAUR
|
||
tBBmai5uZXdzLmFubm91bmNliQCVAwUQNelXxhf4TH9gf12pAQFwKAQAlXkPQezd
|
||
xtlIVbG76NAxC6CpTyg9gc3GrjyUqCnV2pbWF/vBSlZZsYpOR/Er7JImWXRS+DL3
|
||
LB3d4ZXf5izHqkusP5u2ZQjUQIzfG/sqKj9XCBsPG4ZRZ2ADJ/5Itxsk106K9/03
|
||
cximrB7fT6PjZtzp/8wSxVvJ4pJ1OfBmROs=
|
||
=1lpr
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="flora"><HR></A>
|
||
<H3>FLORA</H3>
|
||
|
||
Control message sender: news@flora.ottawa.on.ca<BR>
|
||
Key User ID: flora-news<BR>
|
||
Administrative group: <A HREF="news:flora.general">flora.general</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzNuAqEAAAEEAMUvbutdGm2Z1abbdaYD72/qrbXXZmeyo32Wr3DCjl2gg6v0
|
||
+vd0Dq7odKQXLaTBeEKKGXl6EhOtyxDOoZwJMKS2CZPo5Zgrkercvkl9PTOMyFhX
|
||
K6yMnAkCn6XZopivH5Hp6+Nx0gAqGEccJfdfs1TlXHD0UYkhlOvJiX8PXTE5AAUR
|
||
tApmbG9yYS1uZXdziQCVAwUQNL0mv1nBbqL7SY1BAQGrbwP+NBvKq+hCK5WVpLJj
|
||
6lEP4wCsWfM8bttJH+yIEXU6JYxw0N8VaeG75Lwyld/MQERFXFwb2ljN7QiglGeu
|
||
2xnmR5P1Dq5ZiO0aQm8jVhZ6RxCLPJQJczwg1zVW5LLtSk9JzL9Wa8+vNlTwmTFQ
|
||
ffFsrluX94aLxP+IZJGWfYoCXNaJAJUDBRA0vSIL68mJfw9dMTkBAcFUA/9Q+5d3
|
||
rPB0KdMbd2WQOqCKhWTw5vp+V+wpfGVG9Oqt+U2+9XCkr7ISoGVWaW2vG41vw1M+
|
||
oDt+RXlc2ztL2ow8ZDWxSHibuUDxDybDWFButskq8OreeIPGzAhXaNDhPh4Vdmr/
|
||
leL7YvnCGs/zyjdc2T1VjDrftS1JU90dBJhf67QbZmxvcmEtbmV3cyA8bmV3c0Bm
|
||
bG9yYS5vcmc+iQCVAwUQM24CoevJiX8PXTE5AQFwUgP+KJwJbGPYb2/nWShJPRNn
|
||
/yEB7aNOpLYSU9Eg2Xk+Uxp+1Qgkz2eKovJIF1dyAdyGO0rTxf1zXDjEfOI+MJxM
|
||
D7uUysrCZxgARb0sMXDW9q5Vrn44dZWciUzDN1EM5AuDX4G/XHS4h1l9seXFVUwL
|
||
pDpQVttHCnhrximf26fYb3A=
|
||
=Q/99
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="fr"><HR></A>
|
||
<H3>FR</H3>
|
||
|
||
Control message sender: control@usenet-fr.news.eu.org<BR>
|
||
Key User ID: control@usenet-fr.news.eu.org<BR>
|
||
Administrative group: <A HREF="news:fr.usenet.forums.annonces">fr.usenet.forums.annonces</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzWmUiEAAAEEAOPaQr+8kL2D02TMg34nWqzRGyQLfO09QJeEux+pZMq34vR1
|
||
tgYvjh4hMpBepIdHYPooUeilWoieDimNEIkhWjDOd0YISo16i1o91K3s7daMY3VZ
|
||
M8SMZcPeOEZUZ4yvj83q9Z1vc/rIC25JFBLf2YTMBph3Pnx/tLgiQr+16we9AAUR
|
||
tB1jb250cm9sQHVzZW5ldC1mci5uZXdzLmV1Lm9yZ4kAlQMFEDXKL6q4IkK/tesH
|
||
vQEBa28EAN0XAIB3YFphdeICkr4z4l7k9zdesZnKsP3qsgqEnlPvNggD78l7R2ZI
|
||
bHD/m8JnIZ+sxU2sOVO/vwLJhD7KZ5qtpljc6vcQiVkUVbfsbDWHkqqMqaO2/4rt
|
||
dbfMU8D/LILibZ7zo4/EKHbgthL7EueMrIswcF7Z5y0A8W654h0QtCdDb250cm9s
|
||
IDxjb250cm9sQHVzZW5ldC1mci5uZXdzLmV1Lm9yZz6JAJUDBRA1qntauCJCv7Xr
|
||
B70BAcBcBACz7ftK3xMcCnFMAAiIu56QKbl4NfUVNpxYNaewQq3oZd8IoI+sWpkp
|
||
SyFyACadofIMig3m18QwkLfKkrbkXwzjCvmj/kTeCNDeVQcoVl8tEx0zDquDiiCS
|
||
g2e9Bd+j/TveiNh5/tAii+znjVXyGAdjgk0VsKVeUcm7qt4lMCXwjLQZZnIudXNl
|
||
bmV0LmZvcnVtcy5hbm5vbmNlc4kAlQMFEDWmUiG4IkK/tesHvQEBRf4D/iJTcOQf
|
||
duPEqQ0dhDAe8gDO0rSqX0QIPh4dbjxLQVK13aaHzuxgE3cdm9zFpf9jcmOqslHd
|
||
R8SKMFIHgI31HFBkQB6f7O7p4zsgKk77l3XU6f5l4YBTelE22VcbYRLcGnlz6oT3
|
||
PicZGO8FoYq1/QLoGd118u7b/JUZiE8v3Gfc
|
||
=oeOZ
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="gov"><HR></A>
|
||
<H3>GOV</H3>
|
||
|
||
Control message sender: gov-usenet-announce-moderator@govnews.org<BR>
|
||
Key User ID: gov.usenet.announce<BR>
|
||
Administrative group: <A HREF="news:gov.usenet.announce">gov.usenet.announce</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2
|
||
|
||
mQCNAzG6NYoAAAEEAOC2bDAFQlM5l81+WgWjJErVSCDeEyk+gzLionO42/CcC4Wm
|
||
eLgCLhl6y4OywoCDipYgOta0FG/dOMP9zTHaptc6HQJ2C+7rlWtSIn/g+Z4skgsP
|
||
SK2JbHe6FCPUphkV7MZ9iwOeTWpGeVo7T+ujSFRRd4dVk5ap2izi3FB//XhVAAUR
|
||
tBNnb3YudXNlbmV0LmFubm91bmNliQCVAwUQMwnq+Czi3FB//XhVAQFYxQQA1IGF
|
||
oFena1a9SI3lC9clkRr9w5nF7y4hh7T0DRg6M6r4naiegmisPFqvM1j8dnC3tU6x
|
||
5Vz1ATsP/Uu1GFecJ31u55m+N6pMrv56pqivK5PxV3PbEKV/9fHUT7o/2vsw3wge
|
||
AmsQ590GSur09cpxSY0TAU/hMQlK0FkN4jnGrAQ=
|
||
=rTFC
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="hamster"><HR></A>
|
||
<H3>HAMSTER</H3>
|
||
|
||
Control message sender: hamster-control@snafu.de<BR>
|
||
Key User ID: hamster-control@snafu.de<BR>
|
||
Administrative group: <A HREF="news:hamster.de.config">hamster.de.config</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.nethamster.org/control/hamster.asc">http://www.nethamster.org/control/hamster.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 2048/62EEFEB3 2000/06/19 hamster-control@snafu.de
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3in
|
||
|
||
mQENAzlOpD4AAAEIAKRDVownmpv5PXE19mpRfSEYeMcbF7TVEcZwIHayPf9k89VA
|
||
vIYVq3J4zxZQhkXsEQPF1ygXlrBOdviVB/n8pAp1/asR5viboo8crIrWf4DfceKn
|
||
UBS6uz3256deG6eyCSt7D0OYn5wY6BlMfDT6Ko0mhGwtUV/CNc8mxS/G1xmosUkJ
|
||
2dC3mVJ2PPqzWwiHBMVJ3gRpIl3e3rXyh2Q2e9IB45DC3Yrx2otQM4oWUc1xzAl9
|
||
gFnu05PXU3KjaNpSV7LZovpTDsCP4jgZh9OBIqEzcckSRcbVNwqbzWWOLqBx+WMv
|
||
9gKi8aJCdFRWqlOTQ9EzKhJx7D+k09P/fWLu/rMABRG0GGhhbXN0ZXItY29udHJv
|
||
bEBzbmFmdS5kZYkBFQMFEDlOrKjT0/99Yu7+swEBbLkH/2toN16MklXQreKsQaFg
|
||
erzNxdCf+Z8d7TiVtLdoH0tHJ4sAvVdbOSrI19VqulamUXFlIU/ZEzRpbXRBI6DY
|
||
KMMu7Hc9kuHYizCTm4U/92Kc2dX4/jK7a5yMC4eVsX6X4SG0+6MDTrd97C6BpIw0
|
||
E6qpgWMTTY9iyYAhSy3A6cfhCIBTX2RDJaRJGrO2YWNxxp+WlvowxYlnIC/ffllX
|
||
L19zF3PjrT8VKVENS6kcqwTre4pdOUW3M+btunYuNp9LfM8tAH1FQni0lHWPOGiO
|
||
P0t8A5gxOlntv1rZImCIsF7KWUtaS7O1S7nk4CkFvnBazA2lkoxlcJV1Ny5zueK+
|
||
J2U=
|
||
=xRt+
|
||
-----END PGP PUBLIC KEY BLOCK-----</PRE>
|
||
|
||
<A NAME="han"><HR></A>
|
||
<H3>HAN</H3>
|
||
|
||
Control message sender: newgroups-request@usenet.or.kr<BR>
|
||
Key User ID: han.news.admin<BR>
|
||
Administrative group: <A HREF="news:han.news.admin">han.news.admin</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="ftp://ftp.usenet.or.kr/pub/korea/usenet/pgp/PGPKEY.han">ftp://ftp.usenet.or.kr/pub/korea/usenet/pgp/PGPKEY.han</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzRzhC8AAAEEAJvTcIT/+WBdosB3lQIunGuRugV4Wwlw0vD7wlGeLWRxrUbc
|
||
3BY/vAFJLrEYLF+h6AKRjipMESxDsbR79SOGjkA1e6TeeXdKtu7nZAhzo6JqudXH
|
||
mErIKV2mgBz9UvJ8xHpXZ0SUG8stTiVl+TzVfRR0GVXSXsn5khzmBMrAhdHdAAUR
|
||
tA5oYW4ubmV3cy5hZG1pbokAlQMFEDRzhC8c5gTKwIXR3QEBO/0D/0vEZ0BJW5Rb
|
||
wG2gzqQaCHSiNXfth2fC+nDNjwhUZyZEUAaIPYY7w+1Ksw6JV3NZ8TMCxqMxemj3
|
||
e+6zMPPwsFe2Lr/Wmu2zwWPKxqVZtDfA+YRVVoyNkh46N1wicn3XInngBwGUP3Kn
|
||
gHr9tW4UbKOJzVYq+g/2kKOe850iIemd
|
||
=I7tQ
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="hiv"><HR></A>
|
||
<H3>HIV</H3>
|
||
|
||
Control message sender: news@hivnet.org<BR>
|
||
Key User ID: news@hivnet.org<BR>
|
||
Administrative group: <A HREF="news:hiv.config">hiv.config</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzhzJG0AAAEEAKULESHiReZ2NKPH4VvxzyCcy9iESHP57vdSKQJvIfAlM656
|
||
fI+JrXePWckvO33GgXyeyvGpEVNBUMmVvv+tVObj1CflvVQvh3/OMi7S8UuBYBBP
|
||
Jam7jJC3IG7VFP65cTZG7G7e/3AIbtMIwj9mPNevBZstZ1am9LmTyQznADIpAAUR
|
||
tA9uZXdzQGhpdm5ldC5vcmeJAJUDBRA4czJjuZPJDOcAMikBASyyBACFKQq+F3gJ
|
||
TZAQGUvgvwZCDYNOGk+WSkhp/XYp4QpqNwiH5fKhUcKkPBMWfyG6bGovBShqo98O
|
||
DcUe9dxV71fjXyXOrSh6pSPnXIp6JengGqrUp8Ocw5aYEawGYYkQzURWNgcpIxKx
|
||
MLN+6nl5sFKMShq1XgV0n7gm9xGKgEiz9A==
|
||
=cbyX
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="houston"><HR></A>
|
||
<H3>HOUSTON</H3>
|
||
|
||
Control message sender: news@academ.com<BR>
|
||
Key User ID: houston.usenet.config<BR>
|
||
Administrative group: <A HREF="news:houston.usenet.config">houston.usenet.config</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2
|
||
|
||
mQCNAzNk99kAAAEEAOtnP/aA83TNNag5ZsZwBYbTMk2zpQN1cJFEgMOgFLUTQdLe
|
||
T/IKeBUewDz0TP8EdutnJoH/he60AAlx+qgi2HWVkF7F+5n1wsnKs//xgmdYjVAT
|
||
gLzHNH4bYym/LnznlcdnxxokonAbndO4iY53l2AY+d2CJroJwFDtUyJYrHZpAAUR
|
||
tBVob3VzdG9uLnVzZW5ldC5jb25maWeJAJUDBRAzZPg8UO1TIlisdmkBARMBA/9L
|
||
GuYMTT5gOpxn0ZwaKULBaQxDB+LsXg1+LxXb3DneDSHDTSMYSmfU2LnjuUm/e+Z2
|
||
nVBjRqcjX2U+zk6UQ6mvdevFfSakRYGLJ5XSb32lDGoQUw09AH8H/GlaPuXaauEG
|
||
18SR4tLjTawRB1sKe2J6gY5WH72XuOwDKEN5hAgZSw==
|
||
=x1Ic
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="hun"><HR></A>
|
||
<H3>HUN</H3>
|
||
|
||
Control message sender: hun-mnt@news.sztaki.hu<BR>
|
||
Key User ID: hun.admin.news<BR>
|
||
Administrative group: <A HREF="news:hun.admin.news">hun.admin.news</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://gatling.ikk.sztaki.hu/~kissg/news/hun.admin.news.asc">http://gatling.ikk.sztaki.hu/~kissg/news/hun.admin.news.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 512/5D144299 1999/04/12 hun.admin.news
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQBNAzcSE9QAAAECALjFP6VEfJeH1sig+bM0cBmT6YhqtvWpIqLuwYeTgbSXdvVl
|
||
33slOyG0z8SSyuNuDwNmBJqeMf0bDAFWxF0UQpkABRG0Dmh1bi5hZG1pbi5uZXdz
|
||
iQBVAwUQNxIT1AwBVsRdFEKZAQFnkQH7B817uxxX1aDXsw87ZjcTEnM4n7ErcO1t
|
||
/gfL+tpk9n8w2lc9QUIj1SyPY2gzcHxtcR+v03HUxKYgrNUMSWsuDg==
|
||
=hr0o
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="ie"><HR></A>
|
||
<H3>IE</H3>
|
||
|
||
Control message sender: control@usenet.ie<BR>
|
||
Key User ID: control@usenet.ie<BR>
|
||
Administrative group: <A HREF="news:ie.news.group">ie.news.group</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: PGPfreeware 5.0i for non-commercial use
|
||
|
||
mQGiBDrv/D0RBADuWCEF49cWGbe71QpDATJE6ylNDQdXEmyHB7Ld4pUEKyQexjiy
|
||
DE6RkQwM/eHm0510wDdr0WDFMbhd5RsG7aI+4fwv5/OnOB99anZCRgLuBlRMsSkJ
|
||
em0S7ASarrd2DWdAh0Ap2XKZ49GrNOf64mXVzCD+CzwwvUMTUeoaQOiL3QCg/zIV
|
||
E5P8x8CJTx+Ako7+tJ+Fh9kEAJsWS5cW5TwrzxSaq3D2o9/fxrwrpJiPkjLl/qdJ
|
||
mg2yYcZtPHMnb/l9a3BnVSCK4q7XxVs9YzoFM9kBNxB7wVy4m0nB88f9FfvVId0m
|
||
B5u9/rejckjnCrKox30+5w4RYroyqWmG3c1bJE4+6mn9bCw0sE6Rs17NH2K8Y1Be
|
||
BSFyA/9UmxYimm79fp2G3S1M0cA56oc7x+/htpMWbHXkshs4DmrPEjMazofzzYph
|
||
PsXr+UDoZx86ain6uRX7tJ+psQqMiUCMz4fBLO8kToG3i0yp7D+kmZZZ0xKq9ye1
|
||
CTUp8y/vpN+3bMRDgXb1tCpIp8T5nWmQeOmtFxOD6NcqKYngNrQRY29udHJvbEB1
|
||
c2VuZXQuaWWJAEsEEBECAAsFAjrv/D0ECwMBAgAKCRBidsigYk+txIAxAJ9HDbYU
|
||
GGF5xrN1lpheJNr9nbaCcACgnjKQfLF8kNAm4r3tgfGa7yqhdGW5AQ0EOu/8VhAE
|
||
AP3a2QTgDDklmQ98qvZ+BywiP73eJqQQqUmjrM/hDzwXj3O6c+K6pguJaXFm/E+1
|
||
5W0j2Bu7M/Bz7+dfIsrkPbUwgVxwbd6DdOWWfVwNRgdunLh3kwB5ly17VvZY74ge
|
||
z7GI+3SVeiCjQwoozqb2w3BmyWwL332a+BIxoq4qeYqRAAICBADN24yABCH7lCeM
|
||
1ZFAtq3Yk3A/MmYgRGFaaRb4vtngl37Z3QVzbrq53StHKPGt+u81t69SODoxwjrr
|
||
bSP+lY4WzoosCjMZqMVMkWeStMKPu5DdBX5SDxCcYqeBv7YAwnSVWY7xxK00XxAX
|
||
ab+mZ01RPjdlK8Awh/uCHmV9qmCLFIkAPwMFGDrv/FZidsigYk+txBECpMwAoKrc
|
||
aGAnyhR4PB5G7VK9yyZjUHSXAJ9LP9yMUrYjyJ3TeOKRdzhDfNGfUw==
|
||
=LJMB
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="is"><HR></A>
|
||
<H3>IS</H3>
|
||
|
||
Control message sender: news@isnet.is<BR>
|
||
Key User ID: is.isnet<BR>
|
||
Administrative group: <A HREF="news:is.isnet">is.isnet</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2i
|
||
|
||
mQCNAzcpwLkAAAEEAMovfU1fjlMtiFDkhD/P+fDT3teIJxmQTPUIVgGFf0MJcF8k
|
||
oFpXOjAiti7bL8SbdhXKAF/bIm62OnMorLYJCTk8jwFmjFfM0lDBQxL3PQwDIAEt
|
||
pV9wdQPEso+2ncu5Z8WuG6BbflaKvsNRo3cypFgHrsnhEC3Q5TzPIG9Uw4+lAAUR
|
||
tAhpcy5pc25ldIkAlQMFEDcpw0s8zyBvVMOPpQEBv34D/jIQqnsn0HibqkbXqaGM
|
||
BhjOtcItfuyaVxePAkSoAwlPVLTZFSe7eHY63CGUg5m7wVOIRWxX9bQ7a87T+b8s
|
||
zFJDO7YaCrVkNNVqJkZUN3hYT9UFG9WnQvOmqDCZDjhdTW8V8CYda+CfMxdyZMDl
|
||
esS2V1bsUtXnPWaYPt//+gb0
|
||
=FvYX
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="it"><HR></A>
|
||
<H3>IT</H3>
|
||
|
||
Control message sender: gcn@news.nic.it<BR>
|
||
Key User ID: gcn@news.nic.it<BR>
|
||
Administrative group: <A HREF="news:it.news.annunci">it.news.annunci</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.news.nic.it/pgp.txt">http://www.news.nic.it/pgp.txt</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 2048/B28B9B51 2001/08/02 gcn@news.nic.it
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Comment: GnuPG v1.0.6 - For info see http://gnupg.linux.it
|
||
|
||
mQENAztpd98AAAEIAK8cTulRhuMQYFOKXz94E/ZuhzfVdvX8rDcQ074ttQ+6Mmth
|
||
jdXc4v1TEKqPPpLGLWsR6ZIwfTo1K8Rl4W0rV/ZCdyqE++Fj6oR5Wy2shjJ+/1a0
|
||
1CVi+OFJQYJoEzE8AUWuiOlqARHgXcFDbWLQjNCjjZhkEHwWmGA4xGMTFdBs6OD3
|
||
39slzUc57BJbbdacvf6NOUpF95i4AHmLjgN3SKU1Yf1ffxbtikF4IA1ssSUTuGGP
|
||
OSl2Xh7+uEvbPZbMIqccWUxlnaNST7QRIFBy1eYVk2h56ZHMsu73lg2xURkWZbSH
|
||
kG7LWkIcyG0zrvzcq3UH20q9c3gBxIpwOLKLm1EABRG0D2djbkBuZXdzLm5pYy5p
|
||
dIkBFQMFEDtpd9/EinA4soubUQEBZAEH/2dlv6TKUcJ3Ga8occ0eFxts1pOCNWI3
|
||
9Dcns8rahLItIeZGX1Xpd7Td2EGxlTftlEAQdyc3r587QDooIjkTQUanY0yJRSfe
|
||
8Jyk0VUIpcX1HidC+U/Z5er6j1cGey1NXRC7B84h4ZdxT7jNsINgeFbZoD2hQL0t
|
||
GozH2cudGVLnvCcbUSqGA9oQMdMQ7DSpQx1FQhi6+P0jWEcVkd59iwY04aKHxtxP
|
||
/yadRs+QADgwkRNtk6sptbaM9XZNtlwMIHOV7al2ZYlEmNmyRzkXIIDCs3JNXmbp
|
||
+qD1xquUO9gZFV7vyzT5iUnkKpDF5RHJ4iSr/vlPbHoqr8OzLyRzWDE=
|
||
=InDL
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="italia"><HR></A>
|
||
<H3>ITALIA</H3>
|
||
|
||
Control message sender: news@news.cineca.it<BR>
|
||
Key User ID: italia.announce.newgroups<BR>
|
||
Administrative group: <A HREF="news:italia.announce.newgroups">italia.announce.newgroups</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://news.cineca.it/italia/italia-pgp.txt">http://news.cineca.it/italia/italia-pgp.txt</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzf03aQAAAEEAOiXa8Ry7C+pa9fXt2lAxWFxonLppeQMkHJzDj/PodW/EpE4
|
||
dnxFQTMIOzFNw2Qw+V01yys0SvTEh70ls6Nq7G1YqRR6SGye3UfgdzFyxSNHm9Yv
|
||
ZMApGkL5dLEiGCDFAqona19ftS5L903uuEo9cYaUIe5DE9uu58b9qAl55RHhAAUR
|
||
tBlpdGFsaWEuYW5ub3VuY2UubmV3Z3JvdXBziQCVAwUQN/Tdpcb9qAl55RHhAQF3
|
||
TAQAi9gPCoUNrEE06Jl77aMJFKN8jbOCEUFDc+2Pw4ZC90KG8tEEGGmEe7ejUA8i
|
||
Zy4uHBJ4RbT3Njc13/JsFhbCZpgRT5kCQqupbnyCEYxnd8nD+Bslnmojqs2DyjgM
|
||
QGk3+xdCpEn4W5EzFcfj3RMTjUQ8pm3ahxYergUgVBcTrlA=
|
||
=M0l0
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="japan"><HR></A>
|
||
<H3>JAPAN</H3>
|
||
|
||
Control message sender: japan.admin.announce@news.efnet.com<BR>
|
||
Key User ID: japan.admin.announce@news.efnet.com<BR>
|
||
Administrative group: <A HREF="news:japan.admin.announce">japan.admin.announce</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://grex.cyberspace.org/~tt/japan.admin.announce.asc">http://grex.cyberspace.org/~tt/japan.admin.announce.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 1024/C56B3BB9 1998/02/15 japan.admin.announce@news.efnet.com
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzTmcd4AAAEEAMboB1DniZaaBFLbAkwp/xiXYykIvZBxSAI23OdYjp5xZu5K
|
||
e6ikwoFuAupOlF/7Ny1SekzYaip48zKd60np7ME34OAQ0YJAqBRALNgGzlpGct1k
|
||
tuQ+fqaE7f2TYQLT7BcjTkE9NhLW22bRMm9K5ggmUi0PCMrjeo4wi0XFazu5AAUR
|
||
tCNqYXBhbi5hZG1pbi5hbm5vdW5jZUBuZXdzLmVmbmV0LmNvbYkAlQMFEDTmcd6O
|
||
MItFxWs7uQEBL/8D/1jtDDCzj1Yb2DheiJ2EjCe91P/htBopg5Sh7MJvphnqHoap
|
||
SjN4eesBz2QqVikyRlHLa3CDaWW9iqLOynRiRaBEUUpUBatITOFcSLMl6ZvEBmrw
|
||
5zQdIlt7rfnGVQ/PJ/46J4ArEeRqEf4LG9Ck1hBVLsaDHJpFHf6xgbfO+Dxw
|
||
=aNG9
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="kanto"><HR></A>
|
||
<H3>KANTO</H3>
|
||
|
||
Control message sender: ty@kamoi.imasy.or.jp<BR>
|
||
Key User ID: kanto.news.network<BR>
|
||
Administrative group: <A HREF="news:kanto.news.network">kanto.news.network</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzMG1n8AAAEEANHuYCPlLcazem3Rc90IQwy3oS3oPlrfRu4Jaq7KK8XC5Zby
|
||
yiuMm4Y6uQEE0ET63arHDtCSx0+25naYc2g57O37bbqK9nbhsFSP68Fgxl/Eseg+
|
||
7hyqv4kDNz2BaAq27N/9nr5Z1sU/zREqcthjrv1QksL94VqMVUbR7Jed5tDhAAUR
|
||
tBJrYW50by5uZXdzLm5ldHdvcmuJAJUDBRAzBtembnPou6pBG10BAfmSA/4y/X/k
|
||
XDCSDNdiKknWkONBbmq+Eco9hc+LTawFPDz7HHpiG+eL9ZebKBpajnqmBzrbNZ1P
|
||
tLjqQKSpldenmMPdB2l55IT4YdyXvzUg3muRsY087y2a2RrSQ4Xjq4kZoRY6esTQ
|
||
NjW0NNNU6eMds52VSdH2RjjF6/Pe5XtCnHJvIYkAlQMFEDMG1n9G0eyXnebQ4QEB
|
||
HnwEAMyRdg9bJ0pxYeC0q48girYaX0hYbxO/QoyH7x0f11X95Kwiuf1s6ixJppwE
|
||
14bMWnhzLxwuRR8HWowsUPilaigBULgLB03dzscZdFKeKuL9S0mmjA3oLnKFOASx
|
||
Py1ePSNIIbverEdSOv3of3HRFznAw+42AchSPZPZEmr8ZleM
|
||
=3qm+
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="linux"><HR></A>
|
||
<H3>LINUX</H3>
|
||
|
||
Control message sender: linux-admin@bofh.it<BR>
|
||
Key User ID: linux-admin@bofh.it<BR>
|
||
Administrative group: <A HREF="news:linux.admin.news">linux.admin.news</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Comment: GnuPG v1.0.0
|
||
|
||
mQCNAznkyGYAAAEEAMaVTjuoCEUDGr+oYbhaQE0KZ8r3q9ozitEMidPATc723yY8
|
||
ZXevQ7mTirBxD8W5g8zAq16ZXAJ7NELwt0rA2QvOoQ3NQAVSLXTmfWgk/WaUYGdt
|
||
uSl+CW7Lm7uwZtxU40krvuHJNmH7+zC3N2JtLEHTuAnC3LNKSaY+DxZ9lg69AAUR
|
||
tBNsaW51eC1hZG1pbkBib2ZoLml0iQCVAwUTOeT9R6Y+DxZ9lg69AQH8iQP9HoLQ
|
||
VrlshmMYOPMH5zC7Cl546frYP5lWLkd4ZV3Hb9QQ7GrzjSH7LBPA7r8JmyXaEUfO
|
||
Ur3QCXJWxhwvp5vo9xpUmttrX5FXjWJh/06lYhEPtNuIERmS9hlVjJjhJPckunJy
|
||
AMGo/13kFkuGd5uxVfI6M/cL1Ctw1df0LrALYn0=
|
||
=bXOA
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="malta"><HR></A>
|
||
<H3>MALTA</H3>
|
||
|
||
Control message sender: cmeli@cis.um.edu.mt<BR>
|
||
Key User ID: malta.config<BR>
|
||
Administrative group: <A HREF="news:malta.config">malta.config</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.cis.um.edu.mt/news-malta/PGP.PUBLICKEY">http://www.cis.um.edu.mt/news-malta/PGP.PUBLICKEY</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2i
|
||
|
||
mQENAjmmghoAAAEIAL1I4uVHIlXVZ9f3iCZrQTKuYUfCJSRUwrzoQhfo5ZpEU6Ac
|
||
c/PuCD/L2akGoYhDky2dQqnmmV+dLyn7sxaznmEwHJrgQeeoIh4i/RizWNXJiB6P
|
||
GUvuUSQLQhJaQH3Lb/fSvUeLD6uZTSKE2qmOgwqgV4FS+tGeejLXd34ld6CsD9kP
|
||
GXzYtSYqwx9Z4xOqarvtviDr3a+vCc0Epj26IFXbfYD8ElSHVWrnbFVPMbJ71uKC
|
||
V8pkHz5acV3V6uw+FV7setgTj4vZcPrngjBXlAgxw1aJLWabXQqn8P9B8BoYVGV/
|
||
LQeCRKQtAsF8ZMlEXfsaDV1IwVTAegTENVAgq3kABRG0DG1hbHRhLmNvbmZpZ4kB
|
||
FQIFEDmmkmZ6BMQ1UCCreQEBjx0IAKJBa6j14XyNlPUwAsCYzzTEP1FztOTA1/0m
|
||
kPXheTcIieZpW82FWKkKik6AiNGjaK2LSMji+C5X4pBLEOiRLPkOJb3n5bHC9lDK
|
||
t4Iii6ZXxSadU/XnDg357208Y7z8CZixXeXNB+QbZu09bBm9kXiesppMJT1Ufx+U
|
||
LDGOJ8R8KQNxMraI/qb2qa1hmaLquCWFYBlb9QL/3LL3zh9yjWohUoYvvoQgbyWt
|
||
UEnGMEZmULQwSu0AU1HGdT/zmyWtPAozINMiTSb73bu/6mycXWHptiHgx2/XTTLL
|
||
FDjHRA4yVxN+xlU/GG+HeYf30B9qzgXjvnRLTUb9SjEn2+FFeHo=
|
||
=lVXx
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
|
||
</PRE>
|
||
|
||
<A NAME="maus"><HR></A>
|
||
<H3>MAUS</H3>
|
||
|
||
Control message sender: guenter@gst0hb.hb.provi.de<BR>
|
||
Control message sender: guenter@gst0hb.north.de<BR>
|
||
Key User ID: maus-info<BR>
|
||
Administrative group: <A HREF="news:maus.info">maus.info</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQENAzNbv/YAAAEIAKdDX2KIjpxW6o7SsGFImWbGYio6yOr7YSdGImkOtjmCdSBO
|
||
HL1gf0XlFtCs3Ieod4ApgRYxT0I+79v7Uon8X6wnAexasx8ZO53DGiaa16Eydapz
|
||
AoSvT300pF5Fg77cDmMBDR59B6R+yWc/bY4cL0U/GnAqIvVACKvCIYalilymBnzt
|
||
g2CJUf0dcmJZjK+bPUdRvrjLVM5oAG6Z59wTxK6S2mEqzkwlQSsL7IyqrQdzqtac
|
||
pyLoT99DzhT/PdMveNgmpUwjYJ25sIDdYBznEQZy+qG1sjLN8/o7bvtsEHzyehxi
|
||
F8TICHvL3Fbl50FT5Dmq64/QvPlAfTCxujOZVmUABRG0CW1hdXMtaW5mb4kBFQMF
|
||
EDNbwhRmKbXRMOZHkQEBc20H/3wRpKmWyaiYAxOrNxcxdI0rmjbTS4VhMpNIxNCP
|
||
ABcmGodY4BivqOxCMrTtPCfYbb+tOJ7DbTT02/DLcrKQR6sroN02OlH2mCwScG4o
|
||
dVp5fqs8uAWf7N/jqkNg1u5AuCBw2UqKEgeR2zfqEpoQrP+cjPjTuTiydP4A2buH
|
||
IrxlaD/rZeQdGVNTmcPfdPrUlk3XpcH3K8WhZKRm3qJdnNmWNlgv+k7kCisggoJS
|
||
N2Br55Q4p66lhzXZdyovvQyWNRKc74K29KdYDVvKepUPTBaC2fE4o/Dg/ZBXB6aC
|
||
oMjt9/XJs2g6OqdZgJV8MApWl/7PgsTP6rLwMSNnUbZ3DvaJAFUDBRAzW8H96B+E
|
||
1tFYtckBAZ4IAf9GfY7OfRZqeX7Z+g8ecGeOB73mamX+XSJR6UpxoSYAvSic0MKB
|
||
Mokj6GxmtqkIH9ir07+HRAIqPu0Ie3TWjJGPiQEVAwUQM1u/9n0wsbozmVZlAQEM
|
||
Fwf/UVjaHNOXw+UVqayhlRNFSTYr78XUYTfQ7bpdK6M2y49BmiGXYX1zS28x+ViI
|
||
P4vgevwaN0rsg4T0vY5LtZ6cskVmAYSwEFBMmXt8aFD03CLhZ+wJdzANFw3sR0Gf
|
||
QhCtJrpHViDq/8ymWry44sPE8cElOBLASlemfD2oGWojdc7mWCwEzmM0iaHg6i6f
|
||
d7CGvLpxR2wVi5/r2L1IjtryTBiFSK5rYot3xIxXNzB2Dp/QAO+1TNH6uhK86xiU
|
||
Vjsoulzlf/R7kEMuI/RoEKkbkQXMCX58SmbmozKhz/3QBGO1FBGY6YUTAkW4OQ8P
|
||
eBRlXg0r3A8/FtQPsgc8B7LoaA==
|
||
=dtBe
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="mensa"><HR></A>
|
||
<H3>MENSA</H3>
|
||
|
||
Control message sender: usenet@newsgate.mensa.org<BR>
|
||
Key User ID: mensa.config<BR>
|
||
Administrative group: <A HREF="news:mensa.config">mensa.config</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2
|
||
|
||
mQCNAzQBxN4AAAEEAN4bQ5GC50zfc6sg8iibYLoyzz5vrGkD6ZRSHuLK+mfYgD7W
|
||
SBsbbH30OepVi20uDZ1s6yGRiy9HiUFNCFXEPFRvLVKkL6pMorbhYbKRH0W2zq+z
|
||
6/uyupLZ0UHZfOTJcCQ47sobujTrEqH9Wl82sxFA4U8+qb/xcWYVjBli3m4NAAUT
|
||
tAxtZW5zYS5jb25maWeJAJUDBRA0AcUIZhWMGWLebg0BAWW9BACpcRfJuO+VYw5n
|
||
oVvdja+nZZzQUtfcdQd99MbvyUuNltiXTCI3qoqoWbHLSv/K1OkYJOhOAaZZJKTs
|
||
IZXhg3ri+i9BVPI6xcF3aybTDZvVa9qXiXi33FyOk9v4CKS+duhY4dp3mSxWutOA
|
||
rI7bauB1PpfxxOwcHbx4Wk+Tdx3H0A==
|
||
=0447
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="muc"><HR></A>
|
||
<H3>MUC</H3>
|
||
|
||
Control message sender: muc-cmsg@muenchen.pro-bahn.org<BR>
|
||
Key User ID: muc.admin<BR>
|
||
Administrative group: <A HREF="news:muc.admin">muc.admin</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAjPdFSUAAAEEANgr0q6olWHFlo7LA35bGqMt8vFjVpz00CdHmeHDaGFX4W0D
|
||
dL8dEPIGbk7Y5KQ+e2F9DBgK0rhIdMWeya1/XRGMTfJAgTic+o7TNl3TC2bemJsC
|
||
P075T4WTc8m5vUCqn1YfK392Cp5GC3qA7PByygJxY/TZ12aFcvFYi875Z+npAAUR
|
||
tAltdWMuYWRtaW6JAJUCBRAz63X58ViLzvln6ekBAaAmA/4lN3dIZqtJT2ADJEZm
|
||
4HZCLxo3oYBiWQlJmWG9lUIIikN9hg1mr+GhiAls0/bljBIo5gRiUuwAc4tMmKID
|
||
rHZBGiDHNmcEBySEGsdcwzCbbfAoH/pgRqabTy4aYQeFjv1qjH3Fjp7NSWrQmhtu
|
||
LHu79OvnXqmWyENrXgcktYhnOA==
|
||
=j10k
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="net"><HR></A>
|
||
<H3>NET</H3>
|
||
|
||
Control message sender: control@usenet2.org<BR>
|
||
Key User ID: control@usenet2.org<BR>
|
||
Administrative group: <A HREF="news:net.config">net.config</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.usenet2.org/control@usenet2.org.asc">http://www.usenet2.org/control@usenet2.org.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2
|
||
|
||
mQCNAzPZEIQAAAEEAKuy+mro1ThpP0nGygiXRQs0nc3I63FeYz9UCfwJAzXQkiT+
|
||
9Yj7BtJn/+BqcLjdX7Z9qs0YNRZ7Q5IXr76x82wbKsNSCnO+tJaOWOD0KoANjy9P
|
||
+wzp/g9ge487HfRnmzhtiHZa4PvE1bV+/LEp2pDp0nYq5v8ox+/CdBG5NbG9AAUR
|
||
tBNjb250cm9sQHVzZW5ldDIub3JniQCVAwUQNA6Sau/CdBG5NbG9AQHBrgQAhC24
|
||
8jyPuReG5KUvRbtiNq3f8bRDMoWLWxjfbl/8QkP39kiKEtUUEpRtHvu8HnkIsRew
|
||
WC3cry+DCKWiLGcsSvlIe5SgNfDALpel92on1s2dyYApHtmMAne9L6OpMVbqs9I9
|
||
2twblFEY3Qug5UOc3WZthNVv9EZ2VI6ICG0U+wiJAJUDBRAz2RbTKFOLDT23eyEB
|
||
ASN9A/9s49/Bckh0UDYSwVukvdTMUE+cVO4/rAd0pILhEpCgHBmeqg+Uca2ua3b/
|
||
hswjK8AJYjc3F+n4L/BbcXOLeMWQI/QokCoSksKMoMGkHV3S3F8nB52v+TLbwkKa
|
||
6maWAryax2qpyoYQH75v4SVlHjDhis72KvcbjzDppdA32VHtOA==
|
||
=fKKj
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
|
||
</PRE>
|
||
|
||
<A NAME="netscape"><HR></A>
|
||
<H3>NETSCAPE</H3>
|
||
|
||
Control message sender: news@netscape.com<BR>
|
||
Key User ID: netscape.public.admin<BR>
|
||
Administrative group: <A HREF="news:netscape.public.admin">netscape.public.admin</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzUr0q0AAAEEALm8W9QYzLx6rYGB5C4tDWBH3/lNBSuDUVWyeL106QMfSaFL
|
||
ZTLjwN2e9oQgssv9MLQrTt3tJ+X9L+SVAV/ZQohIslLl5aQR5rFcgqze/gHtN31W
|
||
QOPWW1NyrppzRvmdzYIEEfiX5i1Q3B7UGY/Iz+Gc5l4wyupsuiGTgw5yp3l9AAUR
|
||
tBVuZXRzY2FwZS5wdWJsaWMuYWRtaW6JAJQDBRA1Pnc+IZODDnKneX0BAdzCA/d/
|
||
Mx0fvxTowDoxEJoRDqrq1UWDUOTJBPgyZZY+fS64dgwSQskIOH0EqZAjPN56/oZB
|
||
f6McQIIrd1hqrUf+VN6FNpBh55MuY/uKAAAREPXSSkugBdbThyJWsFDmsBPJlkLG
|
||
ornEbFt2TdPqmm2HbgoZ/jynYPLuE2h5LzHl4+a7tC5uZXRzY2FwZS5wdWJsaWMu
|
||
bmV3c2dyb3VwcyA8bmV3c0BuZXRzY2FwZS5jb20+iQCVAwUQNSvSrSGTgw5yp3l9
|
||
AQH6XwQAiJAWUpyA4WBKaBU3SfeMKG4Qk3gmuunCw4JPPSEqInCFQpxp8fykXS72
|
||
qe9MsLEAvTdMRpmHe1Zs24yRCNLaUG5laHLicARESBnI9D7NdR36CBL/yp5W023T
|
||
o9BLIu4RxfurDsFkGayl64s4aubgJSUgAORgvqdwxsaGpid7FJk=
|
||
=4lmK
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="nl"><HR></A>
|
||
<H3>NL</H3>
|
||
|
||
Control message sender: nl-admin@nic.surfnet.nl<BR>
|
||
Key User ID: nl.newsgroups<BR>
|
||
Administrative group: <A HREF="news:nl.newsgroups">nl.newsgroups</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzLS7GkAAAEEAM+9XI6apW0uhXWIoWDPcRxwRYU/94rxETu0OHrPqXTSQt8D
|
||
Eq/UyrZ3eW7AsDG9zsC0zAVjgO2MP+N4+5fcwFtr/sjbaHGbX0j3P51w2LXqWoxM
|
||
Mm2EcvxC8HqIVE8Z/1Wc1K2wvhrLEzH90injzWD0nTT4WFVXYAjaI3Yj6bOpAAUR
|
||
tA1ubC5uZXdzZ3JvdXBziQCVAwUQMtLsagjaI3Yj6bOpAQEL9wP8CfsFzW6QdW9w
|
||
Ofq5EbWPa9JQ70dTtbFpaPKh3MEcv1vpAKlCrmwpEQ0cXTTgYn02VFSWueBI/69v
|
||
iYOh92BD3+k6Uyku4SkmnoS99H3AfMCwpWsZzgqVStcJF/Q76KCDBHjJ4KHOrR01
|
||
sN5wP5ohSRj/0ju05BoJ3WW18xUI/bY=
|
||
=mqDR
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="no"><HR></A>
|
||
<H3>NO</H3>
|
||
|
||
Control message sender: control@usenet.no<BR>
|
||
Key User ID: no-hir-control<BR>
|
||
Administrative group: <A HREF="news:no.news.diverse">no.news.diverse</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.usenet.no/pgp-key.txt">http://www.usenet.no/pgp-key.txt</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzOtT6IAAAEEANcYtxheOaDSDpvo0OHBEh1DbCCrp9ReA3ycwyrEzWluhBcz
|
||
P3rNz+GCloCvzFXeuaHD8i3VbhPeYDZwsCNOCo55WgKfQaWTD/XG2b29HO+FAzb8
|
||
Dccyp/NINfSquvNmGEcbt487Hb1lh7YbCvCJT3ho+2ste+fedTdnUOEHWSZJAAUR
|
||
tA5uby1oaXItY29udHJvbIkAlQMFEDOtT6M3Z1DhB1kmSQEBAloEAKJuiI2Aqz71
|
||
P/07190P+/xmItxAbT2Ha7BfwRXnk2cXy1FKzj/412Ty4NCY4NOwOtqur43SnhqZ
|
||
2wXYaLwCfMO0JVcZ/SpN7VrwldwYiezb6MdpSlUhJ7MeXi3iJlFd3cbM3RV4gxD8
|
||
rvYXtGzitKrFBLMhWFx9KTpbSfQQvJBo
|
||
=cM7r
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="nz"><HR></A>
|
||
<H3>NZ</H3>
|
||
|
||
Control message sender: root@usenet.net.nz<BR>
|
||
Key User ID: nz-hir-control<BR>
|
||
Administrative group: <A HREF="news:nz.net.announce">nz.net.announce</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzNYhVkAAAEEAMtQi97id2CiV5TFAqB0xWP2S+4+dEx7lqvh/yXdAmMKHgUH
|
||
UFckf6+Nm62JGjzAvInoKdRN59zL1dYoAB/ZHzthWOlOaleGWM729txFlk6JBuoW
|
||
A/esv+P0BmG/RslIhp7Cyi9oySdFdQvUzd6RFBybJEC+Q0DCvvsII0K45VLFAAUR
|
||
tA5uei1oaXItY29udHJvbIkAlQMFEDNYhVn7CCNCuOVSxQEBi/ED/3eZE6LDVYgA
|
||
IlGgKn3jXK/vECvE3URq9XKdsBQovxEJz1AQEvhJuHzjap5JfbUTqqITZMfmqL6Z
|
||
IOZeCdGGrKw/SqFRM5Knq1Km6uK2D84m2n2zepsvqHb4IDY6j03pZJAd0r2EAMV+
|
||
QOVP7HJ8qn7hgFSiZUuu4Afr7v3K2qfb
|
||
=aND1
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="pgh"><HR></A>
|
||
<H3>PGH</H3>
|
||
|
||
Control message sender: pgh-config@psc.edu<BR>
|
||
Key User ID: pgh.config<BR>
|
||
Administrative group: <A HREF="news:pgh.config">pgh.config</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2
|
||
|
||
mQCNAzKkdTUAAAEEAMJVCGgsorYtryCzGKYe6tTv5tgE6l4j3eKkYkdn37icoFAx
|
||
VANFdTHy/1e5GQJxMcnDV3610NQNSXE2sTc8br2IBYqbt7XkyQ48xzW6/qdARQHu
|
||
b9cp0epIKKOu/4Zguxw+hkLyN4leziO1ts1ThnV2Tkaixu9+BpgGy01AM7MxAAUR
|
||
tApwZ2guY29uZmlniQCVAwUQMqR1aJgGy01AM7MxAQEYbwP+MZRjtrY/wiayMehw
|
||
KSDwXZqHh1stPOu/Rh8msk7ebeq4KdnLIgLinwcWZM1v4+ktww4TO2OKXouIVKtL
|
||
YTNVLYAF3AAmHee00XFDaaZMIOsPfEwr+P4YUjLvxPfj1IEaEQXpODQTLUCqRYZ2
|
||
AupSOzmnD4HwwDt5Q5/1BosAg/c=
|
||
=mXnj
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="pl"><HR></A>
|
||
<H3>PL</H3>
|
||
|
||
Control message sender: michalj@*fuw.edu.pl<BR>
|
||
Control message sender: newgroup@usenet.pl<BR>
|
||
Key User ID: pl.announce.newgroups<BR>
|
||
Administrative group: <A HREF="news:pl.news.admin">pl.news.admin</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.2i
|
||
|
||
mQCNAzGvEY4AAAEEAL8clpC5yydhkMN1ppivfj3E6EIyZtntScjuCyI+RwpvLf9o
|
||
So+FLbiMmjjCV7BNjds7c1yaDMPDFetZlqEYKof5Q0QK2bDaaou3wtnDesAXqrde
|
||
K24GURn0N2BYWR9sEFJ4bwn8fudHelFcAXPt24lI29bu6dX+LddKTteDivjtAAUR
|
||
tBVwbC5hbm5vdW5jZS5uZXdncm91cHOJAJUDBRAyc5r/10pO14OK+O0BAWq9A/0e
|
||
So5/56x6hkT0to92FUiIbcoHF6J20sa4edDXbzTHZTvNJh3K4iSBwkspMcx8AWyS
|
||
36ckftXsZP2xRTj2Dk4xgLLCcFBjPHt7q5ysa8dChkgEu8770OE5atbQZorzz757
|
||
xpOgKmjRXLVbzt680Z807jH/zOo+BRby3ZMJFtGPyrQXPGNvbnRyb2xAYWRtLnVz
|
||
ZW5ldC5wbD4=
|
||
=n+Qy
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="pt"><HR></A>
|
||
<H3>PT</H3>
|
||
|
||
Control message sender: pmelo@*.inescc.pt<BR>
|
||
Key User ID: control@usenet-pt.org<BR>
|
||
Administrative group: <A HREF="news:pt.internet.usenet">pt.internet.usenet</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.usenet-pt.org/control@usenet-pt.org.asc">http://www.usenet-pt.org/control@usenet-pt.org.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 1024/AC2AE025 1999/02/24 control@usenet-pt.org
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
Comment: Requires PGP version 2.6 or later.
|
||
|
||
mQCNAzbUOhcAAAEEAL2eYnW0UlnRUQ+hqwvArjzPydNLz//6gUPDGm4iNp01rBGN
|
||
lyaRu9EwW0+bfn35b3c0Ghf/BWBYCs57bdB03wbt/OrvMZiFV3hO5ocB9UsIIBDS
|
||
i0sgGvX6+nm/H0eKTT9ROO1dwDwwQisVhg8ILIKtbm8etzSlA1iTeAWsKuAlAAUR
|
||
tBVjb250cm9sQHVzZW5ldC1wdC5vcmeJAJUDBRA21D1/WJN4Bawq4CUBAQ40BACx
|
||
yelM6H1JcmM2vR4lK263QoKi+G9Oc1cAlTwNuqNgamSUBNLnkBCnQTx0dvoq8hiV
|
||
15TZhAiYctuFcHmjCPfAhNZJlChFJKQbDHKbgp3uRrEWqs2SjVRBaiZ5OsTMO9od
|
||
UwXsXE/Srvl8QPuhC53jXcy3qIPiPygJu0L3EJ2e3w==
|
||
=qNRP
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
|
||
|
||
</PRE>
|
||
|
||
<A NAME="relcom"><HR></A>
|
||
<H3>RELCOM</H3>
|
||
|
||
Control message sender: coord@new*.relcom.ru<BR>
|
||
Key User ID: relcom.newsgroups<BR>
|
||
Administrative group: <A HREF="news:relcom.netnews">relcom.netnews</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQBtAzXun1sAAAEDALof/xCxlk+clO3w6+s5FYc0gTK4AT0RhBqUULylQ8lB25Nm
|
||
tkfre3ErB9hen3+/RzbsZpzteDY03PWo9dG3FFrrYw2Ro7XfOoM1tR1fmsdzwzfz
|
||
ovUF4fP3l2K315dhpQAFEbQRcmVsY29tLm5ld3Nncm91cHOJAHUDBRA17p9b95di
|
||
t9eXYaUBAZ1WAv9I98BzsnJjbY/fslbarT7oncMQIOzIpaGj5oqf56UgkIfBoA/u
|
||
bG4FGbimSqgTIVD73ZvAgv0s5P99UXZER97gIcF+lF+BOcmekVF0BvPVI9i40/oz
|
||
EoVeLqrXELM0Gvs=
|
||
=U3wV
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="saar"><HR></A>
|
||
<H3>SAAR</H3>
|
||
|
||
Control message sender: control@saar-admin-news.de<BR>
|
||
Key User ID: saar-control<BR>
|
||
Administrative group: <A HREF="news:saar.admin.news">saar.admin.news</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.saar-admin-news.de/saar-control.asc">http://www.saar-admin-news.de/saar-control.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Type bits/keyID Date User ID
|
||
pub 2048/2C017393 2000/10/29 saar-control
|
||
control@saar-admin-news.de
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: PGPfreeware 6.5.1 Int. for non-commercial use
|
||
|
||
mQENAzn7czcAAAEIALihpRXfA5jSwb3FN1DGch91B2QaBsAttd00Ean0Bkhjp0I2
|
||
4JI1Vlx+iRzZUxvNaKwvCqE9yPWI6hI5mEXdsh0XhC1J8nOLTx/fE9YmUgw/tcqs
|
||
Wc+C15ls30mZSpfHFXLriWcG2TzTBquNiXo7XMGrS1w7ArYbQ1JngDjdhodwHKAB
|
||
hcjZnpmn9LlWvMzR//CA+sLgq/LdP7hEOowQigHB4f5kB90o13pjTwp9+lTV1G8s
|
||
KHaLI4v4b3Hy+r4NqI/8ElgsQ4Q8an/SiQQFjWF669WW5mzIaTKyxp/bLDE2YKPo
|
||
sK9cwnBChonZyw/NrOX6lb1P78LeSmtLDiwBc5MABRG0DHNhYXItY29udHJvbIkB
|
||
FQMFEDn7czdKa0sOLAFzkwEBEbAH/R1atdJdeJQSgJV8M6CcWNEoChiiS1MvEU43
|
||
zbsSlBhnepICut8a2rW6zzk6eB/UzLVgsKmD2iIQiaeOfW964+gXMSz9YZSoKVlQ
|
||
c1cvLgK52TIExBUvl55zveleS5zd6DtGqpCd3N2Mj9np7z1q1NYvUjCpWgWyjN8K
|
||
Vpn7CT1d1PnMjSk6tCbsExen3sLeVBbavYCq9Pd3x0kjO6dYkwXjsJyzPXqypsYl
|
||
iuIpEIo7vRxE2HQLNKSUeuVViNMcdM1Q9YGX6DeXxe33PQroO7salZFSkLjV04Bi
|
||
PzNlVz2AqPb+LqE+QiZ1W5rA44DCHQbTvcRPErHvyU7E0PN5JhW0GmNvbnRyb2xA
|
||
c2Fhci1hZG1pbi1uZXdzLmRliQEVAwUQOxdDKUprSw4sAXOTAQGIdAgAnM7xFbtC
|
||
Auee00ba5ZKwsekjfQBNv8tov5ppPkWb66ZjzDqsQl5bVb6PwnoIamztnHagjGNI
|
||
IjLbIsnrWnOPt1cfgerIY/kYot2Mru/0rrFRm4NRdAXbqKdY2tJJjS3E0Q00HNAs
|
||
uEWP9DH81jxp+5JCek1lJluxrC+9wYylcg4DzaaYv2jCX5hDcztsk9Ns6c5uAuXk
|
||
8j48vOm7poVTSFh48HKKHo+/mPvRQWOykZnfuwrJxe21ADKKrdneNLh9AcHP8qhY
|
||
7M+zHBwwm6rXxm1dIsqS7zWZw4C/aRirG0S45xXVmBLB+B/rVdqBa4DAIXS7qUuK
|
||
Wmd4azaZgd87aQ==
|
||
=vqxc
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="sat"><HR></A>
|
||
<H3>SAT</H3>
|
||
|
||
Control message sender: satgroup@endicor.com<BR>
|
||
Key User ID: satgroup@endicor.com<BR>
|
||
Administrative group: <A HREF="news:sat.usenet.config">sat.usenet.config</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3a
|
||
|
||
mQCNAzHtkkUAAAEEAN9sqrBBgcjuaG+mWamDYbOz0GARQhY7dli6m6c6zBaAhvZV
|
||
i2CBy4deMWF5wAWY0SPFTSeowZrkI1fCIFwBt2XRdEj8YY06BpsXYaajvD10yppg
|
||
Lx70y662p+R7pK7GAlbsaf8o/y31pzbFssJAWA8GGkFbnpRN2gv3azuYaQ7pAAUT
|
||
tBRzYXRncm91cEBlbmRpY29yLmNvbYkAlQMFEDUtq30L92s7mGkO6QEBh1YD/i56
|
||
+SdS9ab1zdwPMCOLkuAZDqCnO72uCPlX5jg787wgVZ9FgsXnQUhKJWEdsi9lLn1y
|
||
K0NYe00/N54H5R0LEYuo0uN0aGfpPnVw6wq0Zyd1Bu9mICcll0GYB2p3NkeoAWg5
|
||
D4A1uRxI4iBKLTMB4uJUfpitMCRcRgi18CcTlwEg
|
||
=ziZy
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="schule"><HR></A>
|
||
<H3>SCHULE</H3>
|
||
|
||
Control message sender: newsctrl@schule.de<BR>
|
||
Key User ID: schule.konfig<BR>
|
||
Administrative group: <A HREF="news:schule.konfig">schule.konfig</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.afaik.de/usenet/admin/schule/control/schule.asc">http://www.afaik.de/usenet/admin/schule/control/schule.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
Typ Bits/KeyID Datum NutzerID
|
||
<EFBFBD>ff 2048/21DBB2A5 1997/02/09 schule.konfig
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3in
|
||
|
||
mQENAzL9vYEAAAEIAOuQU8rD71soRIS6pcl4w/LbGBbfKMwDMdJxSNZTAjrLfZqB
|
||
9i7hUK+YsrYeJbjEE08OydBbSpFTAdxCPF1pXtY2mNtl2EqSdrrCr6Hfkyy3u6uU
|
||
djIC2DKOTSVVzmI4pK9knmUzUV/AayykRpZ2z7vwbM/CVZoQmHHrum/y1+qGySe6
|
||
rm28dW06eXP9uDa9AMSNhso21wkfA7/Q4zx+ovBGqxP1HKQOtUZlkXQPrWB3wkOf
|
||
JkxBmyC/PnwhHwdUfYeQtc7LGG5DIUEAI7u2sODmrNwo0k2l36/3DbfWV2qWovaZ
|
||
/JADHsyAw64Wg9J5aE8GxIKDxdHN2GBYViHbsqUABRG0DXNjaHVsZS5rb25maWeJ
|
||
AJUDBRM1XI95JaS4h9dc56kBAcKHA/9w6IR3n309W6EhAREsQVpediQQvWYIqX/j
|
||
Tw/Ie/vNFHLXOd7xNKLQHkXtYvJA6E0MXvum6XnGmg2bp0uqyNtgQ6ZBbMMCeuNm
|
||
78OI29cG77ldyYwKzmz0wRQtlvirWY/4JPZH2dMBgC4sAnPiImW+R6UfsisGcPve
|
||
CScx5kKNjIkBFQMFEDL9vlMJ3HA5OfN/XQEBC8IH/jtxwf/gPU16x3Rqzb/mAiLF
|
||
9HJdBSL+plLr0SIsdr38qF68+5Q41viDODGiPIgaA5k2cAOCCD+7jkQaLTWFauIL
|
||
du4+1MroEPsjHAfGZDdvGJbT8yqsvgU2FeIdiB86REGsQ+WXRhEfgGm4lQ6pPk0y
|
||
krDr4OD+fWDMefZlHIqfChBN68ltJLsG/6cLzpyuUTVGcg11Pfvz7gkTQ09iZFIa
|
||
1LfbiWTv4X7wrw3aynMg4aF4Yp8kBr43WXKNHq1B136ycDg5SmB0hqdRERsN/A6H
|
||
xA6qJwLi3mQR6Wo1+yrM3whyutKrrLISKsn4le1Gu7m5Y8iLENdiVXfCf5KooZ6J
|
||
ARUDBRAy/b2D2GBYViHbsqUBAY6dCACj7nCSHv6aIHErEy93UFUsTqq2vEWLLYPd
|
||
VBNDaVTf6VCbmCaaXHvMHIBctvLsmQsUzPf8CedkbsW4Zfp2yvfZdvRsx0emLHRP
|
||
nIsbwuthetOUD2nmdIWFS6IN7QBGRpHoDjDTwpJb4wqM+kvZvJSwACUeD+bLbhGg
|
||
DyxsDxinervegdCrksdihQGc/IbngLh8sEN+Fx/JpdlJa0Gp29BblqgTbP1J5yK6
|
||
XbgEIUedU4kxXXU5yIqfIfnuLLpajX++3ieZ1++v8o1cRJVo70SmhjMXemRgseCm
|
||
QoYUm9jMBpTIHc7b60fJgSlqynBoXBnpsnzVwL8nGnqtCsN00jGL
|
||
=Z0nI
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="se"><HR></A>
|
||
<H3>SE</H3>
|
||
|
||
Control message sender: usenet@usenet-se.net<BR>
|
||
Key User ID: usenet-se<BR>
|
||
Administrative group: <A HREF="news:se.internet.news.meddelanden">se.internet.news.meddelanden</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="http://www.usenet-se.net/pgp-key.txt">http://www.usenet-se.net/pgp-key.txt</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzUmnrMAAAEEAN6MDnKOZVC4RJgu68kZReudVhGe2NWphdIazagz5jBjs68M
|
||
EQMhoHF4ZJzt7ubVEU9qz7w7MvIvNFIvQFYlGgNe/1+TxtKNeZ1Lwt4u9g33K7im
|
||
XRUPWjp4Ft43UREFm/asuBZmKHq1dsPLyDADP/lXi+Tzxc55s+whZDvtu6MBAAUR
|
||
tAl1c2VuZXQtc2WJAJUDBRA1Jp637CFkO+27owEBAfaCA/9tH+xo6cIdp8CyEyFd
|
||
2NETQ43X68r3NeoFJhNG4LsFHqnQPb3OfqyNTBCbCNNGYn+KJ9ngnlVn0uPIi9Kv
|
||
81fDeJG+sHeXENXsjDfD7gpniuPwpDSZgph32WHXYCwIWbuM5ABDW59SYIPi62Vc
|
||
AYlctrTeh/hts+u5tGCqNMX91Q==
|
||
=ejWf
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="si"><HR></A>
|
||
<H3>SI</H3>
|
||
|
||
Control message sender: news-admin@arnes.si<BR>
|
||
Key User ID: si.news.announce.newsgroups<BR>
|
||
Administrative group: <A HREF="news:si.news.announce.newsgroups">si.news.announce.newsgroups</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzNDes4AAAEEAKCcPqRR5rQH0bbUd8tgSMHwdL8anJMb/6+MoYSfgJmmjEZS
|
||
hOh8mp2aUK5mtAygDtT+uEhz1Aqz5gRKEqfcCyweXAs4Aty9RjJIUJrl3OHqny5c
|
||
BkXXAIibaYli3tx0tzp0vDDFXZeNcipkRcSaoPhltjijKfuVIu8d3lZDThlVAAUR
|
||
tBtzaS5uZXdzLmFubm91bmNlLm5ld3Nncm91cHOJAJUDBRAzRDJ7DHODXHe4jmkB
|
||
AS5/BADN072wLLRs6MZ1imSSfxh6ueCJXxU078OeJmQtYfSlxwJ/dQs862eTY4Tu
|
||
bhKZUIRgagtrN+rtXxFf4lFVazOzDvpEase50tL8r+PnpZZbwOBXDliU98HP+oN+
|
||
TcewX2pTA+163gP9WzBiJtAN67zT4Wu035ECcUYal8J5+XhinYkAdQMFEDNDgbN4
|
||
4MaigooJfQEB9F4C/0PP4L9GRW8Pq8HXT8H0FPFDmI9ZLAzym3ZPFh2Grtgnbc9H
|
||
KOD6Rr0FWNL/mtacUajBsHVwUibANK0AUo8udCm80QIR7t4axjNZlttVvKPCFvdp
|
||
9VshQIWKpxV6qWBhFYkAlQMFEDNDes7vHd5WQ04ZVQEBAPID/3VY0GooUrJQu1Rn
|
||
zSxGNg1qZwuIEmsD/GAinE2bNKbXtqF2pm2DNSn2KNT+WG0uqss4yQO3VmXs8l/s
|
||
XEHWeEyF/qA+xTSrQIpJW3fLtsroMTuc3d8sZ8oz0ReBenBGfHPPp1m1q8U4rLvD
|
||
Xf0Gybil7SY5lHnP5GPI9U9vHcd/
|
||
=EWB7
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="uk"><HR></A>
|
||
<H3>UK</H3>
|
||
|
||
Control message sender: control@usenet.org.uk<BR>
|
||
Key User ID: uk.net.news.announce<BR>
|
||
Administrative group: <A HREF="news:uk.net.news.announce">uk.net.news.announce</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: PGPfreeware 5.0i for non-commercial use
|
||
|
||
mQCNAjGL0cgAAAEEAJ6p7fQHn139U9zQawLixrExOUrkFhi1yLb8m8fLxmKTprKn
|
||
ZNM1nnxMSbRyO8vXohXKKs4G1U2jTpaCkSRrbCiJ5VxWB/B31E/p/vrBXqqQ2amq
|
||
3gb4Df9DZub0ZtOhHTF/pPjQmXvAv08umjZWpYlXRmUHBlBhMmOfGXkh8vHZAAUR
|
||
tBR1ay5uZXQubmV3cy5hbm5vdW5jZYkAlQMFEDhCcUxjnxl5IfLx2QEB6e8EAJDt
|
||
gIkNXdLiyL07lgDBr+Wq/Zckgm70JhNaHWxLPqckMLOJZGPFKlOlKA6W62UrwDWI
|
||
yktEosLHd8whbPCaMOSbIOX7mmTrIySOKf+rBxhFLlRY+fAQ4h2oEyEWYhJ80wiN
|
||
GgKgMJC+UqQD/ylMB1VcCsTYuZWEQ18ldKgtTsOZtBc8Y29udHJvbEB1c2VuZXQu
|
||
b3JnLnVrPokAlQIFEDGL1R1jnxl5IfLx2QEBF/gD/ikHjpmJuG10X3PXA/yciZ0r
|
||
qqVo01/4q5yy8vHBGGfopfxpqrjGnNtUV4kWluNo0/1uYZm1o7TeqHI6Siv/yWQp
|
||
+QldN4nED3RPauqCtj5cubmMgryXg2pcCBiY+brHWEr0tBV7cSSOHFipwM55FA22
|
||
ctQzQ5nIPZQ+KPC3WjdZiQB8AwUQMvCcUq1e6k0sFfGpAQE6nwMzBdaFclXiv48C
|
||
aMXBUG8S3bLUtx3u2OBajzpe8G2nJlCKYkCY482p2MjtfCDi7+eYDfqgKMDoGrUM
|
||
zSfMraDRyoXjNC/nIKf1+R2EFMyaLoC9FWggCKTov/I/2BE2+grvQ7ewQSWEUokA
|
||
lQIFEDGL1FGemw5PLx059QEBje0EAKx99yOZ0zQ9FjibuEBStP8t0BCsRNqkrVjx
|
||
O513RBXecgcdXdv9hWn+8LNRZx6JLHv/ZpWsdGXqP3oiqj+LRt7WpHnZ55He/njx
|
||
5DAoPAM/TjgTk7arazSjsJuFhcTP7gHitLDoHxVkUfdLX8h4HH9LWhEnrWEx82EY
|
||
/29z/xQ6iQCVAgUQMYvTeKSiIc7jUXyJAQHLNwP/Qz+g2RRsuSZrJ9L0HAVPLcml
|
||
oAEGOMFfYJDM/mvxegAYzL8i0HGFbwTH/+E94WSmsWAx1KZ/Z2DYKdI7BUaS8c09
|
||
a2OtqOEbCd7QBI37seyxG0rTWNpuE0ZXBo0eiQBg37oIW+Faf/tqJQZnALVsV5LD
|
||
Kcf+6+MhgS47HWJ6ZjQ=
|
||
=iInx
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="un"><HR></A>
|
||
<H3>UN</H3>
|
||
|
||
Control message sender: news@news.itu.int<BR>
|
||
Key User ID: ungroups@news.itu.int<BR>
|
||
Administrative group: <A HREF="news:un.public.usenet.admin">un.public.usenet.admin</A><BR>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQCNAzM2VakAAAEEAMj6+3NSJItwhqTJHMsNlGIBz6FxzTohNweqqoIuHhx4Q0sL
|
||
YP33VAhABmoSCOsbmQUaWruRoO2Xqt+2a+x4klZB9PCIk/reCqS4qNA/Va/6qi65
|
||
HIUniiSu3JrineZUjZ7uv65Eolfm7aUi/BpQgw3ymW8Jglgq45lzddlE9iqBAAUT
|
||
tBV1bmdyb3Vwc0BuZXdzLml0dS5pbnSJAJUDBRAzNlWqmXN12UT2KoEBAb9pBAC8
|
||
ppqj/r373Mb5ATZ9+gXpoBk8BIAztSmK1sB+5R/K3JeDFSjKHNnSBjgMLn3KzXHW
|
||
bJ9I6BK14AbVQ9Cdbk5rzuoVkUTuuCzi1jbgt9yZKwSeI/bStXOsvUU4Gf2dHqwL
|
||
W4E41GioIMvKYSdymBPAYcVBc/C4PJghfb7B3E0QrA==
|
||
=MdCR
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="wales"><HR></A>
|
||
<H3>WALES</H3>
|
||
|
||
Control message sender: control@wales-usenet.org<BR>
|
||
Key User ID: wales-usenet<BR>
|
||
Administrative group: <A HREF="news:wales.usenet.config">wales.usenet.config</A><BR>
|
||
|
||
<PRE>
|
||
Type Bits/KeyID Date User ID
|
||
pub 1024/86F7AA61 1999/01/06 wales-usenet
|
||
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3ia
|
||
|
||
mQCNAzaTFFwAAAEEAL/I099TKV7a7Ow6vDdvUa4/dHXFfzotYqSsP7CN5mL/AW16
|
||
vXZUQJejnTvoothg9vyTaJYIDHq87ZZS7EFZWR2HszjgmypveAP6QGK1OV91KVyx
|
||
MXMII50S1dQo3stwPpL+HiBVqPyQ51RGhxdlYGLcmdtZnpBvxwfZCkeG96phAAUT
|
||
tAx3YWxlcy11c2VuZXSJAJUDBRA2kxWUQR9KqCtLo+EBAYxwA/0b1XKS9KyYuDXG
|
||
IRIhUbj22F3UCKfpm6yJpV/mOvQB+qyC0AluK2l2LtMRypW/ksZoa7nP7LhugFs0
|
||
sZMrPWySfjoEZMUrES20iwV3o8dDkBx3UaxXPX/6WSB7yWyQifKfECUL4g30RGjc
|
||
Lg5MZ138Cn2jHqt8FBZUrYf35bLHJYkAlQMFEDaTFF0H2QpHhveqYQEBdgAD/2ry
|
||
lk5JKtSYkd4efYg+Z0ap0yme1P94oilrRBx1wFuU324qzh1FPMEKTHOcI1K0WObq
|
||
7BGcY2WXqAfQvxNRw7LImWdR6TJVV/6/R0FR/Eh3gymPUGMqska47MSjN1Np+clb
|
||
PBXxge/pd21j6MJJHwNd860zf/UZIUmsLKjyBfMn
|
||
=p13X
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
|
||
<A NAME="z-netz"><HR></A>
|
||
<H3>Z-NETZ</H3>
|
||
|
||
Control message sender: teko@dinoex.sub.org<BR>
|
||
Key User ID: z-netz.koordination.user+sysops<BR>
|
||
Administrative group: <A HREF="news:z-netz.koordination.user+sysops">z-netz.koordination.user+sysops</A><BR>
|
||
Check also:
|
||
<UL>
|
||
<LI><A HREF="ftp://ftp.dinoex.de/pub/keys/z-netz.koordination.user+sysops.asc">ftp://ftp.dinoex.de/pub/keys/z-netz.koordination.user+sysops.asc</A>
|
||
</UL>
|
||
|
||
<PRE>
|
||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||
Version: 2.6.3i
|
||
|
||
mQENAzKYLZkAAAEIAMnGhSvvCTsAyAuHGnczJma1wWyeFBe/RkpAMSfFA6DDsk+q
|
||
VnTblHXVsAVl7gRjv2DOifB1dw52lvCXLCn+IlKvQkD2/JVYSeTxI9IDIT5Ecws0
|
||
Rf4TFHrPgS8TjZ6WKlvIEAAmb3P64ZaVZbe7+H11m2HFHV4lZiZA6ktKf1kYc56u
|
||
b09ZevKjbFLlgSHt/PY2Xaz8fjP1sSzSfh9m+CNYEoTPp4smrXK6yzeen8gtoLYU
|
||
5JPrMQ3zZqY6bzy8J9ahi58447n+AdATMQEm8G98LZ4V4MD8iJc4JXPscVtC6Zct
|
||
MHa6dQSH/T5oDJmN7ekcraPYvdpaTMWF8NWfcX0ABRG0H3otbmV0ei5rb29yZGlu
|
||
YXRpb24udXNlcitzeXNvcHOJARUDBRAymC4QCdxwOTnzf10BAZu/B/9JldQbFed7
|
||
tndj6vX285FgQKswoDJJdAJft3kLohg8ZkXOVEreLJ/Zhh50OH++mLqHcqTgDi4M
|
||
u2K+KEqxEVaLIDlANUzgy/vtO5atHnQs8n4lCvFLLSx4Wnn2LCZmb+0o69Ap/rF/
|
||
l2JWeg+oOERC9IyjrjnD8IkOJii6k42TbVfpTlcc7S/2YLFTg5tGjoRgjROpkC9A
|
||
BoDy89PcTEHBwfpsPuqFnJ90fcmaIZkZf0uUPCJRpCK9TTbCYp0z8vZZetHbhjiE
|
||
AXoVh6cIWdVwnDiaAE9Z8LvvL3mzyDA3lzDGQuBLtDjw/N0IavbDK47kV+2HYbfy
|
||
NI3ISjZXkE0ZiQEVAwUQMpgtm0zFhfDVn3F9AQH+Ngf/TKExNsoL/iH+9xaM2Z1i
|
||
LbpU17tTntmb/G5tZiPA1XbSCmFnVI8mbe09n8u9JGFco8MGTcshzB/G2DWwE8ff
|
||
PNFBJFjRbiAn9COg1hSHmosK/3BOXIsSXEkBMIbsitrKQeu6S9tNKOMVekYE6TM7
|
||
dN/73r5pGAUv2JBjmQlp3gmsbj8YzczHFcUgXu63wcYMlBBIRHndW7XS9uMTKBOp
|
||
HpefbrB3qU99GOdXNjmN4ufEWsSWkZceIgwcJ02SHlFf/pHv+CCBGXFtB0hDJvk+
|
||
hRPliao6FDCk8unlPClgNotTTtQ6Z3rwKrApJsI7zNHfQpq2UNDeQswOcgjmJ6eQ
|
||
HA==
|
||
=vT5W
|
||
-----END PGP PUBLIC KEY BLOCK-----
|
||
</PRE>
|
||
<HR><HR>
|
||
|
||
<H2><A NAME="Signing">Signing Control Messages</A></H2>
|
||
|
||
<P>If you are responsible for sending control messages about authorized
|
||
changes to a newsgroup hierarchy, then
|
||
<A HREF="ftp://ftp.isc.org/pub/pgpcontrol/signcontrol">
|
||
ftp://ftp.isc.org/pub/pgpcontrol/signcontrol</A> will
|
||
sign your control messages so that <I>pgpverify</I> can authenticate
|
||
them. It is a Perl script that requires Perl version 5 or higher to
|
||
work. It has several configuration parameters that should be reviewed
|
||
before use.</P>
|
||
|
||
<P>When establishing a PGP key and control message sender, please use
|
||
tokens that are not tied to a particular individual. This makes it
|
||
easier to transfer the administrative responsibility when it finally
|
||
comes time. (The all-too-common "tale@uunet.uu.net" sender is still
|
||
appearing in Big 8 control messages because of its legacy in the
|
||
installed server base; eventually it will be completely phased out and
|
||
only group-admin@isc.org will be used.) Please also do not sign other
|
||
keys with the key that is used for control messages.</P>
|
||
|
||
<P>Note that the key you use should not include whitespace or angle
|
||
brackets, because some of the various pieces of software that deal
|
||
with the user id mishandle it. For the best results netwide, I
|
||
strongly recommend that you use only alphanumeric characters, the at
|
||
sign, dot, dash, plus and underscore.</P>
|
||
|
||
<P>If you will be signing control messages, please
|
||
<A HREF="mailto:tale@isc.org (David C Lawrence)">let me know</A> the
|
||
hierarchy that you are responsible for maintaining and the information
|
||
that you would like to appear in the <A HREF="#Keys">List of PGP
|
||
Public Keys for Newsgroup Administration</A>.</P>
|
||
|
||
<HR><HR>
|
||
|
||
<H2><A NAME="Getting PGP">How to Get PGP</A></H2>
|
||
|
||
<P>Information about obtaining PGP can be found in the
|
||
<A HREF="http://www.cis.ohio-state.edu/hypertext/faq/usenet/pgp-faq/where-is-PGP/faq.html">
|
||
Where to get the latest PGP FAQ</A>
|
||
article, posted regularly in the
|
||
<A HREF="news:alt.security.pgp">alt.security.pgp</A>
|
||
newsgroup.</P>
|
||
|
||
<H2><A NAME="Getting Perl">How to Get Perl</A></H2>
|
||
|
||
<P>Information about obtaining Perl can be found in the
|
||
<A HREF="http://www.cis.ohio-state.edu/hypertext/faq/usenet/perl-faq/part1/faq.html">
|
||
comp.lang.perl.* FAQ 1/5 - Availability</A>
|
||
article, posted regularly in the
|
||
<A HREF="news:comp.lang.perl.misc">comp.lang.perl.misc</A>
|
||
newsgroup.</P>
|
||
|
||
<HR>
|
||
Last modified: 16 June 1999
|
||
<ADDRESS>
|
||
David C Lawrence<BR>
|
||
<A HREF="mailto:tale@isc.org (David C Lawrence)">tale@isc.org</A>
|
||
</ADDRESS>
|
||
</BODY>
|
||
</HTML>
|