Browse Source

Resumed emails now don't put <> around emails.

fallas 24 years ago
parent
commit
184e171a2c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/draft_actions.php

+ 3 - 3
src/draft_actions.php

@@ -13,9 +13,9 @@ require_once ('../src/validate.php');
       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);