This commit is contained in:
syuilo 2018-11-29 22:05:11 +09:00 committed by GitHub
parent 55a57db958
commit 15efbfb244
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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サーバのパスワード'
}