Missing pop3 ssl entry in Dovecot when enablig letsencryp.

When I enable the letsencrypt for a virtual server, to the /etc/dovecot/dovecot.conf is only added entries for the imap protocol, but should also be for pop3.

The following is added:

local 192.168.11.12 {
  protocol imap {
    ssl_cert = </home/domain.com/ssl.cert
    ssl_key = </home/domain.com/ssl.key
    ssl_ca = </home/domain.com/ssl.ca
  }
}

Should be added:

local 192.168.11.12 {
  protocol imap {
    ssl_cert = </home/domain.com/ssl.cert
    ssl_key = </home/domain.com/ssl.key
    ssl_ca = </home/domain.com/ssl.ca
  }
  protocol pop3 {
    ssl_cert = </home/domain.com/ssl.cert
    ssl_key = </home/domain.com/ssl.key
    ssl_ca = </home/domain.com/ssl.ca
  } 
}
Status: 
Closed (fixed)

Comments

Thanks for pointing this out - this will be fixed in the next Virtualmin release.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.