Your message dated Mon, 23 May 2005 10:56:00 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bugs fixed.
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 9 Jan 2005 00:01:58 +0000
>From [EMAIL PROTECTED] Sat Jan 08 16:01:58 2005
Return-path: <[EMAIL PROTECTED]>
Received: from legolas.drinsama.de [62.91.17.164] (postfix)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CnQWs-0006gZ-00; Sat, 08 Jan 2005 16:01:58 -0800
Received: from localhost (localhost [127.0.0.1])
by localhost (Postfix) with ESMTP
id 538C1C4C088; Sun, 9 Jan 2005 01:01:57 +0100 (CET)
Received: from legolas.drinsama.de ([127.0.0.1])
by localhost (legolas [127.0.0.1]) (amavisd-new, port 10024)
with SMTP id 02436-07; Sun, 9 Jan 2005 01:01:56 +0100 (CET)
Received: from wintermute.xmldesign.de (pD958F686.dip.t-dialin.net
[217.88.246.134])
by legolas.drinsama.de (Postfix) with ESMTP
id 0AF56C4C084; Sun, 9 Jan 2005 01:01:56 +0100 (CET)
Received: by wintermute.xmldesign.de (Postfix, from userid 1000)
id E849F2341D1; Sun, 9 Jan 2005 01:01:38 +0100 (CET)
Content-Type: multipart/mixed; boundary="===============0948790062=="
MIME-Version: 1.0
From: Erich Schubert <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: cabot: Add options for multiple own keyids
X-Mailer: reportbug 3.5
Date: Sun, 09 Jan 2005 01:01:37 +0100
Message-Id: <[EMAIL PROTECTED]>
X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at mucl.de
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
This is a multi-part MIME message sent by reportbug.
--===============0948790062==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: cabot
Version: 0.0.20050105-2
Severity: wishlist
Tags: upstream
Hi,
I have two keys; I'd like so sign with both.
Could you please add support for this?
Attached is a diff I use for myself. It has a major drawback - config
files are not compatible. But modifing it accordingly should be fairly
trivial even when retaining full config file compatibility...
--===============0948790062==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="cabot-multikeyid.patch"
--- cabot-0.0.20041209.orig/ca-createsendout
+++ cabot-0.0.20041209/ca-createsendout
@@ -101,7 +101,7 @@
revoked => ($trust eq 'r'),
email => ($uid =~ /@/) ? 1 : 0 } if ($type eq
'uid');
- $uids[0]->{'signed'}++ if (($type eq 'sig') && ($longkeyid =~
/$CONFIG{'keyid'}$/i));
+ $uids[0]->{'signed'}++ if (($type eq 'sig') && ($longkeyid =~
/$CONFIG{'keyid_match'}$/i));
};
for my $uid (reverse @uids) {
--- cabot-0.0.20041209.orig/ca-dosign
+++ cabot-0.0.20041209/ca-dosign
@@ -182,8 +182,10 @@
if (defined($CONFIG{'GPG'})) {
$gpgbin = $CONFIG{'GPG'};
}
- system($gpgbin, '--default-key', $CONFIG{'keyid'}, '--edit', $keyid,
- @ARGS, 'sign', 'save', 'quit');
+ foreach my $mykeyid (split / /,$CONFIG{'keyids'}) {
+ system($gpgbin, '--default-key', $mykeyid, '--edit', $keyid,
+ @ARGS, 'sign', 'save', 'quit');
+ }
print "Continue? [Y/n] ";
my $cont = <stdin>;
--- cabot-0.0.20041209.orig/ca-sendout
+++ cabot-0.0.20041209/ca-sendout
@@ -49,7 +49,7 @@
$gnupg->options->hash_init( 'armor' => 1,
'always_trust' => 1);
$gnupg->options->push_recipients( $key );
- $gnupg->options->push_recipients( $CONFIG{'keyid'} );
+ $gnupg->options->push_recipients( $CONFIG{'keyid_primary'} );
my ($inputfd, $stdoutfd, $stderrfd, $statusfd, $handles) = mkfds();
my $pid = $gnupg->encrypt( handles => $handles );
my ($stdout, $stderr, $status) = readwritegpg($text, $inputfd,
$stdoutfd, $stderrfd, $statusfd);
--===============0948790062==--
---------------------------------------
Received: (at 289414-done) by bugs.debian.org; 23 May 2005 08:56:33 +0000
>From [EMAIL PROTECTED] Mon May 23 01:56:33 2005
Return-path: <[EMAIL PROTECTED]>
Received: from tortoise.loria.fr (tortoise.lateralis.org) [152.81.15.241]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Da8jg-0007nL-00; Mon, 23 May 2005 01:56:33 -0700
Received: from laurent by tortoise with local (Exim 4.50)
id 1Da8jB-0002av-0a; Mon, 23 May 2005 10:56:01 +0200
Date: Mon, 23 May 2005 10:56:00 +0200
From: Laurent Fousse <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Bugs fixed.
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol="application/pgp-signature"; boundary="jI8keyz6grp/JLjh"
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040907i
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no
version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
--jI8keyz6grp/JLjh
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Those bugs were fixed in a previous upload to experimental, and the
version just uploaded to unstable contains the fix too.
--jI8keyz6grp/JLjh
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCkZqgTUld8sb4OVwRAr69AKChmM30F7tAj7ybAL+5/UoiBTbPLACgnwSi
rtPf0CGDxudSjtQMr67LZO0=
=aLKI
-----END PGP SIGNATURE-----
--jI8keyz6grp/JLjh--
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]