diff options
author | Peter Palfrader <peter@palfrader.org> | 2002-07-17 17:53:44 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2002-07-17 17:53:44 +0000 |
commit | 4556e8641919997ee102d066dd173a15da3bdff5 (patch) | |
tree | bcd162a1d9b34e75678a94563f487856a79afbe2 /Echolot/Config.pm | |
parent | 0de702218fe446ccf8342e41ce32dff871b03fdd (diff) |
getkeyconf command takes optional addresses
getkeyconf config option was replaced by getkeyconf_interval and getkeyconf_every_nth_time
Not all requests are sent at the same time
Scheduler takes argument to pass to functions
Diffstat (limited to 'Echolot/Config.pm')
-rw-r--r-- | Echolot/Config.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Echolot/Config.pm b/Echolot/Config.pm index 412e3a8..e01461e 100644 --- a/Echolot/Config.pm +++ b/Echolot/Config.pm @@ -1,7 +1,7 @@ package Echolot::Config; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Config.pm,v 1.28 2002/07/16 02:48:57 weasel Exp $ +# $Id: Config.pm,v 1.29 2002/07/17 17:53:44 weasel Exp $ # =pod @@ -81,7 +81,8 @@ sub init($) { buildthesaurus => 60*60, # hourly commitprospectives => 8*60*60, # commit prospective addresses every 8 hours expire => 24*60*60, # daily - getkeyconf => 24*60*60, # daily + getkeyconf_interval => 5*60, # send out requests every 5 minutes + getkeyconf_every_nth_time => 24*60/5, # send out the same request to the same remailer once a day check_resurrection => 7*24*60*60, # weekly pinger_interval => 5*60, # send out pings every 5 minutes |