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: { smtpHost: {
validator: $.str.optional, validator: $.str.optional.nullable,
desc: { desc: {
'ja-JP': 'SMTPサーバのホスト' 'ja-JP': 'SMTPサーバのホスト'
} }
}, },
smtpPort: { smtpPort: {
validator: $.num.optional, validator: $.num.optional.nullable,
desc: { desc: {
'ja-JP': 'SMTPサーバのポート' 'ja-JP': 'SMTPサーバのポート'
} }
}, },
smtpUser: { smtpUser: {
validator: $.str.optional, validator: $.str.optional.nullable,
desc: { desc: {
'ja-JP': 'SMTPサーバのユーザー名' 'ja-JP': 'SMTPサーバのユーザー名'
} }
}, },
smtpPass: { smtpPass: {
validator: $.str.optional, validator: $.str.optional.nullable,
desc: { desc: {
'ja-JP': 'SMTPサーバのパスワード' 'ja-JP': 'SMTPサーバのパスワード'
} }