From de3e4f5f32eaa03961fcc313c3ac6d3f6f6ac44d Mon Sep 17 00:00:00 2001 From: myon-guest Date: Thu, 30 Jun 2005 18:46:12 +0000 Subject: [PATCH] * Reorder manpage and insert section headers * Add myself to authors git-svn-id: svn://svn.debian.org/pgp-tools/trunk@102 b513b33f-fedd-0310-b452-c3deb5f4c849 --- caff/caff | 54 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 40 insertions(+), 14 deletions(-) diff --git a/caff/caff b/caff/caff index 59ee3b8..54bb9cc 100755 --- a/caff/caff +++ b/caff/caff @@ -4,6 +4,7 @@ # $Id$ # # Copyright (c) 2004, 2005 Peter Palfrader +# Copyright (c) 2005 Christoph Berg # # All rights reserved. # @@ -91,14 +92,10 @@ Example: $CONFIG{email} = q{peter@palfrader.org}; $CONFIG{keyid} = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ]; -=head2 Valid keys +=head2 Required basic settings =over -=item B [string] - -Base directory for the files caff stores. Default: B<$HOME/.caff/>. - =item B [string] Your name. B. @@ -113,14 +110,13 @@ A list of your keys. This is used to determine which signatures to keep in the pruning step. If you select a key using B<-u> it has to be in this list. B. -=item B [seconds] +=head2 General settings -Don't export UIDs by default, on which your latest signature is older -than this age. Default: B<24*60*60> (i.e. one day). +=item B [string] -=item B [string] +Base directory for the files caff stores. Default: B<$HOME/.caff/>. -Keyserver to download keys from. Default: B. +=head2 GnuPG settings =item B [string] @@ -145,15 +141,39 @@ Path to your secret keyring. Default: B<$HOME/.gnupg/secring.gpg>. An additional keyid to encrypt messages to. Default: none. +=head2 Keyserver settings + +=item B [string] + +Keyserver to download keys from. Default: B. + =item B [boolean] If true, then skip the step of fetching keys from the keyserver. Default: B<0>. +=head2 Signing settings + =item B [boolean] If true, then skip the signing step. Default: B<0>. +=item B [seconds] + +Don't export UIDs by default, on which your latest signature is older +than this age. Default: B<24*60*60> (i.e. one day). + +=head2 Mail settings + +=item B [boolean] + +Do not prompt for sending mail, just do it. Default: B<0>. + +=item B [boolean] + +Do not prompt for sending mail. The messages are still written to +$CONFIG{caffhome}/keys/. Default: B<0>. + =item B [string] Email template which is used as the body text for the email sent out. @@ -183,9 +203,15 @@ Default: none. =back -=head1 AUTHOR +=head1 AUTHORS + +=over + +=item Peter Palfrader -Peter Palfrader +=item Christoph Berg + +=back =head1 WEBSITE @@ -412,7 +438,7 @@ my $KEYEDIT_KEYEDIT_OR_DELSIG_PROMPT = '^\[GNUPG:\] (GET_BOOL keyedit.delsig|GET my $KEYEDIT_DELSUBKEY_PROMPT = '^\[GNUPG:\] GET_BOOL keyedit.remove.subkey'; load_config; -my $USER_AGENT = "caff $VERSION - (c) 2004, 2005 Peter Palfrader"; +my $USER_AGENT = "caff $VERSION - (c) 2004, 2005 Peter Palfrader et al."; my $KEYSBASE = $CONFIG{'caffhome'}.'/keys'; my $GNUPGHOME = $CONFIG{'caffhome'}.'/gnupghome'; @@ -427,7 +453,7 @@ my $DATE_STRING = sprintf("%04d-%02d-%02d", $year+1900, $mon+1, $mday); sub version($) { my ($fd) = @_; - print $fd "caff $VERSION - (c) 2004, 2005 Peter Palfrader\n"; + print $fd "caff $VERSION - (c) 2004, 2005 Peter Palfrader et al.\n"; }; sub usage($$) { -- 2.30.2