------- 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: [email protected] ReportedBy: [email protected] CC: [email protected] 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/ ##
