⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addcrlldap

📁 Perl写的CA认证程序
💻
字号:
## OpenCA - RA Server Command## (c) 2000-2001 by Michael Bell and OpenCA Group####   File Name: addCertsLDAP##       Brief: Add all certificates to LDAP server## Description: Add all issued certificates to LDAP server##  Parameters: if ( $cmd !~ /addCrlLDAP/i ) {        configError( "Wrong Command Usage ($cmd/importReqs)!" );        exit 1;}                                                                                            print startLogPage ( "Updating CRLs on the LDAP ...");## crlsmy @items = $db->searchItems ( DATATYPE => "CRL" );for my $h (@items) {  print addLogSection ("CRL ".$h->getParsed()->{KEY}." ...");  my $result = eximObjectToLDAP ( CRL => $h );  if ($result and $result->{STATUS}) {    print addLogLine (" Ok.");  } else {    print addErrorLog (" Failed.");  }  print closeLogSection ();}closePage ();1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -