From: <pdo...@us...> - 2023-09-03 06:46:44
|
Revision: 14997 http://sourceforge.net/p/squirrelmail/code/14997 Author: pdontthink Date: 2023-09-03 06:46:42 +0000 (Sun, 03 Sep 2023) Log Message: ----------- Add TODO Modified Paths: -------------- branches/SM-1_4-STABLE/squirrelmail/functions/imap_messages.php Modified: branches/SM-1_4-STABLE/squirrelmail/functions/imap_messages.php =================================================================== --- branches/SM-1_4-STABLE/squirrelmail/functions/imap_messages.php 2023-08-24 22:21:36 UTC (rev 14996) +++ branches/SM-1_4-STABLE/squirrelmail/functions/imap_messages.php 2023-09-03 06:46:42 UTC (rev 14997) @@ -182,6 +182,7 @@ return $server_sort_array; } + // TODO: If capabilities include SORT=DISPLAY then 2 and 3 can be DISPLAYFROM... should this be a user or admin option? Maybe it could cycle/switch between FROM and DISPLAYFROM? $sort_on = array (0=> 'DATE', 1=> 'DATE', 2=> 'FROM', @@ -194,6 +195,7 @@ $sort_on[0] = 'ARRIVAL'; $sort_on[1] = 'ARRIVAL'; } + // TODO: If capabilities include SORT=DISPLAY then 2 and 3 can be DISPLAYTO... should this be a user or admin option? Maybe it could cycle/switch between TO and DISPLAYTO? if ($sent_folder == $mailbox) { $sort_on[2] = 'TO'; $sort_on[3] = 'TO'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |