Changeset 5aeeeba in github
- Timestamp:
- Nov 15, 2011 6:22:40 AM (18 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
- Children:
- c1fcd1b
- Parents:
- 305b366b
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/mail/compose.inc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r89dcf540 r5aeeeba 2 2 =========================== 3 3 4 - Fix regression in setting recipient to self when replying to a Sent message (#1487074) 4 5 - Fix listing of folders in hidden namespaces (#1486796) 5 6 - Don't consider \Noselect flag when building folders tree (#1488004) -
program/steps/mail/compose.inc
r81f5dd7 r5aeeeba 359 359 $mailreplyto = $MESSAGE->headers->others['mail-reply-to']; 360 360 361 // Reply to mailing list... 361 362 if ($MESSAGE->reply_all == 'list' && $mailfollowup) 362 363 $fvalue = $mailfollowup; … … 364 365 && preg_match('/<mailto:([^>]+)>/i', $MESSAGE->headers->others['list-post'], $m)) 365 366 $fvalue = $m[1]; 367 // Reply to... 366 368 else if ($MESSAGE->reply_all && $mailfollowup) 367 369 $fvalue = $mailfollowup; … … 372 374 else if (!empty($MESSAGE->headers->from)) 373 375 $fvalue = $MESSAGE->headers->from; 376 377 // Reply to message sent by yourself (#1487074) 378 if (!empty($ident) && $fvalue == $ident['ident']) { 379 $fvalue = $MESSAGE->headers->to; 380 } 374 381 } 375 382 // add recipient of original message if reply to all
Note: See TracChangeset
for help on using the changeset viewer.
