Viktor Dukhovni via Postfix-users skrev den 2024-06-18 15:27:
On Tue, Jun 18, 2024 at 03:20:46PM +0200, Benny Pedersen via
Postfix-users wrote:
xpoint@tux ~ $ posttls-finger -w -lsecure -C "www.stovebolt.com:465"
"www.stovebolt.com"
posttls-finger: Connected to www.stovebolt.com[108.174.193.28]:465
posttls-finger: server certificate verification failed for
www.stovebolt.com[108.174.193.28]:465: num=62:hostname mismatch
issue new cert to fix it
certbot --apache -d *.stovebolt.com -d stovebolt.com
There's nothing to fix, you're using the wrong hostname.
good, is why i use
$config['imap_host'] = 'ssl://localhost:993';
$config['imap_conn_options'] = array ( 'ssl' => array ( 'verify_peer' =>
false, 'verify_peer_name' => false, ), );
port 465 is not tls
$config['smtp_conn_options'] = array ( 'ssl' => array ( 'verify_peer' =>
false, 'verify_peer_name' => false, ), );
$config['smtp_host'] = 'tls://localhost:587';
op had imho
$config['smtp_host'] = 'tls://hostname:465';
with will fail
_______________________________________________
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org