Hi,
I have tried every suggestion under the sun for the mail config part of “config.production.json” several mailguns and several gmails.
My ghost install works. I can browse the blog, just can’t do signups…
“Failed to send magic link email”
I allowed ports 465 and 587 in ufw. I even disabled ufw for testing purposes.
Here are my details:
Ghost-CLI version: 1.24.0
Ghost version: 5.33.0
Checking system Node.js version - found v16.19.0
Checking logged in user
Ensuring user is not logged in as ghost user
Checking if logged in user is directory owner
Checking current folder permissions
Checking system compatibility
Checking for a MySQL installation
Instance is currently running
Validating config [skipped]
Checking folder permissions
Checking file permissions
Checking content folder ownership
Checking memory availability
Checking binary dependencies
Checking free space
Checking systemd unit file
Checking systemd node version - found v16.19.0
Distributor ID: Ubuntu
Description: Ubuntu 20.04.5 LTS
Release: 20.04
Codename: focal
here is the entire config:
{
“url”: “https://mydomain.com”,
“server”: {
“port”: 2368,
“host”: “127.0.0.1”
},
“database”: {
“client”: “mysql”,
“connection”: {
“host”: “localhost”,
“user”: “ghostcms”,
“password”: “mypass”,
“database”: “myblog_prod”
}
},
“mail”: {
“transport”: “SMTP”,
“options”: {
“service”: “Google”,
“host”: “smtp.gmail.com”,
“port”: 587,
“auth”: {
“user”: “mygmailaddress@gmail.com”,
“pass”: “zygauffuaevnfrce”
}
}
},
“logging”: {
“transports”: [
“file”,
“stdout”
]
},
“process”: “systemd”,
“paths”: {
“contentPath”: “/var/www/myblog/content”
}
Any ideas?
Thank you,
Brent