[Pgp-tools-commit] r314 - in trunk: caff debian

Thijs Kinkhorst thijs at alioth.debian.org
Fri Mar 2 13:07:08 CET 2007


Author: thijs
Date: 2007-03-02 13:07:08 +0100 (Fri, 02 Mar 2007)
New Revision: 314

Modified:
   trunk/caff/caff
   trunk/debian/changelog
Log:
* caff:
  + Fix syntax error in example config variables (Closes: #413020).

Modified: trunk/caff/caff
===================================================================
--- trunk/caff/caff	2007-02-26 14:12:29 UTC (rev 313)
+++ trunk/caff/caff	2007-03-02 12:07:08 UTC (rev 314)
@@ -116,9 +116,9 @@
 
 Example:
 
-	$CONFIG{owner} = q{Peter Palfrader};
-	$CONFIG{email} = q{peter at palfrader.org};
-	$CONFIG{keyid} = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
+	$CONFIG{'owner'} = q{Peter Palfrader};
+	$CONFIG{'email'} = q{peter at palfrader.org};
+	$CONFIG{'keyid'} = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
 
 =head2 Required basic settings
 
@@ -218,7 +218,7 @@
 =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 @@
 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 >>.

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2007-02-26 14:12:29 UTC (rev 313)
+++ trunk/debian/changelog	2007-03-02 12:07:08 UTC (rev 314)
@@ -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 at debian.org>  Fri,  2 Mar 2007 13:04:36 +0100
+
 signing-party (0.4.9-1) unstable; urgency=low
 
   * caff:




More information about the Pgp-tools-commit mailing list