• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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