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 /doc/pingd.conf.pod | |
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 'doc/pingd.conf.pod')
-rw-r--r-- | doc/pingd.conf.pod | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/doc/pingd.conf.pod b/doc/pingd.conf.pod index 279496f..6e12158 100644 --- a/doc/pingd.conf.pod +++ b/doc/pingd.conf.pod @@ -251,13 +251,19 @@ How often to expire old keys, pingds and remailers Default: 'expire' => 24*60*60, # daily Example: 'expire' => 8*60*60, # every 8 hours -=item B<getkeyconf> [seconds] +=item B<getkeyconf_interval> [seconds] -How often to query remailers for new keys and configuration data -(remailer-xxx). +=item B<getkeyconf_every_nth_time> [integer] - Default: 'getkeyconf' => 24*60*60, # daily - Example: 'getkeyconf' => 2*24*60*60, # every other day +How often to query remailers for new keys and configuration data +(remailer-xxx). Some requests are sent every B<getkeyconf_interval> +seconds. The same request to the same remailer is sent only every +B<getkeyconf_every_nth_time> time. + + Default: '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 + Example: 'getkeyconf_interval' => 10*60, + 'getkeyconf_every_nth_time' => 2*24*60/10, # new request every other day =item B<check_resurrection> [seconds] |