Authen::Simple::POP3 - Simple POP3 authentication


NAME

Authen::Simple::POP3 - Simple POP3 authentication


SYNOPSIS

    use Authen::Simple::POP3;
    
    my $pop3 = Authen::Simple::POP3->new( 
        host => 'pop3.company.com'
    );
    
    if ( $pop3->authenticate( $username, $password ) ) {
        # successfull authentication
    }
    
    # or as a mod_perl Authen handler
    
    PerlModule Authen::Simple::Apache
    PerlModule Authen::Simple::POP3
    PerlSetVar AuthenSimplePOP3_host "pop3.company.com"
    <Location /protected>
      PerlAuthenHandler Authen::Simple::POP3
      AuthType          Basic
      AuthName          "Protected Area"
      Require           valid-user
    </Location>


DESCRIPTION

Authenticate against a POP3 service.


METHODS


SEE ALSO

the Authen::Simple manpage.

the Net::POP3 manpage.


AUTHOR

Christian Hansen ch@ngmedia.com


COPYRIGHT

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.