FIxing bug #600369
authorullgren <ullgren@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 28 Aug 2002 22:35:03 +0000 (22:35 +0000)
committerullgren <ullgren@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 28 Aug 2002 22:35:03 +0000 (22:35 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3506 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/smtp.php

index d6cff03768b056a66e2f58c136d9667f6310c6ae..c57936c4500137e5d3cd8b0464afcba5832f976f 100644 (file)
@@ -960,17 +960,16 @@ function createPriorityHeaders($prio) {
     $prio_headers['X-Priority'] = $prio;
 
     switch($prio) {
-    case 1: $prio_headers['Importance'] = 'High';
-        $prio_headers['X-MSMail-Priority'] = 'High';
+    case 1: 
+        $prio_headers['Importance'] = 'High';
         break;
 
-    case 3: $prio_headers['Importance'] = 'Normal';
-        $prio_headers['X-MSMail-Priority'] = 'Normal';
+    case 3: 
+        $prio_headers['Importance'] = 'Normal';
         break;
 
     case 5:
         $prio_headers['Importance'] = 'Low';
-        $prio_headers['X-MSMail-Priority'] = 'Low';
         break;
     }
     return  $prio_headers;