I have installed the mod_perl with my Apache 1.3.28

I want to authenticate (basic) against an IMAP Server.

I have also successfully installed the Apache::AuthenIMAP

Here is my httpd.conf

...........
PerlModule Apache::AuthenIMAP
<Location "/">
Options Indexes FollowSymLinks
AllowOverride None
order allow,deny
allow from all

#IMAP Authentication
AuthName IMAP
AuthType Basic

# authenticate via IMAP

PerlAccessHandler Apache::AuthenIMAP
PerlAuthenHandler Apache::AuthenIMAP
PerlSetVar IMAPServer My_IMAP_Server
PerlSetVar IMAPPort 143
require valid-user
</Location>
.......


What am i doing wrong?
Authentication doesn't seem to be working

Reply via email to