SMEServer SSL

From Realm Business Systems Ltd
Jump to: navigation, search

Test QMSPTPD

openssl s_client -connect localhost:465 -ssl2
openssl s_client -connect localhost:465 -ssl3

Disable QPSMTPD SSLv2

db configuration setprop qpsmtpd tlsCipher 'HIGH:!SSLv2'
signal-event email-update

QPSMTPD Ciphers; /etc/e-smith/templates/var/service/qpsmtpd/config/tls_ciphers


Test HTTPD

openssl s_client -ssl2 -connect localhost:443
openssl s_client -ssl3 -connect localhost:443
openssl s_client -connect localhost:443 -cipher LOW:EXP

HTTPD SSL; /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/35SSL30SSLProtocol

Disable HTTPD SSLv2

{
    # Specify which SSL Protocols to accept for this context
    $OUT .= "SSLProtocol -ALL +SSLv3 +TLSv1";
}