Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
1k views

How do I verify a DKIM signature in PHP?

I'll admit I'm not very adept at key verification. What I have is a script that downloads messages from a POP3 server, and I'm attempting to verify the DKIM signatures in PHP. I've already figured out ...
9
votes
4answers
3k views

Setting up DomainKeys/DKIM in a PHP-based SMTP client

It looks like there are some great libraries out there to do DomainKeys signing of emails on C#/.NET, but I'm having a really hard time finding the same kind of support for PHP. Maybe I'm not looking ...
8
votes
5answers
1k views

How to Domainkeys/DKIM email signing using the C# SMTP client?

I have written an program in C# which sends out emails. Now I have a requirement to sign outbound emails using Dominkeys/DKIM, but I'm not sure how to do it. I have set up all keys, but I don't know ...
3
votes
2answers
807 views

What's the difference between DomainKey-Signature & DKIM-Signature?

I'm trying to sign emails with DKIM using PHPMailer Class and i can't get it to work. When i see the headers in my emails on gmail, i find that the class is successfully injecting DKIM in the email ...
3
votes
5answers
4k views

How to call a Perl script from Python, piping input to it?

I'm hacking some support for DomainKeys and DKIM into an open source email marketing program, which uses a python script to send the actual emails via SMTP. I decided to go the quick and dirty route, ...
3
votes
4answers
1k views

How to implement DomainKeys?

Can any one gave me requirements/step-by-step procedures on how am I suppose to create DomainKeys for my mail server so that our email can pass through on Yahoo!'s mail server without being marked as ...
2
votes
1answer
35 views

Why would I choose simple over relaxed canonicalization for DKIM?

DKIM supports two canonicalization schemes: relaxed and simple. The former is more lenient and allows for intermediary mailers to modify the email to a limited degree. The only data I could find is a ...
2
votes
2answers
195 views

DKIM in .NET MailMessage and AlternativeViews

I am using DKIM.NET (https://github.com/dmcgiv/DKIM.Net) to sign a MailMessage before sending it to a recipient. The problem i am facing is that the component above signs MailMessage's Body ...
2
votes
1answer
545 views

How to check DKIM signature of incoming email in Java Google App Engine

I am looking for a way to validate the DKIM signature of the incoming email. I know how to do it in Java SE but it will use classes like javax.naming.directory.DirContext to get data from DNS server ...
2
votes
1answer
337 views

Differences between DomainKeys vs DKIM?

Please explain about differences between DomainKeys vs DKIM Thanks, Ramesh
2
votes
1answer
305 views

Building a enewsletter sending system / avoiding spam

Firstly, I AM NOT A SPAMMER :) I am a legitimate developer, working for a company who is currently developing an enewsletter sending system for our clients. Now, we sent out a campaign for one of our ...
2
votes
1answer
134 views

DKIM verification and canonicalization of leading double dots

Just wondering how can I properly verify my DKIM signature? Especially using popular service like Gmail, Yahoo Mail or Hotmail (if it supports DKIM)? Also, when transfer email as quoted printable in ...
2
votes
2answers
414 views

Signing mails sent through SMTP with DKIM

I have setup DKIM in my google apps for mail signing, when sending mails through GMail interface it signs the mail but when I send a mail through my webserver using SMTP (from CodeIgniter) it doesnt ...
2
votes
1answer
574 views

OpenDKIM or dkim-milter

I need to add DKIM to a Postfix installation. I've found two implementations that work with Postfix. OpenDKIM (http://www.opendkim.org/), and dkim-milter ...
1
vote
0answers
21 views

DKIM - partial signing (`l` parameter); reduce computational overhead

Does anyone have any experience signing only a part of a message body with DKIM? The DKIM specification allows one to limit the amount of message body used in computing a signature; a parameter in ...
1
vote
1answer
90 views

How to use DKIM with TidSMTP client?

I am sending notifications emails thorugh a TidSMTP client based application. When recieving messages I send in gmail I see the warning "this email could not have been sent by name@domain.com". ...
1
vote
2answers
195 views

Correct email headers for delivering mailing list mail

I'm writing an application that allows users to send email to dynamically-created mailing lists. For example, a user can send an email to my-team@site.com (the site is a league management site for ...
1
vote
1answer
255 views

Django SMTP authentication best practices

I have a Django website and a postfix service running in the same Ubuntu Server 10.04 box. What type of authentication would you suggest me so that it'll be simple and secure? If I want my messages ...
1
vote
2answers
131 views

What's exactly body means in DKIM

Normally a mail will send both html part and plain text part, like this: ... Headers ... This is a multi-part message in MIME format. --q17TlmNAFniw=_?: Content-Type: text/plain; ...
1
vote
1answer
322 views

DKIM amavisd test failed

I have configured a new email server for my company, we are using a cloud server on theplanet.com and a shared hosnting on bluehost.com, I configured the server using iredmail, all works great but ...
1
vote
1answer
743 views

Unable to verify body hash for DKIM

I'm writing a C# DKIM validator and have come across a problem that I cannot solve. Right now I am working on calculating the body hash, as described in Section 3.7 Computing the Message Hashes. I am ...
0
votes
2answers
148 views

How to send email with Phpmailer with DKIM signature?

I`m using PHPmailer to sent email. I installed postfix service and DKIM-Milter to generate the key. It works fine if i use command line to sent mail, and the mail is with DKIM signature displaying ...
0
votes
1answer
121 views

Cannot sign anything with PHP openssl_sign?

I am attempting to use PHP-DKIM to send DKIM signed emails. Its a little old so I've had to change some things, but this stumps me: Warning: openssl_sign() [function.openssl-sign]: supplied key param ...
0
votes
1answer
104 views

Sending e-mail via PHP, on behalf of someone else

I would like to create a form that allows users to contact our local city council. I want to make it easy, so they can just fill out the form and send it. I am just not 100% sure how this would work ...
0
votes
0answers
89 views

DKIM header in Outlook Add-in

I would like to verify a sender using DKIM (DomainKeys) signature in my Outlook add-in. I tried locating the DKIM header in the e-mail headers, and also in the _MailItem and the MAPI object ...
0
votes
0answers
18 views

DKIM & DK - reuse signature?

Is it ever possible for DKIM to reuse the DomainKeys signature? I've looked at the comparison between them, and have examined some headers, and it seems to me that it might be possible for the two to ...
0
votes
1answer
133 views

How to sign outgoing emails with DKIM private key

I generated DKIM for my domain and I received one public key and one private key. I updated my public key value in my DNS and now I have the private key leftover with me. How to use this private key? ...
0
votes
1answer
124 views

dns txt record with out record name?

My domain name provides dns hosting my domain. But for txt record they dont have in put field for txt record name, there is only field for txt record value My previous dns server that I manage my ...
0
votes
0answers
351 views

How To Configure Postfix To Sign Outgoing Mail Via DKIMProxy For Several Domains? [closed]

I have a server that will be used for sending newsletters for several sites. This is outgoing mail server only. I want to use advantages of SPF, DomainKeys, DKIM and ADSP to be sure that legitimate ...
0
votes
1answer
186 views

Do Google Apps SMTP servers automatically sign messages with DKIM?

I've configured my Google Apps account to sign messages with my DomainKey (DKIM), and I've confirmed that the signing takes place and works correctly when I send mail directly from my Google Apps ...
0
votes
1answer
184 views

Wich DKIM is better to use: Google's or Campaing Monitor's?

I've a website hosted in Dreamhost that uses Google Apps to manage mail. Now, i'm starting to fire some email marketing campaings using Campaing Monitor and I've failed in the Postini spam test. Wich ...
0
votes
1answer
181 views

Sending a DKIM signed email - Python

How would I DKIM sign an email I've constructed using email.mime.text.MIMEText and am sending using smtplib?
0
votes
1answer
348 views

Problem with DKIM socket

I have a problem with dkim-milter. My maillog file is filled with logs Dec 5 23:59:59 NS1 dkim-filter[31424]: Sendmail DKIM Filter: Unable to bind to port inet:20209@localhost: Address already in ...
0
votes
0answers
789 views

Debugging OpenDKIM/Postfix “bad signatures” and verification failures [closed]

I've been spending a while on a couple related problems, and I thought I'd turn here for help. To summarize, I'm wondering why there are messages about bad signatures, and why verifications are coming ...
0
votes
1answer
219 views

Link in HTML e-mail does not work in Hotmail

I send automated mails to hotmail users. (thank you for your registration bla bla) Because plain text doesn't look attractive enough, I use HTML with images. The images reside on a public webserver. ...
0
votes
1answer
420 views

Sign Emails with Private Key for DKIM with ASP.NET

Jeff Atwood has a good post on ways to pass email spam filters in his post at: http://www.codinghorror.com/blog/2010/04/so-youd-like-to-send-some-email-through-code.html The only issue I have is ...
0
votes
1answer
301 views

DKIM wrong body hash using Perl CPAN Mail::DKIM::Signer

I have a script that is sending emails via SMTP and I'm trying to get it to sign emails with a DKIM signature using CPAN's Mail::DKIM::Signer. The trouble is I am getting error that the body hash is ...
0
votes
1answer
830 views

why DKIM bad signature

I have setup a postfix mail receiving server. On this I am using DKIM milter to verify incoming mail DKIM signatures. From some email clients I am getting the following 'bad signature data' error: ...
0
votes
2answers
400 views

email sender authentication with Postfix

I have setup PostFix for receiving emails only. I want to authenticate the received emails against their sender email addresses by using SPF or DKIM. Is there a good java plugin available for this? ...