sendojay / php-mail-domain-signer

Automatically exported from code.google.com/p/php-mail-domain-signer
0 stars 0 forks source link

Typo in code #1

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Use method sign() with params: sign($mail_data,$suggested_h,false,true);

Even if $create_domainkey is set to yes it will not be generated.
There is two times $create_dkim check.

// Create DKIM First
if ($create_dkim)
    (...)

// Now Create Domain-Signature
if ($create_dkim)
    (...)

Regards.

Original issue reported on code.google.com by smallho...@gmail.com on 8 Apr 2011 at 10:26

GoogleCodeExporter commented 8 years ago
Already fixed:
http://code.google.com/p/php-mail-domain-signer/source/browse/trunk/lib/class.ma
ilDomainSigner.php

if ($create_dkim)
 ....
if ($create_domainkey)
 ....

Thanks.

Original comment by amaru...@gmail.com on 15 Apr 2011 at 3:04