Thank you for the hint.

Following is your code in the ca cgi program:
$dn = $info->{0}->{DN};
$dn =~ s/\//, /g;
$dn =~ s/, //;

and then the if-clause
if ($op->{DN} eq $dn)  {
                     ^^
here maybe a clerical error:) should be "ne"

And I find in $op->{DN} also have "/" char in it, this is strange, but it's the fact:
C=IT, O=OpenCA, OU=Network Center, [EMAIL PROTECTED]

So, I use following code:
$dn = $info->{0}->{DN};
$dn =~ s/\//, /g;
$dn =~ s/^, //;

$dn1 = $op->{DN};
$dn1 =~ s/\//, /g;
$dn1 =~ s/^, //;

and then the if-clause
if ($dn1 ne $dn)  {

----- Original Message ----- 
From: Michael Bell <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, December 27, 2000 9:08 PM
Subject: [openca-users:179] Re: RE: Re: Problems accesssing RA Server securely ....


> On Saturday 23 December 2000 07:28, you wrote:
> 
> > > Actually I figured out what the problem was after I posted this message.
> > I had the ca cert in the right directory but it did not have the hashed
> > soft link
> > to the cert in the same directory, therefore openssl did not see it. I
> > still can't get
> > the operator serial number to come up on the raserver and the signature and
> > serial number
> > are not displayed in the ca server during the approval process even though
> > the
> > operator correctly approved and signed the request...
> > Thanks for the help!
> Please see the message 122 from openca-users (it's available via web 
> http://www.mail-archive.com/[email protected]/ ).
> 
> There is a bug in the viewReq code of the ca-script.
> 
> Regards Michael
> -----------------------------------------------------------------------
> Michael Bell                       E-Mail: [EMAIL PROTECTED]
> Rechenzentrum - Datacenter           Tel.: +49+(0)30-2093-2482
> Humboldt-University of Berlin        Fax.: +49+(0)30-2093-2959
> Unter den Linden 6
> 10099 Berlin
> Germany
> 
> _________________________________________________________________
> OpenCA - Users Support Mailing List       [EMAIL PROTECTED]
> 

_________________________________________________________________
OpenCA - Users Support Mailing List       [EMAIL PROTECTED]

Reply via email to