Skip to content

Commit

Permalink
fix(config): add 'ses' to valid mail config transport options (#492)
Browse files Browse the repository at this point in the history
closes #467 
- add 'ses' to valid transport options list
  • Loading branch information
Adriaan Pelzer authored and acburdine committed Oct 9, 2017
1 parent 3c5235a commit 7f51138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commands/config/advanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ module.exports = {
// Designed to support the most common mail configs, more advanced configs will require editing the config file
mail: {
description: 'Mail transport, E.g SMTP, Sendmail or Direct',
validate: value => includes(['smtp', 'sendmail', 'direct'], value.toLowerCase()) || 'Invalid mail transport',
validate: value => includes(['smtp', 'sendmail', 'direct', 'ses'], value.toLowerCase()) || 'Invalid mail transport',
configPath: 'mail.transport',
type: 'string',
default: 'Direct',
Expand Down

0 comments on commit 7f51138

Please sign in to comment.