X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserv_sieve.h;h=5b98b662e50dab1322d241cb0bcac3eb6016d710;hb=HEAD;hp=c26690ecc8f27af65451c58153b310d1e573d2e5;hpb=ca3fdabb2f8e0b35071f8ea66bd90bc23b70b365;p=citadel.git diff --git a/citadel/serv_sieve.h b/citadel/serv_sieve.h deleted file mode 100644 index c26690ecc..000000000 --- a/citadel/serv_sieve.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * $Id: $ - */ - - -#ifdef HAVE_LIBSIEVE - -#include -#include - -struct sdm_script { - struct sdm_script *next; - char script_name[256]; - int script_active; - char *script_content; -}; - -struct sdm_userdata { - sieve2_context_t *sieve2_context; /**< for libsieve's use */ - long config_msgnum; /**< confirms that a sieve config was located */ - char config_roomname[ROOMNAMELEN]; - long lastproc; /**< last message processed */ - struct sdm_script *first_script; -}; - -#endif /* HAVE_LIBSIEVE */ - - - -extern struct RoomProcList *sieve_list; - -void sieve_queue_room(struct ctdlroom *); -void perform_sieve_processing(void); - -/* If you change this string you will break all of your Sieve configs. */ -#define CTDLSIEVECONFIGSEPARATOR "\n-==-\n"