From: stekkel Date: Mon, 27 Jan 2003 09:26:55 +0000 (+0000) Subject: add checks for Messge Disposition Notifications. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9790bda676375033eadf58732cd2ae59a0825e52;p=squirrelmail.git add checks for Messge Disposition Notifications. Now we also identify X-Confirm-reading-To and Return-Receipt-To. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4476 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/class/mime/Rfc822Header.class.php b/class/mime/Rfc822Header.class.php index 5bd745fe..21774295 100644 --- a/class/mime/Rfc822Header.class.php +++ b/class/mime/Rfc822Header.class.php @@ -145,6 +145,8 @@ class Rfc822Header { $value = $this->stripComments($value); $this->references = $value; break; + case 'x-confirm-reading-to': + case 'return-receipt-to': case 'disposition-notification-to': $value = $this->stripComments($value); $this->dnt = $this->parseAddress($value);