forked from FoundKeyGang/FoundKey
Fix #3430
This commit is contained in:
parent
55a57db958
commit
15efbfb244
1 changed files with 4 additions and 4 deletions
|
@ -252,28 +252,28 @@ export const meta = {
|
|||
},
|
||||
|
||||
smtpHost: {
|
||||
validator: $.str.optional,
|
||||
validator: $.str.optional.nullable,
|
||||
desc: {
|
||||
'ja-JP': 'SMTPサーバのホスト'
|
||||
}
|
||||
},
|
||||
|
||||
smtpPort: {
|
||||
validator: $.num.optional,
|
||||
validator: $.num.optional.nullable,
|
||||
desc: {
|
||||
'ja-JP': 'SMTPサーバのポート'
|
||||
}
|
||||
},
|
||||
|
||||
smtpUser: {
|
||||
validator: $.str.optional,
|
||||
validator: $.str.optional.nullable,
|
||||
desc: {
|
||||
'ja-JP': 'SMTPサーバのユーザー名'
|
||||
}
|
||||
},
|
||||
|
||||
smtpPass: {
|
||||
validator: $.str.optional,
|
||||
validator: $.str.optional.nullable,
|
||||
desc: {
|
||||
'ja-JP': 'SMTPサーバのパスワード'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue