From: pdontthink Date: Tue, 5 Feb 2008 04:22:42 +0000 (+0000) Subject: X-Priority Low is 5, not 3. Thanks Thierry Godefroy. X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=aa04b27dce638ee05b60e9c8e7b2539e6426848a X-Priority Low is 5, not 3. Thanks Thierry Godefroy. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12917 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/imap_messages.php b/functions/imap_messages.php index e7df007b..32c2e7dc 100755 --- a/functions/imap_messages.php +++ b/functions/imap_messages.php @@ -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 {