Opened 7 years ago

Closed 7 years ago

Last modified 5 years ago

#1484031 closed Feature Patches (fixed)

From header over multiple lines parses incorrectly

Reported by: oliverl Owned by:
Priority: 5 Milestone:
Component: Interface Version:
Severity: normal Keywords:
Cc:

Description

When a From header is split over multiple lines, for example:

From: "Some Name"
 <sender@example.com>

This is parsed incorrectly, leading to some wildy incorrect HTML code in the folder list and when viewing the message. For example:

<td class="from" width="90%"><a href="mailto:"Some Name"<br />
sender@example.com" onclick="return rcmail.command('compose','"Some Name"<br />

sender@example.com',this)" class="rcmContactAddress" title=""Some Name"<br />
sender@example.com">Some Name&quot;<br /><br />
sender@example.com</a>&nbsp;<a href="#add" onclick="return rcmail.command('add-contact','Some+Name%22%0Asender%40example.com+%3C%22Some+Name%22%0Asender%40example.com%3E',this)" title="Add to address book"><img src="skins/default/images/icons/plus.gif" alt="add" border="0" /></a></td>
</tr>

This patch fixes this by removing linebreaks in _parse_address_list():

Index: program/include/rcube_imap.inc
===================================================================
--- program/include/rcube_imap.inc      (revision 347)
+++ program/include/rcube_imap.inc      (working copy)
@@ -2382,6 +2382,7 @@

     foreach ($a as $key => $val)
       {
+      $val = str_replace("\n", "", $val);
       $val = str_replace("\"<", "\" <", $val);
       $sub_a = $this->_explode_quoted_string(' ', $this->decode_header($val));
       $result[$key]['name'] = '';

Change History (3)

comment:1 Changed 7 years ago by thomasb

  • Resolution set to fixed
  • Status changed from new to closed

Added in [d04d2022]

comment:3 Changed 6 years ago by oneracks

货架 货架 货架 货架 货架 货架 货架 货架 货架 货架 货架 货架 托盘 托盘 托盘 托盘 托盘 托盘 塑料托盘 塑料托盘 塑料托盘 塑料托盘 塑料托盘 塑料托盘 塑料托盘 塑料托盘 塑料托盘 塑料托盘 仓储笼 仓储笼 仓储笼 仓储笼 仓储笼 仓储笼 仓储笼 登高车 登高车 登高车 登高车 登高车 钢托盘 钢托盘 钢托盘 钢托盘 钢托盘 料箱 料箱 料箱 料箱 料箱 减速机 减速机 减速机 减速机 流水线 流水线 流水线 防雷器 obo防雷器 dehn防雷器 上海律师 上海律师 上海律师 上海翻译 上海翻译公司 上海翻译 上海翻译公司 深圳机票 杭州机票 成都打折机票 成都国际机票 北京机票 成都机票 成都特价机票 广州机票 成都机票 成都特价机票 成都打折机票 成都国际机票 深圳机票 杭州机票 广州机票 注册香港公司 注册香港公司 注册香港公司 注册香港公司 注册香港公司 香港公司注册 香港公司注册 香港公司 香港公司 香港公司 注册美国公司 注册美国公司 美国公司注册 美国公司注册 美国公司 美国公司 注册英国公司 注册英国公司 英国公司注册 英国公司注册 英国公司 英国公司

Note: See TracTickets for help on using tickets.