X-Git-Url: https://git.sthu.org/?a=blobdiff_plain;f=gpg-mailkeys%2Fgpg-mailkeys;h=d9ca25968dff3d540d237b40f0d23704ce1ddec2;hb=a74ec3cd73bf9bde72e28d0663b6daf8a54e649f;hp=c065751f6845c8be5e10d2facaa177820eb005ae;hpb=4b32032b04fe6bf1b6c1aa979f871fcd313e0476;p=pgp-tools.git diff --git a/gpg-mailkeys/gpg-mailkeys b/gpg-mailkeys/gpg-mailkeys index c065751..d9ca259 100755 --- a/gpg-mailkeys/gpg-mailkeys +++ b/gpg-mailkeys/gpg-mailkeys @@ -1,8 +1,12 @@ #! /bin/sh +# +# gpg-mailkeys: mail out just signed keys to their owners +# +# $Id$ set -e -VERSION="0.3.1" +VERSION='$Rev$' if [ -z "$*" ]; then echo "Send people their newly signed GPG key by mail." @@ -55,7 +59,7 @@ Subject: $SUBJECT User-Agent: gpg-mailkeys/$VERSION MIME-Version: 1.0 Content-Type: multipart/mixed; micalg=pgp-sha1; - protocol="application/pgp-signature"; boundary="$BOUNDARY" + boundary="$BOUNDARY" Content-Disposition: inline @@ -78,15 +82,15 @@ fi cat << EOM >> $TEMPFILE --$BOUNDARY -Content-Type: text/plain; charset=us-ascii -Content-Disposition: attachment; filename="$1.sig" +Content-Type: application/pgp-keys +Content-Disposition: attachment; filename="$1.asc" `gpg --armor --export $1` --$BOUNDARY-- EOM echo -n " sending" - /usr/sbin/sendmail -t <$TEMPFILE + /usr/sbin/sendmail -ti <$TEMPFILE rm $TEMPFILE echo " done." shift 1