Skip to content

Commit 59f3a2b

Browse files
refactor: change "outbox_ssl" to "outbox_secure" for MailAccount-related responses
refs conjoon/extjs-app-webmail#243
1 parent d6dceed commit 59f3a2b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/data/MailAccountSim.js

Lines changed: 4 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-2021 Thorsten Suckow-Homberg https://github.com/conjoon/extjs-dev-webmailsim
4+
* Copyright (C) 2019-2022 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
@@ -46,14 +46,15 @@ Ext.define("conjoon.dev.cn_mailsim.data.MailAccountSim", {
4646
outbox_port: 993,
4747
outbox_user: "outboxuser",
4848
outbox_password: "outboxpassword",
49-
outbox_ssl: true
49+
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0]
5050

5151
}, {
5252
id: "mail_account",
5353
name: "google mail",
5454
from: {name: "Peter Parker", address: "[email protected]"},
5555
replyTo: {name: "Peter Parker", address: "[email protected]"},
56-
inbox_type: "IMAP"
56+
inbox_type: "IMAP",
57+
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0]
5758
}],
5859

5960

0 commit comments

Comments
 (0)