installing SSL certificate in
closing this as there is been no revert on this
Need SMTP configuration file
SMTP 587 TLS auth failure
indimail-mta gets configureed for 25, 465, 587 and ODMR port 366. All of them gets configured by creating environment variables in the variables directory for that service. So just configure qmail-smtpd for port 465. Just follow the wiki on how to do that https://github.com/indimail/indimail-mta/wiki/0-IndiMail-Wiki
indimail mostly doesn't have any configuration file. All configuration is through environment variables. All services are configured as directories in /service for Linux Each service name is the name of the directory in /service. e.g. /service/qmail-smtpd.25 is the standard SMTP service for port 25. Similary /service/qmail-smtpd.465 is the SMTP over TLS service for port 465 and /service/qmail-smtpd.587 is the standard SMTP submission port Every service is configured using environment variable. The...
On Thu, 18 Apr 2024 at 21:50, Ssnatl ssnatl@users.sourceforge.net wrote: Hello Manvendra, We are using our own certificate from a vendor. I have replaced that certificate in /etc/indimail/certs/servercert.pem and restarted the service as above. OK But all our internal mails are connecting fine except external. Look like port 25 is not connecting to internet. So our remote mail boxes are having issues. qmail-smtpd doesn't connect to the internet. It is the other way round. Clients connect to port...
You can generate your own certificate using letsencrypt. If you want to generate self signed certificate then use the following command. Let's say your domain is example.com svctool --config=cert --postmaster=postmaster@example.com --common_name=example --force The above command will overwrite /etc/indimail/certs/servercert.pem and /etc/indimail/certs/clientcert.pem. But self signed certs are not of much use unless all clients will be from your own hosts. So basically you have to replace servercert.pem...