Postfix & Dovecot Integrate With MS Outlook

Issues related to configuring your network
Post Reply
bencp
Posts: 30
Joined: 2018/09/20 18:30:00

Postfix & Dovecot Integrate With MS Outlook

Post by bencp » 2018/11/06 18:50:24

Hello all , i want to connect from MS Outlook to My dovecot Server.
I read that i need to create some SSL certificate? but don't understand too much.

Would be nice if someone can explain the procedure .

jscarville
Posts: 135
Joined: 2014/06/17 21:50:37

Re: Postfix & Dovecot Integrate With MS Outlook

Post by jscarville » 2018/11/07 23:06:56

IIRC you can use a self-signed cert:

1. generate a csr and key

openssl req -out $(hostname).csr -new -newkey rsa:2048 -sha256 -nodes -keyout $(hostname).key

2. sign the csr with the key

openssl x509 -req -days 3652 -in $(hostname).csr -signkey $(hostname).key -out $(hostname).crt

Post Reply