- or download this
sub new {
my $self = {};
$self->{_ldap} = Net::LDAP->new($LDAP_SERVER);
bless $self;
return $self;
}
- or download this
sub alias_add_entry {
my $self = shift;
my $alias = shift;
...
);
return $result;
}
- or download this
sub authenticate {
my $self = shift;
my $pw = shift;
...
);
return $result;
}