File: unsupported.sieve

package info (click to toggle)
dovecot 1%3A1.2.15-7
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 30,252 kB
  • ctags: 19,837
  • sloc: ansic: 191,438; sh: 21,091; makefile: 3,330; cpp: 526; perl: 108; xml: 44
file content (35 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (2)
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
/*
 * Handling of unsupported language features.
 *
 *   Total errors: 3 (+1 = 4)
 */

require "variables";
require "include";
require "regex";

/*
 * Unsupported use of variables
 */

/* Comparator argument */

set "comp" "i;ascii-numeric";

if address :comparator "${comp}" "from" "stephan@example.org" {
	stop;
}

/* Included script */

set "script" "blacklist";

include "${blacklist}";

/* Variable regexp */

set "match" "(.*)rename-it(.*)";

if address :regex "from" "${match}" {
	stop;
}