| Summary | Viewing Inline HTML vs text message as user settable option |
| Queue | IMP |
| Queue Version | Git master |
| Type | Enhancement |
| State | Rejected |
| Priority | 1. Low |
| Owners | |
| Requester | dion (dot) rowney (at) usask (dot) ca |
| Created | 05/15/08 (664 days ago) |
| Due | |
| Updated | 12/15/09 (85 days ago) |
| Assigned | |
| Resolved | 12/15/09 (85 days ago) |
| Attachments | |
| Milestone | |
| Patch | No |
State ⇒ Rejected
Horde_Prefs_Ui way to interact with mime_drivers.php settings.
option appearing in 2 different locations: mime_driver config needs to
stay in the mime_driver config files where everything else about that
driver is configured.
current behavior of the mime_drivers.php setting.
Version ⇒ Git master
State ⇒ Feedback
and server load concerns (XSS/Phishing filtering is not cheap) and
seems to be better left to the discretion of an admin.
team can do it better than my hack of a solution.
mime_drivers.php I added an if statment and changed the boolean value
to be a variable name:
if ( $GLOBALS['prefs']->getValue('html_inline_viewing') === '0' ) {
$viewHtmlInline = false;
} else {
$viewHtmlInline = true;
}
/**
* HTML driver settings
*/
$mime_drivers['imp']['html'] = array(
'inline' => $viewHtmlInline,
and created a new preference in prefs.php:
$_prefs['html_inline_viewing'] = array (
'value' => 1,
'locked' => false,
'shared' => false,
'type' => 'checkbox',
'desc' => _("View messages as HTML when both HTML and plain text are
available (this change takes effect after log out)?"),
'help' => 'prefs-notavailable'
);
State ⇒ Feedback
Version ⇒ HEAD
State ⇒ Accepted
State ⇒ New
Patch ⇒
Milestone ⇒
Queue ⇒ IMP
Summary ⇒ Viewing Inline HTML vs text message as user settable option
Type ⇒ Enhancement
Priority ⇒ 1. Low
add the ability to give users the choice of viewing messages in HTML
or text by default as a preference option.
Has the Horde team looked at adding this as a user settable option if
inline HTML and text are being permitted (and a message has both
formats being sent in message)?
Can this be added as a request for future releases?