|  |  
 |   |   
 NAMEAuthen::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>
DESCRIPTIONAuthenticate against a POP3 service. METHODS
 
 
 SEE ALSOAuthen::Simple. Net::POP3. AUTHORChristian Hansen "ch@ngmedia.com" COPYRIGHTThis program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. 
 
 |