> > mail# gpg --list-keys /etc/mail/spamassassin/sa-update-keys/pubring.gpg > > gpg: error reading key: No public key
And another doc you didn't read before asking here, LuKreme... > I get the same, and without the path to a file I get the keys from the > global keyring which are non for SA. man gpg says "--list-keys [names]" > but it's not clear which name to put there. Hmm, mine doesn't. :) Instead that option's desc starts with "List all keys from the public keyrings, or just the keys given on the command line". It definitely doesn't tell me to dump a file-name there... A quick glimpsing of the man page tells me to use this: gpg --list-keys --no-default-keyring --keyring sa-update-keys/pubring.gpg And it works for me. See the description for the --keyring option. -- char *t="[EMAIL PROTECTED]"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i<l;i++){ i%8? c<<=1: (c=*++x); c&128 && (s+=h); if (!(h>>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}}