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/Stats.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/Stats.pm')
-rw-r--r-- | Echolot/Stats.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Echolot/Stats.pm b/Echolot/Stats.pm index 402cbd9..b948546 100644 --- a/Echolot/Stats.pm +++ b/Echolot/Stats.pm @@ -1,7 +1,7 @@ package Echolot::Stats; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Stats.pm,v 1.22 2002/07/17 18:53:15 weasel Exp $ +# $Id: Stats.pm,v 1.23 2002/07/22 02:18:30 weasel Exp $ # =pod @@ -679,6 +679,7 @@ sub build_pgpring_export($$$$) { sub build_pgpring() { my $GnuPG = new GnuPG::Interface; + $GnuPG->call( Echolot::Config::get()->{'gnupg'} ) if (Echolot::Config::get()->{'gnupg'}); $GnuPG->options->hash_init( armor => 1, homedir => Echolot::Config::get()->{'gnupghome'} ); |