You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed this error when I wanted to test my config after I upgrading to 1.8.0.
✖ Validating config
A ConfigError occurred.
Error detected in the production configuration.
Message: Invalid mail transport
Configuration Key(s): mail.transport
Current Value(s): SES
Help: Run `ghost config <key> <new value>` for each key to fix the issue.
Debug Information:
Node Version: v6.9.2
Ghost-CLI Version: 1.1.1
Environment: production
Command: 'ghost doctor startup'
A ConfigError occurred.
Error detected in the production configuration.
Message: Invalid mail transport
Configuration Key(s): mail.transport
Current Value(s): SES
Help: Run `ghost config <key> <new value>` for each key to fix the issue.
Debug Information:
Node Version: v6.11.2
Ghost-CLI Version: 1.1.2
Environment: production
Command: 'ghost start'
I've had to fix it as follows:
In lib/commands/config/advanced.js: find the array: ['smtp', 'sendmail', 'direct'] and add 'ses', to make it ['smtp', 'sendmail', 'direct', 'ses']
Transferring issue here from #8952.
I noticed this error when I wanted to test my config after I upgrading to 1.8.0.
My SES config is as follows;
I'm using
pm2
to run Ghost and everything, including emails, seem to work. So, I assume this must be an issue with thedoctor
.The text was updated successfully, but these errors were encountered: