﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
1484247,Email Addresses Incorrectly Parsed,sincewednesday,,"When an email address is of the form:

   John Doe<john.doe@mail.com>

(missing space between name and ""<""), the address is misparsed and displayed as

   NAME = John

   EMAIL = Doejohn.doe@mail.com

A quick fix in ""program/include/rcube_imap.inc"" ""_parse_address_list is to change:

  $val = str_replace(""\""<"", ""\"" <"", $val);

to:

  $val = preg_replace(""/([\""\w])</"", ""$1 <"", $val);
",Bugs,closed,5,0.1-rc1,Interface,0.1-beta,normal,fixed,,
