From 55d9d5e0b7c75d7a4a2f59a76a8fdc793bf78b43 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Mon, 24 Feb 2014 08:16:10 -0500
Subject: [PATCH] Improvement in handling invalid email address strings
---
program/lib/Roundcube/rcube_mime.php | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/program/lib/Roundcube/rcube_mime.php b/program/lib/Roundcube/rcube_mime.php
index 55b70f6..091b2fa 100644
--- a/program/lib/Roundcube/rcube_mime.php
+++ b/program/lib/Roundcube/rcube_mime.php
@@ -366,6 +366,9 @@
$address = 'MAILER-DAEMON';
$name = substr($val, 0, -strlen($m[1]));
}
+ else if (preg_match('/('.$email_rx.')/', $val, $m)) {
+ $name = $m[1];
+ }
else {
$name = $val;
}
@@ -387,6 +390,7 @@
if (!$address && $name) {
$address = $name;
+ $name = '';
}
if ($address) {
--
Gitblit v1.9.1