@bobfrankston/mailx-imap 0.1.18 → 0.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -668,6 +668,11 @@ export class ImapManager extends EventEmitter {
668
668
  inactivityTimeout: isGmail ? 60000 : 300000,
669
669
  fetchChunkSize: isGmail ? 25 : 10,
670
670
  fetchChunkSizeMax: isGmail ? 500 : 100,
671
+ // Slow Dovecot shared-hosting (iecc.com) can take >10s to issue the
672
+ // initial banner under load. The 10s default surfaced as a red
673
+ // "Greeting timeout (10s)" banner in mailx during routine bursts.
674
+ // Gmail-via-IMAP responds instantly, no need to bump it there.
675
+ greetingTimeout: isGmail ? 10000 : 30000,
671
676
  });
672
677
  this.configs.set(account.id, config);
673
678
  // Register account in DB
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx-imap",
3
- "version": "0.1.18",
3
+ "version": "0.1.21",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -9,13 +9,13 @@
9
9
  },
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "@bobfrankston/mailx-types": "^0.1.7",
13
- "@bobfrankston/mailx-settings": "^0.1.8",
14
- "@bobfrankston/mailx-store": "^0.1.7",
15
- "@bobfrankston/iflow-direct": "^0.1.28",
12
+ "@bobfrankston/mailx-types": "^0.1.8",
13
+ "@bobfrankston/mailx-settings": "^0.1.10",
14
+ "@bobfrankston/mailx-store": "^0.1.8",
15
+ "@bobfrankston/iflow-direct": "^0.1.30",
16
16
  "@bobfrankston/tcp-transport": "^0.1.5",
17
17
  "@bobfrankston/smtp-direct": "^0.1.5",
18
- "@bobfrankston/mailx-sync": "^0.1.14",
18
+ "@bobfrankston/mailx-sync": "^0.1.15",
19
19
  "@bobfrankston/oauthsupport": "^1.0.26"
20
20
  },
21
21
  "repository": {
@@ -37,13 +37,13 @@
37
37
  },
38
38
  ".transformedSnapshot": {
39
39
  "dependencies": {
40
- "@bobfrankston/mailx-types": "^0.1.7",
41
- "@bobfrankston/mailx-settings": "^0.1.8",
42
- "@bobfrankston/mailx-store": "^0.1.7",
43
- "@bobfrankston/iflow-direct": "^0.1.28",
40
+ "@bobfrankston/mailx-types": "^0.1.8",
41
+ "@bobfrankston/mailx-settings": "^0.1.10",
42
+ "@bobfrankston/mailx-store": "^0.1.8",
43
+ "@bobfrankston/iflow-direct": "^0.1.30",
44
44
  "@bobfrankston/tcp-transport": "^0.1.5",
45
45
  "@bobfrankston/smtp-direct": "^0.1.5",
46
- "@bobfrankston/mailx-sync": "^0.1.14",
46
+ "@bobfrankston/mailx-sync": "^0.1.15",
47
47
  "@bobfrankston/oauthsupport": "^1.0.26"
48
48
  }
49
49
  }
@@ -1 +0,0 @@
1
- {"root":["./index.ts"],"version":"5.9.2"}