SSL3 이메일 전송 및 반송

SSL3 이메일 전송 및 반송

일부 이메일 서버(tsl3로 postfix)를 설정했고 그 서버에서 ssl2를 제거하려는 목표에 도달했지만 Thunderbird는 완벽하게 작동하지만 mailx는 그렇지 않습니다. 내가 해냈어

echo prova|mail -S smtp-use-starttls user@domain

그리고 모든 이메일은 반송됩니다

said: 530 5.7.0 Must issue a STARTTLS command first (in reply to MAIL FROM command))
I use this configuration
master.cf

smtp      inet  n       -       n       -       -       smtpd
    -o smtpd_sasl_auth_enable=yes
    -o smtpd_enforce_tls=yes
    -o smtpd_client_restrictions=permit_sasl_authenticated,permit_mynetworks,reject

마스터 파일

smtpd_sender_restrictions =
    permit_sasl_authenticated,
    permit_mynetworks,
    reject_non_fqdn_sender,
    reject_sender_login_mismatch,
    reject_authenticated_sender_login_mismatch,
    reject_unauthenticated_sender_login_mismatch,
    reject

# TLS parameters
smtp_use_tls=yes
smtpd_use_tls=yes
smtpd_tls_received_header = yes
smtp_tls_note_starttls_offer = yes
smtpd_tls_auth_only = no
smtpd_tls_CAfile = /etc/ssl/certs/domain.local.crt
smtpd_tls_cert_file=/etc/ssl/certs/slackware.domain.local.crt
smtpd_tls_key_file=/etc/ssl/private/slackware.domain.local.key
smtpd_tls_mandatory_ciphers = high
smtpd_tls_mandatory_exclude_ciphers = aNULL, MD5
smtpd_tls_mandatory_protocols = SSLv3

Thunderbird는 작동하지만 mailx는 작동하지 않습니다.

mail -S smtp-use-starttls

물론 이메일은 SSL로 연결되어 있습니다.

답변1

해결책을 찾아라

main.cf에

smtpd_tls_mandatory_protocols = !SSLv2, !SSLv3
smtpd_tls_protocols = !SSLv2, !SSLv3
smtp_tls_mandatory_protocols = !SSLv2, !SSLv3
smtp_tls_protocols = !SSLv2, !SSLv3

master.cf에서

smtp      inet  n       -       n       -       -       smtpd
    -o smtpd_sasl_auth_enable=yes
    -o smtpd_client_restrictions=permit_sasl_authenticated,permit_mynetworks,reject

SSL3 및 2가 비활성화되고 메일이 수신됨

관련 정보