@bobfrankston/rmfmail 1.0.519 → 1.0.521
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/client/app.js +15 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +14 -1
- package/package.json +7 -7
- package/packages/mailx-imap/index.d.ts.map +1 -1
- package/packages/mailx-imap/index.js +5 -0
- package/packages/mailx-imap/index.js.map +1 -1
- package/packages/mailx-imap/index.ts +5 -0
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +1 -1
- package/packages/mailx-imap/tsconfig.tsbuildinfo +0 -1
|
@@ -692,6 +692,11 @@ export class ImapManager extends EventEmitter {
|
|
|
692
692
|
inactivityTimeout: isGmail ? 60000 : 300000,
|
|
693
693
|
fetchChunkSize: isGmail ? 25 : 10,
|
|
694
694
|
fetchChunkSizeMax: isGmail ? 500 : 100,
|
|
695
|
+
// Slow Dovecot shared-hosting (iecc.com) can take >10s to issue the
|
|
696
|
+
// initial banner under load. The 10s default surfaced as a red
|
|
697
|
+
// "Greeting timeout (10s)" banner in mailx during routine bursts.
|
|
698
|
+
// Gmail-via-IMAP responds instantly, no need to bump it there.
|
|
699
|
+
greetingTimeout: isGmail ? 10000 : 30000,
|
|
695
700
|
});
|
|
696
701
|
|
|
697
702
|
this.configs.set(account.id, config);
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/mailx-imap",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.21",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@bobfrankston/mailx-imap",
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.21",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@bobfrankston/iflow-direct": "^0.1.27",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"root":["./index.ts"],"version":"5.9.2"}
|