[imp] Login

Max Kalika max@the-triumvirate.net
Sun, 05 Nov 2000 07:54:29 -0800 (PST)


Quoting mbailey@journey.net:

> Already tried that.. Nothing..
> If I specify any of the php3 files I get them to come up with login but no
> frames.

Did you try http://<host>/horde/imp/index.php3?  If that works, make sure you 
have index.php3 listed in the DirectoryIndex directive of your apache 
configuration. (If you're running apache that is).  This way you can go to just 
http://<host>/horde/imp.  To make it even easier for users you can make an 
apache alias pointing to webmail like so:

  Alias /webmail "/www/horde/imp"
  Alias /horde "/www/horde"
  <Directory "/www/horde">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
# uncomment if running php4
#    php_flag magic_quotes_gpc Off
# uncomment if running php3
#    php3_magic_quotes_gpc off
  </Directory>

This way you just tell your users to go to http://<host>/webmail

Good luck!

--mk23