cPanel’s Horde has “Inline HTML” is disabled by default
The error you probably got:
##
This message part contains HTML data, but inline HTML display is disabled.
View HTML data in new window.
Convert HTML data to plain text and view in new window.
##
cp -rp /usr/local/cpanel/base/horde/imp/config/mime_drivers.php /usr/local/cpanel/base/horde/imp/config/mime_drivers.php_old vi /usr/local/cpanel/base/horde/imp/config/mime_drivers.php +47
Find and update line
from
'inline' => false,
to
'inline' => true,Should looks as the following:
##
/* HTML driver settings */
'html' => array(
/* NOTE: Inline HTML display is turned OFF by default. */
'inline' => true,
'handles' => array(
'text/html'
),
##By default this is set to “false”, so your change will be overwritten after next cPanel update, so consider to append the following to get this enabled after every upcp
vi /usr/local/cpanel/scripts/postupcp
and append:
replace "'inline' => false," "'inline' => true," -- /usr/local/cpanel/base/horde/imp/config/mime_drivers.php
Similar Posts:
- How to enable Inline HTML message viewing for Horde.
- How to enable viewing HTML content in Horde?
- cPanel error. Horde is unavailable while the system is being upgraded. HTTP error 503
- How to fix RoundCube’s error: DATABASE ERROR: CONNECTION FAILED!
- How to know default webmail client that user uses for email box Horde or Roundcube on a cPanel server