On a fresh carbonio install, when trying to send email from webmail, it fails.
On checking the log file /opt/zextras/log/mailbox.log
tail -f /opt/zextras/log/mailbox.log
found following error message
com.zimbra.cs.mailbox.MailServiceException: try again: Unable to connect to the MTA
The error was because carbonio use invalid port for smtp:
zextras@mail:~$ zmprov gcf zimbraSmtpPort
zimbraSmtpPort: 20025
zextras@mail:~$
To fix it, set SMTP port to 25 with the command:
zmprov mcf zimbraSmtpPort 25
After running the command, you can verify SMTP port is changed with the command:
zextras@mail:~$ zmprov gcf zimbraSmtpPort
zimbraSmtpPort: 25
zextras@mail:~$
Leave a Reply