summaryrefslogtreecommitdiff
path: root/libsieve/tests.c
blob: 4ab0f14f7a76a0389799a710e7935cdb3cc2a52d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* GNU mailutils - a suite of utilities for electronic mail
   Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU Lesser General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif  

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>  
#include <string.h>  
#include <sieve.h>

#define TAG_LOCALPART   0
#define TAG_DOMAIN      1
#define TAG_ALL         2
#define TAG_COMPARATOR  3
#define TAG_IS          4
#define TAG_CONTAINS    5
#define TAG_MATCHES     6  
#define TAG_REGEX       7 
#define TAG_UNDER       8
#define TAG_OVER        9

int
sieve_test_address (sieve_machine_t *mach, list_t *args)
{
}

int
sieve_test_header (sieve_machine_t *mach, list_t *args)
{
}

int
sieve_test_envelope (sieve_machine_t *mach, list_t *args)
{
}

int
sieve_test_size (sieve_machine_t *mach, list_t *args)
{
}

int
sieve_test_true (sieve_machine_t *mach, list_t *args)
{
}

int
sieve_test_false (sieve_machine_t *mach, list_t *args)
{
}

int
sieve_test_exists (sieve_machine_t *mach, list_t *args)
{
}

#define ADDRESS_PART \
  { "localpart", TAG_LOCALPART, SVT_VOID },\
  { "domain", TAG_DOMAIN, SVT_VOID },\
  { "all", TAG_ALL, SVT_VOID }

#define MATCH_PART \
  { "is", TAG_IS, SVT_VOID },\
  { "contains", TAG_CONTAINS, SVT_VOID },\
  { "matches", TAG_MATCHES, SVT_VOID },\
  { "regex", TAG_REGEX, SVT_VOID }

#define COMP_PART \
  { "comparator", TAG_COMPARATOR, SVT_STRING }

#define SIZE_PART \
  { "under", TAG_UNDER, SVT_VOID },\
  { "over", TAG_OVER, SVT_VOID }
    
  
sieve_tag_def_t address_tags[] = {
  ADDRESS_PART,
  COMP_PART,
  MATCH_PART,
  { NULL }
};

sieve_data_type address_req_args[] = {
  SVT_STRING_LIST,
  SVT_STRING_LIST,
  SVT_VOID
};

sieve_tag_def_t size_tags[] = {
  SIZE_PART,
  { NULL }
};

sieve_data_type size_req_args[] = {
  SVT_NUMBER,
  SVT_VOID
};

sieve_tag_def_t envelope_tags[] = {
  COMP_PART,
  ADDRESS_PART,
  MATCH_PART,
  { NULL }
};

sieve_data_type exists_req_args[] = {
  SVT_STRING_LIST,
  SVT_VOID
};

sieve_tag_def_t header_tags[] = {
  COMP_PART,
  MATCH_PART,
  { NULL },
};

void
sieve_register_standard_tests ()
{
  sieve_register_test ("false", sieve_test_false, NULL, NULL, 1);
  sieve_register_test ("true", sieve_test_false, NULL, NULL, 1);
  sieve_register_test ("address", sieve_test_address,
		       address_req_args, address_tags, 1);
  sieve_register_test ("size", sieve_test_size,
		       size_req_args, size_tags, 1);
  sieve_register_test ("envelope", sieve_test_envelope,
		       address_req_args, envelope_tags, 1);
  sieve_register_test ("exists", sieve_test_exists,
		       exists_req_args, NULL, 1);
  sieve_register_test ("header", sieve_test_header,
		       address_req_args, header_tags, 1);
}

Return to:

Send suggestions and report system problems to the System administrator.