• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

webmail is not working

G

guiz

Guest
I have installed plesk on a linux server (RHEL3 ES). I have configured a new client and a new domain but 'webmail' option appears disabled.

I'm going to look for any reason but maybe someone have any idea...

Thanks!
 
Yeap, Horde is installed and running ok. Now I could see WEBMAIL option but when I click on it, it tries to connect to webmail.<domainname> and doesn't found anything.

Any idea?

Thanks!
 
check your httpd.conf and your httpd.include, maybe you need to recheck the path of horde.

maybe it is pointing to the wrong location now.

If you are using 7.5.4 your horde path should looks like this one:

PHP:
<VirtualHost \
                        IP.IP.IP.IP:80 \
                        IP.IP.IP.IP:80 \
                        IP.IP.IP.IP:80 \
                        IP.IP.IP.IP:80 \
                        IP.IP.IP.IP:80 \
                        IP.IP.IP.IP:80 \
                        IP.IP.IP.IP:80 \
                        IP.IP.IP.IP:80 \
                        >
        DocumentRoot /usr/share/psa-horde/
        Alias /horde/ /usr/share/psa-horde/
        Alias /imp/ /usr/share/psa-horde/imp/
        ServerName webmail
        ServerAlias webmail.*
        UseCanonicalName Off
        <Directory /usr/share/psa-horde>
                <IfModule sapi_apache2.c>
                        php_admin_flag engine on
                        php_admin_flag magic_quotes_gpc off
                        php_admin_flag safe_mode off
                        php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/var/log:/usr/share/doc"
                        php_admin_value include_path "/usr/share/psa-horde:/usr/share/psa-horde/pear:."
                </IfModule>
                <IfModule mod_php5.c>
                        php_admin_flag engine on
                        php_admin_flag magic_quotes_gpc off
                        php_admin_flag safe_mode off
                        php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/var/log:/usr/share/doc"
                        php_admin_value include_path "/usr/share/psa-horde:/usr/share/psa-horde/pear:."
                </IfModule>
                Order allow,deny
                Allow from all
        </Directory>
</VirtualHost>


<IfModule mod_ssl.c>

<VirtualHost \
                        IP.IP.IP.IP:443 \
                        IP.IP.IP.IP:443 \
                        IP.IP.IP.IP:443 \
                        IP.IP.IP.IP:443 \
                        IP.IP.IP.IP:443 \
                        IP.IP.IP.IP:443 \
                        IP.IP.IP.IP:443 \
                        IP.IP.IP.IP:443 \
                        >
        DocumentRoot /usr/share/psa-horde/
        Alias /horde/ /usr/share/psa-horde/
        Alias /imp/ /usr/share/psa-horde/imp/
        ServerName webmail
        ServerAlias webmail.*
        UseCanonicalName Off
        SSLEngine on
        SSLVerifyClient none
        SSLCertificateFile /etc/httpd/conf/httpd.pem
        <Directory /usr/share/psa-horde>
                <IfModule sapi_apache2.c>
                        php_admin_flag engine on
                        php_admin_flag magic_quotes_gpc off
                        php_admin_flag safe_mode off
                        php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/var/log:/usr/share/doc"
                        php_admin_value include_path "/usr/share/psa-horde:/usr/share/psa-horde/pear:."
                </IfModule>
                <IfModule mod_php5.c>
                        php_admin_flag engine on
                        php_admin_flag magic_quotes_gpc off
                        php_admin_flag safe_mode off
                        php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/var/log:/usr/share/doc"
                        php_admin_value include_path "/usr/share/psa-horde:/usr/share/psa-horde/pear:."
                </IfModule>
                SSLRequireSSL
                Order allow,deny
                Allow from all
        </Directory>
</VirtualHost>


</IfModule>

If your path is different and you are using 7.5.4 edit the values of httpd.include, or reinstall (force) the horde rpms.(not sure if this will help but worth the try)

also check that your dns template has the webmail A record.

Regards,
 
Back
Top