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
      */
    }
			
			
			
				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.
			
			
			
				Thx.
-> #1485885 (Reply to all -> FALSE) ? RoundCube Webmail (http://trac.roundcube.net/ticket/1485885)