Checking for Digest::MD5... OK
Checking for Crypt::DES... Not
found!
Checking for Crypt::Blowfish... Not found!
Checking for
Crypt::CBC... OK
Logging in to OpenSRS server... ERROR: Unable to
establish socket!
=================================
OPERATING SYSTEM
Windows 2000 server
and I can do telnet from the box to
rr-n1-tor.opensrs.net 50000
=================================
LIST OF INSTALLED MODULES
Archive-Tar
[0.072] module for manipulation of tar
archives.
Compress-Zlib
[1.03 ] Interface to zlib compression library
Crypt-Blowfish_PP
[1.11
]
Digest-MD5 [2.09
]
HTML-Parser [2.23
] SGML parser
class
MIME-Base64 [2.11
] Encoding and decoding of base64
strings
PPM [2
] Perl Package Manager: locate, install, upgrade software
packages.
URI
[1.04 ] Uniform
Resource Identifiers (absolute and
relative)
XML-Element
[1.07 ] Base element class for XML
elements
XML-Parser
[2.27 ] A Perl module for parsing XML
documents
libwin32
[0.16 ] A collection of extensions that aims to provide comprehensive
access to the Windows API.
libwww-perl
[5.45 ] Library for WWW access in
Perl
=======================================
PERL VERSION
ActivePerl 5.6
=======================================
OpenSRS.conf FILE
#!/usr/bin/perl
# opensrs client conf file
use vars qw($ADMIN_EMAIL $PATH_SOURCE $PATH_LIB $PATH_TEMPLATES
%OPENSRS
%REG_SYSTEM %REGISTER %MANAGE
$MAIL_TYPE
$MAILPROG $LOCALHOST $SMTP_SERVER
$SMTP_PORT);
my $USERNAME =
"webr"; # XXX insert username here
my
$PRIVATE_KEY =
"a376e6937ff11941db50e4987215c9303eb335aa75b6049a"; # XXX insert DES key
here
$PATH_SOURCE =
"c:\inetpub\opensrs"; # e.g.,
"/home/username/opensrs"
$PATH_LIB
=
"c:\inetpub\opensrs\lib";
$PATH_TEMPLATES
= "c:\inetpub\opensrs\templates";
%OPENSRS = (
username =>
$USERNAME,
private_key =>
$PRIVATE_KEY,
REMOTE_PORT =>
50000,
REMOTE_HOST =>
"rr-n1-tor.opensrs.net",
LOOKUP_REMOTE_PORT =>
51000,
LOOKUP_REMOTE_HOST =>
"rr-n1-tor.opensrs.net",
crypt_type => 'Blowfish_PP', # DES, Blowfish,
or Blowfish_PP (slow!)
lookup_all_tlds => 1, # lookup similar
available domains
);
# flags affecting cgi's behavior
%REG_SYSTEM =
(
debug => 1,
# boolean: 1 is true, 0 is
false
# allow clients to provide
their own custom data
custom_tech_contact => 0,
custom_nameservers => 0,
F_VERIFY_CC => 1, # verify credit card
number
F_SEND_ORDERS
=> 1, # send orders to
$ADMIN_EMAIL
F_SEND_THANKYOU
=> 1, # send thank you note to
customer
);
%REGISTER = (
debug =>
1,
);
%MANAGE = (
debug => 1,
);
################################################################
####
select type of mail delivery and adjust any necessary variables
#### 'sendmail' option is recommended for servers on UNIX based
systems
#### if you do not have sendmail on your system, set $MAIL_TYPE to
'smtp'
$MAIL_TYPE = "smtp"; # valid options: sendmail, smtp
#### define this if you set $MAIL_TYPE = 'sendmail'
#$MAILPROG =
'/usr/sbin/sendmail -t -oi -oem'; # path and args for sendmail
#### recommended option for servers on win32 platform
#### define
these values if you set $MAIL_TYPE = 'smtp'
$LOCALHOST =
'thw.webraided.com';
$SMTP_SERVER =
'mail.webraided.com';
$SMTP_PORT =
25;
#################################################################
1;