====== Afficher les pièces jointes "inline" dans horde ====== Par défaut, horde (IMP) n'affiche pas les mails au format HTML. Il faut cliquer sur le lien fournit, qui ouvre (avec un peu de chance) le mail dans une autre page de Firefox. Pour corriger ce problème, il faut activer l'affichage "inline" des pièces jointes HTML: vim /home/httpd/html/horde/imp/config/mime_drivers.php et changer la variable **inline** de **false** à **true** pour la section html: /** * HTML driver settings */ $mime_drivers['imp']['html'] = array( 'inline' => true, 'handles' => array( 'text/html' ), 'icons' => array( 'default' => 'html.png' ), /* If you don't want to display the link to open the HTML content in a * separate window, set the following to false. */ 'external' => true, /* Run 'tidy' on all HTML output? This requires at least version 2.0 of the * PECL 'tidy' extension to be installed on your system. */ 'tidy' => false, /* Check for phishing exploits? */ 'phishing_check' => true ); {{tag>mail webmail horde}}