Changeset 51f55bd6 in github
- Timestamp:
- Sep 13, 2008 9:26:34 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- a980cb8
- Parents:
- 1038a66e
- File:
-
- 1 edited
-
program/steps/mail/compose.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/steps/mail/compose.inc
rccd63c5 r51f55bd6 210 210 $to_addresses = $IMAP->decode_address_list($fvalue); 211 211 $fvalue = ''; 212 212 213 foreach ($to_addresses as $addr_part) 213 214 { 214 if (!empty($addr_part['mailto']) && !in_array($addr_part['mailto'], $sa_recipients) && (!$MESSAGE->compose_from || !in_array($addr_part['mailto'], $MESSAGE->compose_from))) 215 if (!empty($addr_part['mailto']) 216 && !in_array($addr_part['mailto'], $sa_recipients) 217 && (!$MESSAGE->compose_from 218 || !in_array($addr_part['mailto'], $MESSAGE->compose_from) 219 || count($to_addresses)==1)) // allow reply to yourself 215 220 { 216 221 $fvalue .= (strlen($fvalue) ? ', ':'').$addr_part['string'];
Note: See TracChangeset
for help on using the changeset viewer.
