Roundcube Community Forum

Recycle Bin => Recycle Bin => Topic started by: Austar on November 28, 2006, 05:00:21 PM

Title: Mailto link
Post by: Austar on November 28, 2006, 05:00:21 PM
Hello

Is it possible to turn the Mailto links off in the Sender column?

Thanks.
Title: Re: Mailto link
Post by: seansan on December 04, 2006, 12:26:57 PM
goto line 2035 in rcube_imap_.inc (SV391, or search for string below)

and remove "'mailto' => $address,"
Code: [Select]
  $out[$j] = array('name' => $name,
           'mailto' => $address,
           'string' => $string);

becomes

Code: [Select]
  $out[$j] = array('name' => $name,
           'string' => $string);


Maybe someone can make this an option to set?