diff options
author | listandshare on ubuntu01 <jmorgan@foursquarestaff.com> | 2011-06-03 09:36:02 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-06-03 09:36:02 -0700 |
commit | 546f20c9f81b2a3e515141726c50d2621c2411df (patch) | |
tree | fa9da307b5b1ecdcfd092f53bd8690b420bacfe9 /scripts/forward_emails.php | |
parent | c4931852362c7a54498742ced909a81c42fc1209 (diff) | |
parent | bd11955780a958fdee35d03c94b88e65eea3cdd3 (diff) |
Merge branch 'master' of 10.20.30.9:git/community
Diffstat (limited to 'scripts/forward_emails.php')
-rwxr-xr-x | scripts/forward_emails.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/forward_emails.php b/scripts/forward_emails.php index ae84ee3..92c7563 100755 --- a/scripts/forward_emails.php +++ b/scripts/forward_emails.php @@ -47,10 +47,13 @@ foreach ($splitmsg as $line) { $subject = $header[1]; break; - case 'delivered-to': + case 'x-original-to': $to = $header[1]; break; + case 'delivered-to': + break; + default: $headers .= "$line\n"; } |