X-Priority Low is 5, not 3. Thanks Thierry Godefroy.
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 5 Feb 2008 04:22:42 +0000 (04:22 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 5 Feb 2008 04:22:42 +0000 (04:22 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12917 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/imap_messages.php

index e7df007bbc75981942b0c0d738db1aa713044e55..32c2e7dc1d6bac14d2482407f7483bb7c1fb2848 100755 (executable)
@@ -716,7 +716,7 @@ function parseFetch(&$aResponse,$aMessageList = array()) {
                                         if  (is_numeric($sPrio)) {
                                             $iPrio = (int) $sPrio;
                                         } elseif ( $sPrio == 'non-urgent' || $sPrio == 'low' ) {
-                                            $iPrio = 3;
+                                            $iPrio = 5;
                                         } elseif ( $sPrio == 'urgent' || $sPrio == 'high' ) {
                                             $iPrio = 1;
                                         } else {