Skip to content

Commit

Permalink
Avoid double-quoting of some message headers; wrap email address stri…
Browse files Browse the repository at this point in the history
…ngs in <span> for better styling
  • Loading branch information
thomascube committed Oct 1, 2012
1 parent dd52581 commit 61512fe
Showing 1 changed file with 26 additions and 12 deletions.
38 changes: 26 additions & 12 deletions program/steps/mail/func.inc
Expand Up @@ -319,7 +319,7 @@ function rcmail_js_message_list($a_headers, $insert_top=FALSE, $a_show_cols=null
$col_name = $col == 'fromto' ? $smart_col : $col;

if (in_array($col_name, array('from', 'to', 'cc', 'replyto')))
$cont = Q(rcmail_address_string($header->$col_name, 3, false, null, $header->charset), 'show');
$cont = rcmail_address_string($header->$col_name, 3, false, null, $header->charset);
else if ($col == 'subject') {
$cont = trim(rcube_mime::decode_header($header->$col, $header->charset));
if (!$cont) $cont = rcube_label('nosubject');
Expand Down Expand Up @@ -957,6 +957,8 @@ function rcmail_message_headers($attrib, $headers=NULL)
$output_headers = array();

foreach ($standard_headers as $hkey) {
$ishtml = false;

if ($headers[$hkey])
$value = $headers[$hkey];
else if ($headers['others'][$hkey])
Expand All @@ -981,32 +983,41 @@ function rcmail_message_headers($attrib, $headers=NULL)
continue;
}
else if ($hkey == 'replyto') {
if ($headers['replyto'] != $headers['from'])
if ($headers['replyto'] != $headers['from']) {
$header_value = rcmail_address_string($value, null, true, $attrib['addicon'], $headers['charset']);
$ishtml = true;
}
else
continue;
}
else if ($hkey == 'mail-reply-to') {
if ($headers['mail-replyto'] != $headers['reply-to']
&& $headers['reply-to'] != $headers['from']
)
) {
$header_value = rcmail_address_string($value, null, true, $attrib['addicon'], $headers['charset']);
$ishtml = true;
}
else
continue;
}
else if ($hkey == 'mail-followup-to') {
$header_value = rcmail_address_string($value, null, true, $attrib['addicon'], $headers['charset']);
$ishtml = true;
}
else if (in_array($hkey, array('from', 'to', 'cc', 'bcc'))) {
$header_value = rcmail_address_string($value, $attrib['max'], true, $attrib['addicon'], $headers['charset']);
$ishtml = true;
}
else if (in_array($hkey, array('from', 'to', 'cc', 'bcc')))
$header_value = rcmail_address_string($value, null, true, $attrib['addicon'], $headers['charset']);
else if ($hkey == 'subject' && empty($value))
$header_value = rcube_label('nosubject');
else
$header_value = trim(rcube_mime::decode_header($value, $headers['charset']));

$output_headers[$hkey] = array(
'title' => rcube_label(preg_replace('/(^mail-|-)/', '', $hkey)),
'value' => $header_value, 'raw' => $value
'value' => $header_value,
'raw' => $value,
'html' => $ishtml,
);
}

Expand All @@ -1022,7 +1033,7 @@ function rcmail_message_headers($attrib, $headers=NULL)

foreach ($plugin['output'] as $hkey => $row) {
$table->add(array('class' => 'header-title'), Q($row['title']));
$table->add(array('class' => 'header '.$hkey), Q($row['value'], ($hkey == 'subject' ? 'strict' : 'show')));
$table->add(array('class' => 'header '.$hkey), $row['html'] ? $row['value'] : Q($row['value'], ($hkey == 'subject' ? 'strict' : 'show')));
}

return $table->show($attrib);
Expand Down Expand Up @@ -1444,7 +1455,7 @@ function rcmail_address_string($input, $max=null, $linked=false, $addicon=null,
}

if ($addicon && $_SESSION['writeable_abook']) {
$address = html::span(null, $address . html::a(array(
$address .= html::a(array(
'href' => "#add",
'onclick' => sprintf("return %s.command('add-contact','%s',this)", JS_OBJECT_NAME, $string),
'title' => rcube_label('addtoaddressbook'),
Expand All @@ -1453,15 +1464,18 @@ function rcmail_address_string($input, $max=null, $linked=false, $addicon=null,
html::img(array(
'src' => $CONFIG['skin_path'] . $addicon,
'alt' => "Add contact",
))));
)));
}
$out .= $address;
$out .= html::span('adr', $address);
}
else {
$address = '';
if ($name)
$out .= Q($name);
$address .= Q($name);
if ($mailto)
$out .= (strlen($out) ? ' ' : '') . sprintf('&lt;%s&gt;', Q($mailto));
$address .= (strlen($address) ? ' ' : '') . sprintf('&lt;%s&gt;', Q($mailto));

$out .= html::span('adr', $address);
}

if ($c>$j)
Expand Down

0 comments on commit 61512fe

Please sign in to comment.