From 99c7a62ce3c6453a00a981d213ad4a00c71d3265 Mon Sep 17 00:00:00 2001 From: fidian Date: Thu, 28 Jun 2001 18:47:53 +0000 Subject: [PATCH] Some mail servers auto-create the Trash folder. With this tiny bit of code, we automatically subscribe the Sent and Trash folders just in case they do exist and aren't subscribed to. It's just part of the one-time overhead when logging in. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1436 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/left_main.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/left_main.php b/src/left_main.php index 3d38e173..a227e467 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -24,11 +24,15 @@ if (isset ($sent_folder) && $sent_folder != "none") { if (!sqimap_mailbox_exists ($imapConnection, $sent_folder)) { sqimap_mailbox_create ($imapConnection, $sent_folder, ""); + } else { + sqimap_subscribe($imapConnection, $sent_folder); } } if (isset ($trash_folder) && $trash_folder != "none") { if (!sqimap_mailbox_exists ($imapConnection, $trash_folder)) { sqimap_mailbox_create ($imapConnection, $trash_folder, ""); + } else { + sqimap_subscribe($imapConnection, $trash_folder); } } $auto_create_done = true; -- 2.25.1