piler/src/rules.h

22 lines
961 B
C
Raw Normal View History

2011-11-19 21:25:44 +01:00
/*
* rules.h, SJ
*/
#ifndef _RULES_H
#define _RULES_H
#include "defs.h"
2012-02-19 22:59:47 +01:00
void load_rules(struct session_data *sdata, struct rule **rules, char *table);
int append_rule(struct rule **rule, char *from, char *to, char *subject, char *_size, int size, char *attachment_type, char *_attachment_size, int attachment_size, int spam, int days);
struct rule *create_rule_item(char *from, char *to, char *subject, char *_size, int size, char *attachment_type, char *_attachment_size, int attachment_size, int spam, int days);
char *check_againt_ruleset(struct rule *rule, struct _state *state, int size, int spam);
unsigned long query_retain_period(struct rule *rule, struct _state *state, int size, int spam, struct __config *cfg);
2011-11-19 21:25:44 +01:00
int check_size_rule(int message_size, int size, char *_size);
2012-02-19 22:59:47 +01:00
int check_spam_rule(int is_spam, int spam);
2011-11-23 12:24:21 +01:00
int check_attachment_rule(struct _state *state, struct rule *rule);
2011-11-19 21:25:44 +01:00
void free_rule(struct rule *rule);
#endif /* _RULES_H */