Hello
Is it possible to turn the Mailto links off in the Sender column?
Thanks.
goto line 2035 in rcube_imap_.inc (SV391, or search for string below)
and remove "'mailto' => $address,"
$out[$j] = array('name' => $name,
'mailto' => $address,
'string' => $string);
becomes
$out[$j] = array('name' => $name,
'string' => $string);
Maybe someone can make this an option to set?