Help for this page

Select Code to Download


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