Self hosted instance, mail server (hog) did not send any e-mail to the new member mail address
Hi, i fallow Proof-of-Concept Installation steps and install self hosted instance on my ubuntu machine, all staff are working fine but as i enabled MailHog service for send like user invitations, it did not work and new member did not recive any e-mail.
Did i miss anything?
Config:
mail {
outgoing {
enabled = true
// SMTP settings
fromAddress = "noreplyspace@dpi.ir"
host = "mailhog"
port = 1025
protocol = "SMTP"
login = "space"
password = "space"
messageQueuePrefix = "mailQueue"
// handling properties
aggregationDelaySecs = 900
rateLimitPerSecond = 3
}
}
Thanks In advance.
Please sign in to leave a comment.
Knight Hooman, please note that MailHog doesn't send any emails to the user, but provides a handy interface to get all emails sent by Space. If you'd like to deliver email to your users, it's necessary to connect Space to a real SMTP server the same way it's described for MailHog.
Pavel Boger @...
I have edited my real smtp server like this. But still not receiving the mails, can you please check this.
My mail server is mail.aimway.de
and user is space@aimway.de
SMTP Port:25
mail {
outgoing {
enabled = true
// SMTP settings
fromAddress = "space@aimway.de"
host = "aimway.de"
port = 25
protocol = "SMTP"
login = "space"
password = "*********"
messageQueuePrefix = "mailQueue"
// handling properties
aggregationDelaySecs = 900
rateLimitPerSecond = 3
}
}