You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# During the installation, the SSL certificates for IMAP-SSL and POP3-SSL are created with the hostname localhost. To change this to the correct hostname (server1.example.com in this tutorial), delete the certificates...
77
+
78
+
cd/etc/courier
79
+
rm-f/etc/courier/imapd.pem
80
+
rm-f/etc/courier/pop3d.pem
81
+
82
+
# ... and modify the following two files; replace CN=localhost with CN=server1.example.com (you can also modify the other values, if necessary):
83
+
84
+
vi/etc/courier/imapd.cnf
85
+
86
+
[...]
87
+
CN=server1.example.com
88
+
[...]
89
+
90
+
vi/etc/courier/pop3d.cnf
91
+
92
+
[...]
93
+
CN=server1.example.com
94
+
[...]
95
+
96
+
# Then recreate the certificates...
97
+
98
+
mkimapdcert
99
+
mkpop3dcert
100
+
101
+
# ... and restart Courier-IMAP-SSL and Courier-POP3-SSL:
0 commit comments