/webmail not working

Jibbs

Verified User
Joined
Feb 27, 2010
Messages
18
I have a fresh DA install and going to domain.com/webmail doesn't bring up anything. Just a 404. I'd like to have roundcube show up. I understand you can change a conf and do that but NOTHING is showing up so something is wrong. Any help here would be appreciated.

Thanks!
 
Edit /etc/httpd/conf/extras/httpd-alias.conf
 
/etc/httpd/conf/extra/httpd-alias.conf looks like this

Alias /config "/var/www/html/redirect.php"
Alias /phpMyAdmin "/var/www/html/phpMyAdmin/"
Alias /phpmyadmin "/var/www/html/phpMyAdmin/"
Alias /squirrelmail "/var/www/html/squirrelmail/"
Alias /roundcube "/var/www/html/roundcube/"
Alias /uebimiau "/var/www/html/uebimiau/"
Alias /webmail "/var/www/html/webmail/"
Alias /atmail "/var/www/html/atmail/"

/config works, /phpmyadmin works, /phpMyAdmin works, nothing else works
 
You can either change the line:

Code:
Alias /webmail "/var/www/html/webmail/"
to something like:

Code:
Alias /webmail "/var/www/html/roundcube"
or you could add a symlink from webmail to whatever you want doing something akin to this:

Code:
$ sudo ln -s /var/www/html/roundcube/ /var/www/html/webmail

The latter is what I did.
 
I have a fresh DA install and going to domain.com/webmail doesn't bring up anything. Just a 404. I'd like to have roundcube show up. I understand you can change a conf and do that but NOTHING is showing up so something is wrong. Any help here would be appreciated.

Thanks!

What do you see with

Code:
ls -la /var/www/html/webmail/
?
 
ls: /var/www/html/webmail/: No such file or directory

well then that makes sense, 404 because nothing exists there
 
Doesnt seem like a fix to me. Seems like it will install an outdated webmail client there.
 
roundcube direct access doesnt worked on aws centos7

Doesnt seem like a fix to me. Seems like it will install an outdated webmail client there.


Hi Expert, i have re-installed roundcube but still doesnt worked to me. Let me know what goes wrong.

[root@mail2 webmail]# ls -la /var/www/html/webmail/
total 164
drwxr-xr-x 11 webapps webapps 4096 Sep 26 01:45 .
drwxr-xr-x. 6 root root 186 Sep 26 01:35 ..
-rw-r--r-- 1 webapps webapps 10943 Dec 28 2007 addressbook.php
-rw-r--r-- 1 webapps webapps 2111 Dec 28 2007 apply_filters.php
-rw-r--r-- 1 webapps webapps 1151 Dec 28 2007 badlogin.php
-rw-r--r-- 1 webapps webapps 2001 Dec 28 2007 block_address.php
-rw-r--r-- 1 webapps webapps 2441 Dec 28 2007 catch.php
drwxr-xr-x 2 webapps webapps 66 Dec 28 2007 database
drwxr-xr-x 2 webapps webapps 64 Sep 25 2007 docs
-rw-r--r-- 1 webapps webapps 1808 Dec 28 2007 download.php
-rw-r--r-- 1 webapps webapps 1227 Dec 28 2007 error.php
drwxr-xr-x 2 webapps webapps 48 Sep 25 2007 extra
-rw-r--r-- 1 webapps webapps 1122 Dec 28 2007 folder_list.php
-rw-r--r-- 1 webapps webapps 6647 Dec 28 2007 folders.php
-rw-r--r-- 1 webapps webapps 401 Dec 28 2007 get_message_list.php
-rw-r--r-- 1 webapps webapps 898 Dec 28 2007 headers.php
drwxr-xr-x 2 webapps webapps 4096 Sep 25 2007 images
drwxr-xr-x 2 webapps webapps 259 Sep 25 03:11 inc
-rw-r--r-- 1 webapps webapps 3956 Dec 28 2007 index.php
drwxr-xr-x 2 webapps webapps 4096 Sep 25 2007 langs
-rw-r--r-- 1 webapps webapps 2752 Dec 28 2007 logout.php
-rw-r--r-- 1 webapps webapps 10242 Dec 28 2007 messages.php
-rw-r--r-- 1 webapps webapps 19167 Dec 28 2007 newmsg.php
-rw-r--r-- 1 webapps webapps 2144 Dec 28 2007 picupload.php
-rw-r--r-- 1 webapps webapps 4903 Dec 28 2007 preferences.php
-rw-r--r-- 1 webapps webapps 3488 Dec 28 2007 printmsg.php
-rw-r--r-- 1 webapps webapps 3968 Dec 28 2007 process.php
-rw-r--r-- 1 webapps webapps 1278 Dec 28 2007 quick_address.php
-rw-r--r-- 1 webapps webapps 11410 Dec 28 2007 readmsg.php
-rw-r--r-- 1 webapps webapps 207 Dec 28 2007 redir.php
lrwxrwxrwx 1 root root 24 Sep 26 01:45 roundcube -> /var/www/html/roundcube/
-rw-r--r-- 1 webapps webapps 7243 Dec 28 2007 search.php
-rw-r--r-- 1 webapps webapps 742 Dec 28 2007 show_body.php
drwxr-xr-x 4 webapps webapps 158 Dec 28 2007 smarty
drwxr-xr-x 10 webapps webapps 178 Aug 12 2008 themes
drwxrwx--- 2 webapps webapps 23 Sep 25 03:11 tmp
-rw-r--r-- 1 webapps webapps 2192 Dec 28 2007 upload.php
 
Back
Top