From 9790bda676375033eadf58732cd2ae59a0825e52 Mon Sep 17 00:00:00 2001 From: stekkel Date: Mon, 27 Jan 2003 09:26:55 +0000 Subject: [PATCH] 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 --- class/mime/Rfc822Header.class.php | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.25.1