Fix bug where invalid recipients could be silently discareded (#5739)

pull/5755/head
Aleksander Machniak 7 years ago
parent baa8e27856
commit 67479579e5

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
- Fix bug where invalid recipients could be silently discareded (#5739)
RELEASE 1.3-rc
--------------
- "Flattened" the larry theme: fresher look by removing shadows and gradients

@ -897,9 +897,6 @@ function rcmail_email_input_format($mailto, $count=false, $check=true)
$result[] = format_email_recipient($address, $name);
$item = $address;
}
else if (trim($item)) {
continue;
}
// check address format
$item = trim($item, '<>');

Loading…
Cancel
Save