- don't show 'To' header if contains only /^undisclosed-recipients[:;]*$/

release-0.6
alecpl 16 years ago
parent 108d3b0836
commit 2106ec7043

@ -778,6 +778,8 @@ function rcmail_message_headers($attrib, $headers=NULL)
else
continue;
}
else if ($hkey == 'to' && preg_match('/^undisclosed-recipients[:;]*$/', $headers['to']))
continue;
else if (in_array($hkey, array('from', 'to', 'cc', 'bcc')))
$header_value = Q(rcmail_address_string($headers[$hkey], null, true, $attrib['addicon']), 'show');
else

Loading…
Cancel
Save