On Mon, Aug 04, 2014 at 11:00:18AM -0400, Tech Support Department wrote:
> Can Postfix handle multiple IP addresses with individual certificates
> without having to start multiple instances of Postfix?
In master(5).cf each smtpd(8) service (bound to a particular IP
address) can be configured with various per-service parameter
overrides. For example:
master.cf:
192.0.2.1 inet n - n - - smtpd
-o smtpd_tls_cert_file=${cert_192_0_2_1}
192.0.2.2 inet n - n - - smtpd
-o smtpd_tls_cert_file=${cert_192_0_2_2}
main.cf:
cert_192_0_2_1 = ${config_directory}/192.0.2.1.pem
cert_192_0_2_2 = ${config_directory}/192.0.2.2.pem
--
Viktor.