How to configure Horde / IMP to display inline HTML by default

EQ Admin

EQ Forum Admin
Staff member
Hello,

For a variety of security reasons the default setting for IMP is not to display text/html message parts inline.

To override and change this default behavior create the following file:

/path/to/imp/config/mime_drivers.local.php

The contents of the file should be:

<?php
$mime_drivers['html']['inline'] = true;
 
Top