Resumed emails now don't put <> around emails.
authorfallas <fallas@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 30 Oct 2001 16:12:49 +0000 (16:12 +0000)
committerfallas <fallas@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 30 Oct 2001 16:12:49 +0000 (16:12 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1658 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/draft_actions.php

index 0a91cf0ec21b7510e3d37b836a73d2f1d6340f74..a8d145e71aae8c8fea113a10cb0ea078619e6970 100644 (file)
@@ -13,9 +13,9 @@ require_once ('../src/validate.php');
       static $header, $headerlength;
 
       if ($header == '') {
       static $header, $headerlength;
 
       if ($header == '') {
-         $to = expandAddrs(parseAddrs($t));
-         $cc = expandAddrs(parseAddrs($c));
-         $bcc = expandAddrs(parseAddrs($b));
+         $to = parseAddrs($t);
+         $cc = parseAddrs($c);
+         $bcc = parseAddrs($b);
          if (isset($identity) && ($identity != 'default')) {
             $reply_to = getPref($data_dir, $username, 'reply_to' . $identity);
             $from = getPref($data_dir, $username, 'full_name' . $identity);
          if (isset($identity) && ($identity != 'default')) {
             $reply_to = getPref($data_dir, $username, 'reply_to' . $identity);
             $from = getPref($data_dir, $username, 'full_name' . $identity);