• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Webmail Subdomain & Horde Removal

R

ryanmhubbard

Guest
Currently if i try to add the subdomain "webmail" to a domain I get an error:

Error: Unable to update hosting preferences: Incorrect subdomain name webmail.imagepath.net: this domain name is used for access to Webmail under the domain imagepath.net.

I do not use horde or and IMAP/POP3 server. How can I remove horde safetly and make it so I may add these subdomains
 
Are you trying to get rid of horde? or just create a subdomain named webmail?
 
I'm just trying to create a subdomain webmail. But it will not allow me. I have no problem removing horde as well if that is the solution.
 
Check the files in /etc/apache2/conf.d. There's one defining the subdomain "webmail" for horde.
There's a VirtualHost that looks like this:

<VirtualHost \
x.x.x.x: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/tmp:/var/log/psa-horde:/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/tmp:/var/log/psa-horde:/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>
CustomLog /var/log/apache2/access_log combined
</VirtualHost>

Or similar. Just removing this and similar might help.
 
Back
Top