summaryrefslogtreecommitdiff
path: root/program/lib/Mail
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-12-06 21:37:37 +0000
committerthomascube <thomas@roundcube.net>2006-12-06 21:37:37 +0000
commitb517af4a471283adc62ef82cb30b97e896bb6799 (patch)
tree615ba4f02d3e1c3a193f7e2dfcf0d608c14aa7e3 /program/lib/Mail
parentb25766b1b3b37d31f74c8b6bf320b07107917a8d (diff)
Optimized memory usage when sending mail; Include SMTP response in log; Fixed wrong header encoding
Diffstat (limited to 'program/lib/Mail')
-rw-r--r--program/lib/Mail/mime.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Mail/mime.php b/program/lib/Mail/mime.php
index 96d7025d8..a9f798ed8 100644
--- a/program/lib/Mail/mime.php
+++ b/program/lib/Mail/mime.php
@@ -820,7 +820,7 @@ class Mail_mime
if (preg_match('#[\x80-\xFF]{1}#', $value)) {
$suffix = '';
// Don't encode e-mail address
- if (preg_match('/(.+)\s(<.+@[a-z0-9\-\.]+\.[a-z]{2,5}>)$/Ui', $value, $matches)) {
+ if (preg_match('/(.+)\s(<.+@[a-z0-9\-\.]+>)$/Ui', $value, $matches)) {
$value = $matches[1];
$suffix = ' '.$matches[2];
}