Mailfully logo

Porkbun DNS

Porkbun labels the value column Answer and splits host from domain. Map Mailfully's DKIM, MAIL FROM, SPF, and DMARC onto it.

Porkbun's record form calls the value field Answer, not Value or Content. Open Domain Management, select acme.com, and go to DNS to add each record Mailfully returned.

Add the records

1
Add the three DKIM CNAMEs

One row per DKIM token, three in all:

FieldValue
TypeCNAME
Host<token>._domainkey.mail
Answer<token>.dkim.amazonses.com
TTL600
2
Add the MAIL FROM MX record
FieldValue
TypeMX
Hostsend.mail
Answerfeedback-smtp.us-east-1.amazonses.com
Priority10
TTL600
3
Add the MAIL FROM SPF record
FieldValue
TypeTXT
Hostsend.mail
Answerv=spf1 include:amazonses.com ~all
TTL600
4
Add the DMARC record
FieldValue
TypeTXT
Host_dmarc.mail
Answerv=DMARC1; p=none;
TTL600

Host and Answer

Host holds only the label in front of acme.com, not the full name Mailfully returned. Answer takes the same value another host would call Value or Content, with no change in meaning. For a record at the apex, Host is left blank rather than filled with @ or the domain name; none of Mailfully's six records target the apex, so you won't need that here.

Verify

dig +short <token>._domainkey.mail.acme.com CNAME
dig +short send.mail.acme.com MX
dig +short send.mail.acme.com TXT
dig +short _dmarc.mail.acme.com TXT

Compare each answer against Verify with dig.