I'm trying to get a webmail up and running, but my perl and Linux path skills aren't exactly top of the notch....
I have installed
Nikosoft webmail (since it doesn't need an IMAP-server) and have set up Aliases and ScriptAlias in httpd.conf. Btw, is it possible to only have one ScriptAlias, but several Aliases?
The relevant parts in httpd.conf looks like this:
Alias /nswm "/opt/nswm/html"
<Directory "/opt/nswm/html">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Alias /nswmtemp "/tmp/nswm"
<Directory "/tmp/nswm">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ScriptAlias /cgi-bin/ "/opt/nswm/cgi-bin/"
<Directory "/opt/nswm/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
When I try to access the page, I get this error:
Can't locate configwm.pm in @INC (@INC contains: /usr/local/ActivePerl-5.8/lib/5.8.0/i686-linux-thread-multi /usr/local/ActivePerl-5.8/lib/5.8.0 /usr/local/ActivePerl-5.8/lib/site_perl/5.8.0/i686-linux-thread-multi /usr/local/ActivePerl-5.8/lib/site_perl/5.8.0 /usr/local/ActivePerl-5.8/lib/site_perl . /opt/nswm/cgi-bin/) at common.pm line 12.
BEGIN failed--compilation aborted at common.pm line 12.
Compilation failed in require at /opt/nswm/cgi-bin/login.pl line 12.
BEGIN failed--compilation aborted at /opt/nswm/cgi-bin/login.pl line 12.
Anyone have any suggestions how I can get this thing to work?
Stig