Roundcube Community Forum

Release Support => Pending Issues => Topic started by: ThaDafinser on May 29, 2009, 02:50:42 AM

Title: Reply to all
Post by: ThaDafinser on May 29, 2009, 02:50:42 AM
Hello everybody!

I've checked the stable version yesterday and the button "reply to all" is still wrong.

It's a basic function in every mailprogramm and it should normally be like that:
Sender -> Recipient
Recipient -> Recipient
CC -> CC

and in 0.2.1 it's still: Recipient -> CC

THE FIX IS HERE: (compose.inc)


else if ($header=='to' && !empty($MESSAGE->headers->from)){
      $fvalue = $MESSAGE->headers->from;

      //HERE in $header=='to' the if from CC
      if (!empty($MESSAGE->reply_all)){
        $v = $MESSAGE->headers->to;
        $fvalue .= (!empty($fvalue) ? ', ' : '') . $v;
      }
    }
    // add recipent of original message if reply to all
    else if ($header=='cc' && !empty($MESSAGE->reply_all))
    {
      if ($v = $MESSAGE->headers->cc)
        $fvalue .= (!empty($fvalue) ? ', ' : '') . $v;
      /*
      * and out from here of course
      */
    }
Title: Reply to all
Post by: Julius Caesar on May 29, 2009, 03:11:33 AM
The best place to post this fix is the traclist at Available Reports ? RoundCube Webmail (http://trac.roundcube.net/report). The RC developers are rarely found here.
Title: Reply to all
Post by: ThaDafinser on May 29, 2009, 05:19:48 AM
Thx.

-> #1485885 (Reply to all -> FALSE) ? RoundCube Webmail (http://trac.roundcube.net/ticket/1485885)