While accessing an email using Horde, you may notice that Horde isn’t displaying the contents of the email rather it displays the following message
there are no parts that can be displayed inline.
The reason for “no parts can be displayed inline” error is the “inline” setting of the Horde HTML driver is set as false. To enable the setting, edit the mime_drivers.php file and set the “imp/html/inline” attribute to true.
On a cPanel server, the file is located at /usr/local/cpanel/base/horde/imp/config/mime_drivers.php and the attribute is:
$mime_drivers['imp']['html'] = array( 'inline' => false;
On a Plesk server, the file is located at /etc/psa-horde/imp/mime_drivers.php and the attribute is:
$mime_drivers['imp']['html']['inline'] = false;
Set the value as ‘true’ and save the file. Horde will display the contents properly again.
Comments are closed.