git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14381
7612ce4b-ef26-0410-bec9-
ea0150e637f0
if (!empty($orig_to)) {
$send_to = $orig_to;
+
+ // in this case, we also want to reset the FROM
+ // identity as well (it should match the original
+ // *FROM* header instead of TO or CC)
+ //
+ if (count($idents) > 1) {
+ $identity = '';
+ foreach($idents as $i => $id) {
+ if (!empty($id['email_address'])
+ && strpos($orig_from, $id['email_address']) !== FALSE) {
+ $identity = $i;
+ break;
+ }
+ }
+ }
+
}
}