• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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