Skip to content

Commit b1e46ac

Browse files
refactor: update package with latest dependencies
refs conjoon/conjoon#23
1 parent a0ee6ba commit b1e46ac

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@
8383
},
8484
"homepage": "https://github.com/conjoon/extjs-dev-webmailsim#readme",
8585
"dependencies": {
86-
"@l8js/l8": "^0.8.0",
87-
"@coon-js/extjs-lib-core": "^1.0.0"
86+
"@l8js/l8": "^0.10.1",
87+
"@coon-js/extjs-lib-core": "^1.0.5"
8888
},
8989
"devDependencies": {
9090
"@commitlint/cli": "^13.2.0",

src/data/MailAccountSim.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* conjoon
33
* extjs-dev-webmailsim
4-
* Copyright (C) 2019-2022 Thorsten Suckow-Homberg https://github.com/conjoon/extjs-dev-webmailsim
4+
* Copyright (C) 2019-2023 Thorsten Suckow-Homberg https://github.com/conjoon/extjs-dev-webmailsim
55
*
66
* Permission is hereby granted, free of charge, to any person
77
* obtaining a copy of this software and associated documentation
@@ -45,15 +45,17 @@ Ext.define("conjoon.dev.cn_mailsim.data.MailAccountSim", {
4545
outbox_port: 993,
4646
outbox_user: "outboxuser",
4747
outbox_password: "outboxpassword",
48-
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0]
48+
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0],
49+
subscriptions: ["INBOX"]
4950

5051
}, {
5152
id: "mail_account",
5253
name: "google mail",
5354
from: {name: "Peter Parker", address: "[email protected]"},
5455
replyTo: {name: "Peter Parker", address: "[email protected]"},
5556
inbox_type: "IMAP",
56-
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0]
57+
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0],
58+
subscriptions: ["INBOX", "[Gmail]"]
5759
}],
5860

5961

0 commit comments

Comments
 (0)