「OpenDKIM」:修訂間差異
跳至導覽
跳至搜尋
第14行: | 第14行: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
cd /etc/ | sudo mkdir /etc/opendkim; cd /etc/opendkim; sudo opendkim-genkey -t -s mail -d example.com; sudo chown -R opendkim:opendkim . | ||
</syntaxhighlight> | </syntaxhighlight> | ||
於 2023年6月30日 (五) 07:31 的修訂
OpenDKIM是一套實作DKIM的軟體。
安裝
Ubuntu內可以直接安裝:
sudo apt install -y opendkim; sudo apt clean
設定
先產生key pair,其中的-s mail
為DKIM的selector,預設會產生2048 bit RSA key pair:
sudo mkdir /etc/opendkim; cd /etc/opendkim; sudo opendkim-genkey -t -s mail -d example.com; sudo chown -R opendkim:opendkim .
產生出來的mail.txt
是DNS的TXT
record的內容。
相關連結
外部連結
- 官方網站 (英文)