diff options
author | Peter Palfrader <peter@palfrader.org> | 2002-07-22 02:18:30 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2002-07-22 02:18:30 +0000 |
commit | b41df90904849dac46beca728bd23f277e180ffb (patch) | |
tree | cd07676d3acae734def9308d0e9c07e3b7f977a5 /Echolot/Conf.pm | |
parent | a21e00e8907f6c21399ef797f9490c9402c56c7f (diff) |
You no longer need an extra Mixmaster installation for your pinger
The config hash �Pinger::Mix� is obsolete
Default gnupghome changed from �gnupg� to �gnupghome�
New config options: mixmaster, mixhome, gnupg
Diffstat (limited to 'Echolot/Conf.pm')
-rw-r--r-- | Echolot/Conf.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Echolot/Conf.pm b/Echolot/Conf.pm index 9242045..f5872da 100644 --- a/Echolot/Conf.pm +++ b/Echolot/Conf.pm @@ -1,7 +1,7 @@ package Echolot::Conf; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Conf.pm,v 1.22 2002/07/22 01:28:21 weasel Exp $ +# $Id: Conf.pm,v 1.23 2002/07/22 02:18:30 weasel Exp $ # =pod @@ -307,6 +307,7 @@ sub parse_cpunk_key($$$) { my ($reply, $time, $remailer) = @_; my $GnuPG = new GnuPG::Interface; + $GnuPG->call( Echolot::Config::get()->{'gnupg'} ) if (Echolot::Config::get()->{'gnupg'}); $GnuPG->options->hash_init( homedir => Echolot::Config::get()->{'gnupghome'} ); $GnuPG->options->meta_interactive( 0 ); |