@bobfrankston/mailx-imap 0.1.18 → 0.1.19
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 +5 -0
- package/package.json +11 -11
- package/tsconfig.tsbuildinfo +0 -1
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.
|
|
3
|
+
"version": "0.1.19",
|
|
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.
|
|
13
|
-
"@bobfrankston/mailx-settings": "^0.1.
|
|
14
|
-
"@bobfrankston/mailx-store": "^0.1.
|
|
15
|
-
"@bobfrankston/iflow-direct": "^0.1.
|
|
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.
|
|
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.
|
|
41
|
-
"@bobfrankston/mailx-settings": "^0.1.
|
|
42
|
-
"@bobfrankston/mailx-store": "^0.1.
|
|
43
|
-
"@bobfrankston/iflow-direct": "^0.1.
|
|
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.
|
|
46
|
+
"@bobfrankston/mailx-sync": "^0.1.15",
|
|
47
47
|
"@bobfrankston/oauthsupport": "^1.0.26"
|
|
48
48
|
}
|
|
49
49
|
}
|
package/tsconfig.tsbuildinfo
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"root":["./index.ts"],"version":"5.9.2"}
|