# $Id: cabotrc 190 2005-05-03 18:57:47Z lfousse $

# Copyright (c) 1998 Ian Jackson
# Copyright (c) 2001, 2003, 2004 Peter Palfrader
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Privacy Guard; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
#

##################
# local variables
##################

my $CONFIG_realaddress = 'john.doe@example.com';
my $CONFIG_fullname    = 'John Doe';

################
# exported stuff
################

$CONFIG{'keyid'}       = 'abcdef01';
$CONFIG{'BCCmail'}     = 'john.doe-cabot-out@example.com';
$CONFIG{'bot'}         = $CONFIG_fullname . ' (CA BOT) <john.doe-cabot@example.com>';
$CONFIG{'cabothome'}   = '/home/cabot/ca';

$CONFIG{'keyservers'}  = [
    'subkeys.pgp.net',
#    'random.sks.keyserver.penguin.de',
#    'keyring.debian.org',
];

$CONFIG{'want_recv_notice'} = "yes"; # set to "no" if you don't want the
				     # "New key in tosign" mail messages.
# The space-separated list of keyids for which you want the challenges
# encrypted to (comment out to disable this feature).
$CONFIG{'challenge_encrypt_self_to'} = $CONFIG{'keyid'};

# you very likely wont have to change anything below here #########################

$CONFIG{'sendoutdir'}  = $CONFIG{'cabothome'} . '/sendout';
$CONFIG{'sentdir'}     = $CONFIG{'cabothome'} . '/sent';
$CONFIG{'tosign'}      = $CONFIG{'cabothome'} . '/tosign';
$CONFIG{'done'}        = $CONFIG{'cabothome'} . '/done';

$CONFIG{'name'}        = $CONFIG_fullname .' <'. $CONFIG_realaddress . '>';
$CONFIG{'signoff'}     = 'CA software running on behalf of ' . $CONFIG_fullname .' <'. $CONFIG_realaddress .'>';
$CONFIG{'preamble'}    = << "EOF";
You are being sent this mail because we exchanged PGP/GPG key
fingerprints at some point in the past.  This mail is semiautomatic
from my PGP/GPG CA management software; my apologies for the formality.
If for some reason you need to talk to me rather than my bot, please
mail me personally: $CONFIG{'name'}.

Please decrypt the following message for instructions on how to
complete the certification protocol.

EOF

# for debugging purposes, use '|cat'
$CONFIG{'sendmail'}    = '|/usr/lib/sendmail -t';


