
opendkim을 설치하고, 키를 생성하고, dkim 서명 이메일을 자동으로 보내도록 msmtp에 대한 몇 가지 옵션을 지정할 수 있습니까?
내 서버(Ubuntu 20.04)는 다음 구성과 함께 msmtp-mta를 사용합니다.
defaults
auth on
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
logfile /var/log/msmtp
account default
host smtp.someprovider.com
port 587
tls_starttls on
tls_certcheck off
from [email protected]
user [email protected]
password somepasswort
- msmtp 매뉴얼 페이지에는 dkim에 대한 적절한 옵션이 없습니다. (https://manpages.ubuntu.com/manpages/focus/man1/msmtp.1.html)
- 비슷한 질문이 있었는데 자세한 답변이 없었습니다 msmtp를 통해 전송한 후 로컬 DKIM 서명 검증에 실패함
- 이를 위해 postfix를 더 잘 사용해야 합니까?