We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9b48f6 commit 814bdcdCopy full SHA for 814bdcd
lib/connection.js
@@ -3467,11 +3467,13 @@ class Connection {
3467
3468
if (this.isGmail && accountPaths.includes('*') && !['\\Trash', '\\Junk'].includes(entry.specialUse)) {
3469
// no need to check this folder, as \All already covers it
3470
+ this.logger.info({ msg: 'Skip subconnection', path, reason: 'Covered by the All Mail folder' });
3471
continue;
3472
}
3473
3474
if (!this.isGmail && accountPaths.includes('*') && entry.specialUse === '\\Inbox') {
3475
// already the default
3476
+ this.logger.info({ msg: 'Skip subconnection', path, reason: 'Trying to use the default folder' });
3477
3478
3479
0 commit comments