* caff:
authorthijs <thijs@b513b33f-fedd-0310-b452-c3deb5f4c849>
Fri, 2 Mar 2007 12:07:08 +0000 (12:07 +0000)
committerthijs <thijs@b513b33f-fedd-0310-b452-c3deb5f4c849>
Fri, 2 Mar 2007 12:07:08 +0000 (12:07 +0000)
  + Fix syntax error in example config variables (Closes: #413020).

git-svn-id: svn://svn.debian.org/pgp-tools/trunk@314 b513b33f-fedd-0310-b452-c3deb5f4c849

caff/caff
debian/changelog

index 2b5b41e42cb9d9ea16bb5e1ebb5aa894ba95a54b..2a575c45ce38c5fb388d1ddc70d5d020bb1b50c7 100755 (executable)
--- a/caff/caff
+++ b/caff/caff
@@ -116,9 +116,9 @@ The file is generated when it does not exist.
 
 Example:
 
-       $CONFIG{owner} = q{Peter Palfrader};
-       $CONFIG{email} = q{peter@palfrader.org};
-       $CONFIG{keyid} = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
+       $CONFIG{'owner'} = q{Peter Palfrader};
+       $CONFIG{'email'} = q{peter@palfrader.org};
+       $CONFIG{'keyid'} = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
 
 =head2 Required basic settings
 
@@ -218,7 +218,7 @@ Do not prompt for sending mail, just do it. Default: B<0>.
 =item B<no-mail> [boolean]
 
 Do not prompt for sending mail. The messages are still written to
-$CONFIG{caffhome}/keys/. Default: B<0>.
+$CONFIG{'caffhome'}/keys/. Default: B<0>.
 
 =item B<mail-template> [string]
 
@@ -256,11 +256,11 @@ Default: none.
 Parameters to pass to Mail::Mailer.
 This could for example be
 
-       $CONFIG{mailer-send} =  [ 'smtp', Server => 'mail.server', Auth => ['user', 'pass'] ]
+       $CONFIG{'mailer-send'} =  [ 'smtp', Server => 'mail.server', Auth => ['user', 'pass'] ];
 
 to use the perl SMTP client or
 
-       $CONFIG{mailer-send} =  [ 'sendmail', '-o8' ]
+       $CONFIG{'mailer-send'} =  [ 'sendmail', '-o8' ];
 
 to pass arguments to the sendmail program.
 For more information run C<< perldoc Mail::Mailer >>.
index 902651c8d894ad7f0179a71b0c96df36dbb89ad4..34d803adf7fc04bf7345df227a5a00cea041dd28 100644 (file)
@@ -1,3 +1,10 @@
+signing-party (0.4.9-2) unstable; urgency=low
+
+  * caff:
+    + Fix syntax error in example config variables (Closes: #413020).
+
+ -- Thijs Kinkhorst <thijs@debian.org>  Fri,  2 Mar 2007 13:04:36 +0100
+
 signing-party (0.4.9-1) unstable; urgency=low
 
   * caff: