1 #ifndef	maildirfiltertypelist_h
2 #define	maildirfiltertypelist_h
3 
4 /*
5 ** Copyright 2000-2002 Double Precision, Inc.
6 ** See COPYING for distribution information.
7 */
8 
9 
10 #include	"config.h"
11 
12 static struct {
13 	enum maildirfiltertype type;
14 	const char *name;
15 	} typelist[] = {
16 		{startswith, "startswith"},
17 		{endswith, "endswith"},
18 		{contains, "contains"},
19 		{hasrecipient, "hasrecipient"},
20 		{mimemultipart, "mimemultipart"},
21 		{textplain, "textplain"},
22 		{islargerthan, "islargerthan"},
23 		{anymessage, "anymessage"},
24 		{ 0, 0}};
25 
26 #endif
27