Revert accidental bogus checkin, sorry
[exim.git] / src / src / lookups / spf.h
CommitLineData
92f1b170
TK
1/* $Cambridge: exim/src/src/lookups/spf.h,v 1.1 2005/05/25 20:07:55 tom Exp $ */
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
7/*
8 * Exim - SPF lookup module using libspf2
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 *
11 * Copyright (c) 2005 Chris Webb, Arachsys Internet Services Ltd
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
17 *
18*/
19
20
21
22extern void *spf_open(uschar *, uschar **);
23extern void spf_close(void *);
24extern int spf_find(void *, uschar *, uschar *, int, uschar **, uschar **,
25 BOOL *);
26