blob: dd7fedc020bf0e263923c82c83568b62de9e4ca2 (
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
|
require "mime";
require "foreverypart";
require "variables";
if header :contains :mime "Content-Type" "text/plain" {
discard;
}
if header :mime :type "Content-Type" "text" {
discard;
}
if header :mime :subtype "Content-Type" "plain" {
discard;
}
if header :mime :contenttype "Content-Type" "text/plain" {
discard;
}
if header :mime :param ["frop", "friep"] "Content-Type" "frml" {
discard;
}
if header :anychild :contains :mime "Content-Type" "text/plain" {
discard;
}
if header :mime :anychild :type "Content-Type" "text" {
discard;
}
if header :mime :subtype :anychild "Content-Type" "plain" {
discard;
}
if header :anychild :mime :contenttype "Content-Type" "text/plain" {
discard;
}
if header :mime :param ["frop", "friep"] :anychild "Content-Type" "frml" {
discard;
}
foreverypart {
foreverypart {
if header :contains :mime "Content-Type" "text/plain" {
discard;
}
if header :mime :type "Content-Type" "text" {
discard;
}
if header :mime :subtype "Content-Type" "plain" {
discard;
}
if header :mime :contenttype "Content-Type" "text/plain" {
discard;
}
if header :mime :param ["frop", "friep"] "Content-Type" "frml" {
discard;
}
if header :anychild :contains :mime "Content-Type" "text/plain" {
discard;
}
if header :mime :anychild :type "Content-Type" "text" {
discard;
}
if header :mime :subtype :anychild "Content-Type" "plain" {
discard;
}
if header :anychild :mime :contenttype "Content-Type" "text/plain" {
discard;
}
if header :mime :param ["frop", "friep"] :anychild "Content-Type" "frml" {
discard;
}
}
}
|