From 01d3a2900ae960b3dae4c4e54f708ce7accab532 Mon Sep 17 00:00:00 2001 From: stekkel Date: Thu, 22 Aug 2002 12:20:48 +0000 Subject: [PATCH] added user-agent check (from Masato Japanese patches) (this has nothing to do with Japanese, just an enhancement) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3410 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- class/mime.class.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/class/mime.class.php b/class/mime.class.php index a474da74..a2884692 100644 --- a/class/mime.class.php +++ b/class/mime.class.php @@ -169,9 +169,13 @@ class rfc822_header case ('content-disposition'): $this->parseDisposition($value); break; + case ('user-agent'): case ('x-mailer'): $this->xmailer = $value; break; + case ('user-agent'): + $this->xmailer = $value; + break; case ('x-priority'): $this->priority = $value; break; -- 2.25.1