Merge branch 'master' into techbar

fixed
This commit is contained in:
ThaMunsta
2024-09-18 15:59:51 -04:00
162 changed files with 4550 additions and 2539 deletions

View File

@@ -345,7 +345,7 @@ function createMailboxFolder($client, $folderName) {
}
// Function to subscribe to a folder in the mailbox
function subscribeMailboxFolder($client, $folder) {
function subscribeMailboxFolder($folder) {
if ($folder) {
try {
// Subscribe to the folder
@@ -378,7 +378,7 @@ $client->connect();
$folder = createMailboxFolder($client, 'ITFlow');
// Subscribe to the "ITFlow" mailbox folder
subscribeMailboxFolder($client, $folder);
subscribeMailboxFolder($folder);
// Possible names for the inbox folder
$inboxNames = ['Inbox', 'INBOX', 'inbox'];