Summary | Viewing Inline HTML vs text message as user settable option |
Queue | IMP |
Queue Version | Git master |
Type | Enhancement |
State | Resolved |
Priority | 1. Low |
Owners | slusarz (at) horde (dot) org |
Requester | dion.rowney (at) usask (dot) ca |
Created | 05/15/2008 (6233 days ago) |
Due | |
Updated | 09/27/2010 (5368 days ago) |
Assigned | |
Resolved | 09/27/2010 (5368 days ago) |
Milestone | |
Patch | No |
Assigned to Michael Slusarz
State ⇒ Resolved
Request #6711: pref to choose preferred multipart/alternative display parthttp://git.horde.org/diff.php/imp/config/prefs.php.dist?rt=horde-git&r1=13dcbf8f824f5aefc3f2add2e7642d5e8fbba1f4&r2=dd7ad25824b6726b89a93d8c08ec1229057aaddf
http://git.horde.org/diff.php/imp/docs/CHANGES?rt=horde-git&r1=48724980857eef05ee6f589a3757263d477b697b&r2=dd7ad25824b6726b89a93d8c08ec1229057aaddf
http://git.horde.org/diff.php/imp/lib/Mime/Viewer/Alternative.php?rt=horde-git&r1=1cecd5d8a0a787eeedf60a26ce38d960bb3e06cd&r2=dd7ad25824b6726b89a93d8c08ec1229057aaddf
http://git.horde.org/diff.php/imp/lib/Prefs/Ui.php?rt=horde-git&r1=8267407b9326e82ce455e88ebd87d5841e0c3268&r2=dd7ad25824b6726b89a93d8c08ec1229057aaddf
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.
State ⇒ Feedback
Version ⇒ Git master
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
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ Viewing Inline HTML vs text message as user settable option
Queue ⇒ IMP
Milestone ⇒
Patch ⇒ No
State ⇒ New
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?