
bugzilla.exim.simon at arlott
Nov 12, 2009, 4:51 AM
Post #1 of 1
(445 views)
Permalink
|
|
[Bug 910] New: "dkim_canon = simple" uses relaxed canonicalisation
|
|
------- You are receiving this mail because: ------- You are on the CC list for the bug. http://bugs.exim.org/show_bug.cgi?id=910 Summary: "dkim_canon = simple" uses relaxed canonicalisation Product: Exim Version: N/A Platform: All OS/Version: All Status: NEW Severity: bug Priority: critical Component: Unfiled AssignedTo: tom [at] duncanthrax ReportedBy: bugzilla.exim.simon [at] arlott CC: exim-dev [at] exim The code in src/dkim.c incorrectly handles both "relaxed" and "simple" as "relaxed": if (Ustrcmp(dkim_canon, "relaxed") == 0) pdkim_canon = PDKIM_CANON_RELAXED; else if (Ustrcmp(dkim_canon, "simple") == 0) pdkim_canon = PDKIM_CANON_RELAXED; else { log_write(0, LOG_MAIN, "DKIM: unknown canonicalization method '%s', defaulting to 'relaxed'.\n",dkim_canon); pdkim_canon = PDKIM_CANON_RELAXED; } -- Configure bugmail: http://bugs.exim.org/userprefs.cgi?tab=email -- ## List details at http://lists.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
|