SRS-EPP-Proxy
view release on metacpan or search on metacpan
bin/srs-epp-proxy view on Meta::CPAN
The EPP protocol specifically requires use of SSL, so you need to
specify these options.
=item B<listen>
Specify a listen address, may be specified multiple times. The
default is to listen on all local interfaces via IPv4, or IPv6 if
available.
=item B<gpg_dir>
Specify where the GPG-like keyring and secure keyring files can be
found. This is equivalent to setting the GNUPGHOME environment
variable.
=item B<backend>
Specify the back-end URL of the SRS system.
=item B<pidfile>
lib/SRS/EPP/Proxy.pm view on Meta::CPAN
}
has 'openpgp' =>
is => "ro",
isa => "SRS::EPP::OpenPGP",
lazy => 1,
default => sub {
my $self = shift;
require SRS::EPP::OpenPGP;
my $pgp_dir = $self->pgp_dir;
my $secring_file = "$pgp_dir/secring.gpg";
my $pubring_file = "$pgp_dir/pubring.gpg";
my $pgp = SRS::EPP::OpenPGP->new(
public_keyring => $pubring_file,
secret_keyring => $secring_file,
);
$pgp->uid($self->pgp_keyid) if $self->pgp_keyid;
my $key = $pgp->default_signing_key;
$pgp;
},
handles => ["pgp"],
;
( run in 1.143 second using v1.01-cache-2.11-cpan-df04353d9ac )