From owner-freebsd-questions@FreeBSD.ORG Wed Oct 1 12:04:43 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36B0D16A4F6 for ; Wed, 1 Oct 2003 12:04:43 -0700 (PDT) Received: from aphrodite.gwi.net (aphrodite.gwi.net [207.5.128.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id B913743FF7 for ; Wed, 1 Oct 2003 12:04:41 -0700 (PDT) (envelope-from ah46@mlz.us) Received: from andy.gwi.net (blake.gwi.net [207.5.142.8]) by aphrodite.gwi.net (8.12.6p3/8.12.6) with ESMTP id h91J4fYo014224; Wed, 1 Oct 2003 15:04:41 -0400 (EDT) (envelope-from ah46@mlz.us) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200310011315.05004.ecrist@tech-con-inc.com> X-Homepage: http://www.nachoz.com X-PGP-Key: RSA-1024 http://www.nachoz.com/andy.pub X-System-Info-DB: PostgreSQL-7.3.3 X-System-Info-RT: rt-3-0-4 X-System-Info-WM: windowmaker-0.80.2 X-System-Info-httpd: apache-1.3.28 X-System-Info-OS: FreeBSD 4.8-RELEASE-#0 Date: Wed, 01 Oct 2003 15:04:46 -0400 (EDT) Sender: aharriso@andy.gwi.net From: Andy Harrison To: Eric F Crist cc: freebsd-questions@freebsd.org Subject: Re: Mail-list PGP Keys X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2003 19:04:43 -0000 -----BEGIN PGP SIGNED MESSAGE----- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On 01-Oct-2003, Eric F Crist wrote message "Re: Mail-list PGP Keys" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > How do I submit my keys? Here's something I whipped up to do it for me. You'll have to change the pgp command line to suit your version. #!/usr/local/bin/perl -w # # pgpkeysubmit.pl # # by Andy Harrison # # Automatically submit my public key # # Usage: pgpkeysubmit.pl [] # # $Id$ # use strict; use LWP::UserAgent; use HTTP::Request::Common; my $pubkeyfile = defined($ARGV[0]) && -f $ARGV[0] ? $ARGV[0] : "$ENV{'HOME'}/.pgp/andy.pgp" ; unlink $pubkeyfile; print qx( pgp -kx ajharrison $pubkeyfile ); open PUB,$pubkeyfile || die " $! \n"; my $pubkey; foreach ( ) { $pubkey .= $_; } my $ua = LWP::UserAgent->new; my $response = $ua->request( POST "http://pgp.mit.edu:11371/pks/add", [ # Enter ASCII-armored PGP key here: "keytext" => $pubkey, ], Referer => "http://pgp.mit.edu" ); print $response->{'_content'}; ~~ Andy Harrison (full headers for details) -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBP3slTVPEkLgodAWVAQG9eQP/ahXJ/79oATaFMUMlENvC4ntfye+mXKDr 52xdeH/8hb3KAWBgyC15Ely9nKtb5vsQKdb0kdSvdn0taUPMF7rCNhvpkiQKVpsL Ovtl9F/uZMKoZ0V3FJZ4Qj5AD+HkS4FAKAi0XjLyRpT6WqNrp5KE388Iuiq5+Ym4 H8/bvrmuxcM= =aGcv -----END PGP SIGNATURE-----