1 /* $Cambridge: exim/src/src/lookups/dkim.c,v 1.1 2007/09/28 12:21:57 tom Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2007 */
8 /* See the file NOTICE for conditions of use and distribution. */
15 /*************************************************
17 *************************************************/
19 /* See local README for interface description */
22 dkim_open(uschar *filename, uschar **errmsg)
24 filename = filename; /* Keep picky compilers happy */
26 return (void *)(-1); /* Just return something non-null */
32 /*************************************************
33 * Find entry point for passwd *
34 *************************************************/
36 /* See local README for interface description */
39 dkim_find(void *handle, uschar *filename, uschar *keystring, int length,
40 uschar **result, uschar **errmsg, BOOL *do_cache)
42 #ifdef EXPERIMENTAL_DKIM
43 dkim_exim_verify_result(keystring,result,errmsg);
46 *errmsg = US"DKIM support not compiled.";
47 *result = US"unverified";
52 /* End of lookups/dkim.c */