From 74b2bd7184ad32939235be32452d3569bba67370 Mon Sep 17 00:00:00 2001
From: Johannes Berg <johannes@sipsolutions.net>
Date: Mon, 1 Oct 2007 14:17:23 +0200
Subject: start box plugin experiment, seems not to work

---
 plugin.h | 40 ----------------------------------------
 1 file changed, 40 deletions(-)
 delete mode 100644 plugin.h

(limited to 'plugin.h')

diff --git a/plugin.h b/plugin.h
deleted file mode 100644
index c2281ad..0000000
--- a/plugin.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef _ANTISPAM_PLUGIN_H
-#define _ANTISPAM_PLUGIN_H
-
-#include <unistd.h>  
-#include "lib.h"
-#include "mempool.h"
-
-struct strlist {
-	struct strlist *next;
-	const char *str;
-};
-
-#ifdef BACKEND_WANTS_SIGNATURE
-/*
- * Call backend giving
- *  - pool: dovecot memory pool, will be freed afterwards
- *  - spam: whether mail comes from spam folder or not
- *  - sigs: signatures, next == NULL terminates list
- *  - 
- */
-bool backend(pool_t pool, bool spam, struct strlist *sigs);
-#elif CONFIG_PLUGIN_WANT_MAIL
-#error TODO: no support for pristine training yet
-#else
-#error BUILD SYSTEM ERROR
-#endif
-
-void backend_init(pool_t pool);
-void backend_exit(void);
-
-#ifdef CONFIG_DEBUG
-void debug(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
-#else
-static void debug(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
-static inline void debug(const char *fmt, ...)
-{
-}
-#endif
-
-#endif /* _ANTISPAM_PLUGIN_H */
-- 
cgit v1.2.3