Questions tagged [dkim]

DomainKeys Identified Mail is a scheme for signing and verifying email messages to confirm that that the source hasn't been forged, and is typically implemented by MTAs. The source MTA adds a header to the message body containing a signature, and the destination MTA verifies this signature against a key retrieved from DNS.

DomainKeys Identified Mail (DKIM) is an email authentication method designed to detect forged sender addresses in emails (email spoofing), a technique often used in phishing and email spam.

DKIM allows the receiver to check that an email claimed to have come from a specific domain was indeed authorized by the owner of that domain.[1] It achieves this by affixing a digital signature, linked to a domain name, to each outgoing email message. The recipient system can verify this by looking up the sender's public key published in the DNS. A valid signature also guarantees that some parts of the email (possibly including attachments) have not been modified since the signature was affixed.[2] Usually, DKIM signatures are not visible to end-users, and are affixed or verified by the infrastructure rather than the message's authors and recipients.

The first version of DKIM synthesized and enhanced Yahoo!'s DomanKeys and Cisco's Identified Internet Mail specifications. It was the result of a year-long collaboration among numerous industry players, during 2005, to develop an open-standard e-mail authentication specification. Participants included Alt-N Technologies, AOL, Brandenburg InternetWorking, Cisco, EarthLink, IBM, Microsoft, PGP Corporation, Sendmail, StrongMail Systems, Tumbleweed, VeriSign and Yahoo!. The team produced the initial specification and several implementations. It then submitted the work to the IETF for further enhancement and formal standardization.

603 questions
-1
votes
1 answer

dkim signature not present or bad format

I'm going mad with dkim-filter + postfix. My message are signed but Gmail notify me errors like "dkim=neutral(no signature)" or "dkim=neutral(bad format)" I don't know what is wrong. I've generated public and private key, and I'm using the right…
N-AccessDev
  • 121
  • 6
-1
votes
1 answer

DNS Records - CNAME

Quite newbie, so sorry any unconnected data. I am creating a DKIM and SPF records to emulate DMARC as a workaround. An external vendor of us, want to send emails under our domain using a subdomain. I have configured my TXT records as: TXT …
-1
votes
1 answer

How long should it take for google to authenticate a DKIM TXT DNS entry?

Does anyone know how long it takes for google to authenticate a DKIM TXT DNS entry? The entry sits in AWS Route53 and the record is correctly saved, the record is only on a 10 second TTL. Google seems to be happy with reading the record. But... it…
John
  • 887
  • 4
  • 15
  • 25
-1
votes
1 answer

Setup bind9 dns for setup DKIM and SPF records

Currently emails from my mail server is blocked by gmail. I want to setup DKIM and SPF records for my mail server.But web domain register doesn't allow me to setup DKIM and SPF records it says I need to setup separate dns server for those records.…
-1
votes
1 answer

Is it possible to host one TXT record for a domain on a different server, and leave all of the other DNS information intact on the first server?

I am running a business site on a computer with a managed hosting company. Everything is working fine, until I tried to establish DKIM verification for emails sent from the server. This required adding a TXT record to the DNS information. That TXT…
-1
votes
1 answer

How can I enable DKIM email verification on windows server 2019 for sending DKIM verified email via SMTP service?

I am sending activation and verification emails from my domain : https://www.monstermmorpg.com/ Recently I have moved to a new installation The new server is : Windows Server 2019 How can I set a proper DKIM? Moreover, gmail tells that the message…
Furkan Gözükara
  • 556
  • 2
  • 10
  • 27
-1
votes
1 answer

Modifying date breaks DKIM signature. Alternatives?

On our Postfix server we previously removed the Date header from incoming emails and had Postfix automatically add it again to prevent spoofing the date and to work around mail servers with off clocks. However, this breaks DKIM signatures which…
ominug
  • 734
  • 7
  • 6
-2
votes
1 answer

where should i add dkim records when using custom name servers?

I have recently setup mail server on ubuntu14.04 using postfix, dovecot. I am very confused about adding dkim records. Every tutorial i have followed is saying i should add dkim at domain registrar but i am using custom nameserver like…
-2
votes
1 answer

My Email Strightly goes to gmail spam/just folder ( DKIM,SPF,DMARC is okay )

( it's not duplicate , its related to rDNS , please don't flag it as duplicate or give me the link of related one ) i have a problem, my emails from my mydomain.com straightly goes to spam folder in gmail, other service providers are okay. i have…
-2
votes
1 answer

Spam from my email address on my domain with DKIM

Someone is sending spam emails from my email address. And it looks like these emails have DKIM. How is this can be possible if they doesn't have access to that email? (my emails handles by something like google and i changed passwords to that…
Eugene
  • 119
  • 5
-2
votes
1 answer

Using DKIM in my server for multiple domains (websites)

As I couldn't find this exact tutorial in Stack, I share my findings with al of you. I always get things solved thanks to this comunity. Thanks! Original question: I've read the tutorial posted by MountainX…
Diego
  • 145
  • 1
  • 6
-2
votes
1 answer

Modify DNS TXT Record in Domain Control Panel or Apache

I am trying to setup DKIM for email verification and have been asked to add a public key to my DNS. Add public key in your DNS; here is a sample resource record with selector "default": default._domainkey IN TXT "v=DKIM1; g=*; k=rsa;…
ryandlf
  • 137
  • 3
  • 12
-2
votes
1 answer

Need a good guide for setting up postfix

I will be sending mail from my machine (just sending, not receiving any) I'm looking for a good guide that will help me configure it with all the things that are required so that receiveing servers will not ignore or block my emails. I've heard…
user80666
  • 459
  • 2
  • 6
  • 15
-2
votes
1 answer

Could not connect to SMTP host

I have a VPS server I have a postfix mail server running on that VPS server (I installed it via command line using a tutorial) I have an SMTP server running on that VPS server I also have the required records for mail server such as, (MX record,…
-3
votes
1 answer

DKIM - DomainKey Identified Mail public key longer than 512 character

I've generated private key and public key using following commands. openssl genrsa -des3 -out server.key openssl rsa -in server.key -out server.key.insecure mv server.key server.key.secure mv server.key.insecure server.key openssl req -new -key…
1 2 3
40
41