Hello, Im new to Roundcube.
Is there any solution to limit the number of recipients?
I even cant find where to get it limited, i tried to edit rcube_smtp.inc and wrote:
if (count($recipients) > 10) {
smtp_reset();
$response[] .= "Too many recipients";
return FALSE;
}
Just before the line: (around line 170)
//set recipients
foreach($recipients as $recipient)
Thank you!
Janeszka