removed some old cruft
[citadel.git] / citadel / serv_sieve.h
index 168a8574f84f9081ab1975981cdb936c58bd8cf4..5b98b662e50dab1322d241cb0bcac3eb6016d710 100644 (file)
@@ -1,9 +1,3 @@
-/*
- * $Id: $
- */
-
-
-#ifdef HAVE_LIBSIEVE
 
 #include <sieve2.h>
 #include <sieve2_error.h>
@@ -22,10 +16,10 @@ struct sdm_vacation {
 };
 
 struct sdm_userdata {
-       sieve2_context_t *sieve2_context;       /**< for libsieve's use */
-       long config_msgnum;                     /**< confirms that a sieve config was located */
+       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 */
+       long lastproc;                          /* last message processed */
        struct sdm_script *first_script;
        struct sdm_vacation *first_vacation;
 };
@@ -68,5 +62,3 @@ char *msiv_getscript(struct sdm_userdata *u, char *script_name);
 int msiv_deletescript(struct sdm_userdata *u, char *script_name);
 void msiv_putscript(struct sdm_userdata *u, char *script_name, char *script_content);
 extern char *msiv_extensions;
-
-#endif /* HAVE_LIBSIEVE */