@
danielb
I was trying to configure using your tutorial but encountered some issue and a few questions which i was wondering if you shed some light?
1) for Enable authenticated ports im guessing its no necessarily, even though i have a postfix email server and all my users authenticates with 465 ssl then on postfix relays to proxmox on port 25
2) for this part
Code:
cat <<_EOF > /etc/opendkim/signingtable
# Add one line per domain you want to sign when email are being sent.
# You can use different keys if needed
# Or just use a wildcard to sign everything with the same key
* default
_EOF
cat <<_EOF > /etc/opendkim/keytable
default domain.tld:default:/etc/opendkim/keys/default/default.private
_EOF
the * default i would change to mydomain.com without the asterisk?
and for the second part would be like this
Code:
default mydomain.com:default:/etc/opendkim/keys/default/default.private
3) once having the Dkim key how can i find it to put it on the domain? i tried sending the email still stays dkim fail. on my postfix i would install
Code:
apt-get install opendkim opendkim-tools
then configure it and at the end i would need to generate the keys
Code:
opendkim-genkey -t -s mail -d mydomain.com
then i could cat mail.txt to get the keys to put it on the domain
Thank you