Author Topic: Mailto link  (Read 4528 times)

Offline Austar

  • Newbie
  • *
  • Posts: 3
Mailto link
« on: November 28, 2006, 05:00:21 PM »
Hello

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

Thanks.

Offline seansan

  • Jr. Member
  • **
  • Posts: 84
Re: Mailto link
« Reply #1 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?