Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Helmo
ISPConfig 3
Commits
38c7515b
Commit
38c7515b
authored
3 years ago
by
Jesse Norell
Browse files
Options
Downloads
Patches
Plain Diff
sieve: case insensitive move to junk test matched 'BAYES' for 'Yes'
parent
f9c22b42
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
server/conf/sieve_filter.master
+3
-3
3 additions, 3 deletions
server/conf/sieve_filter.master
with
3 additions
and
3 deletions
server/conf/sieve_filter.master
+
3
−
3
View file @
38c7515b
...
@@ -7,7 +7,7 @@ require ["fileinto", "mailbox", "regex", "date", "relational", "vacation", "imap
...
@@ -7,7 +7,7 @@ require ["fileinto", "mailbox", "regex", "date", "relational", "vacation", "imap
<tmpl_if name="move_junk" op="==" value="y">
<tmpl_if name="move_junk" op="==" value="y">
# Move spam to spam folder
# Move spam to spam folder
if anyof (header :
contains
"X-Spam-Flag" "Y
ES
", header :
contains ["X-Spam",
"X-Spam-Status"
]
"Yes") {
if anyof (header :
is ["X-Spam",
"X-Spam-Flag"
]
"Y
es
", header :
matches
"X-Spam-Status" "Yes
, *
") {
fileinto :create "Junk";
fileinto :create "Junk";
# Stop here so that we do not reply on spams
# Stop here so that we do not reply on spams
stop;
stop;
...
@@ -33,7 +33,7 @@ require ["fileinto", "mailbox", "regex", "date", "relational", "vacation", "imap
...
@@ -33,7 +33,7 @@ require ["fileinto", "mailbox", "regex", "date", "relational", "vacation", "imap
<tmpl_if name="move_junk" op="==" value="a">
<tmpl_if name="move_junk" op="==" value="a">
# Move spam to spam folder
# Move spam to spam folder
if anyof (header :
contains
"X-Spam-Flag" "Y
ES
", header :
contains ["X-Spam",
"X-Spam-Status"
]
"Yes") {
if anyof (header :
is ["X-Spam",
"X-Spam-Flag"
]
"Y
es
", header :
matches
"X-Spam-Status" "Yes
, *
") {
fileinto :create "Junk";
fileinto :create "Junk";
# Stop here so that we do not reply on spams
# Stop here so that we do not reply on spams
stop;
stop;
...
@@ -46,7 +46,7 @@ if anyof (header :contains "X-Spam-Flag" "YES", header :contains ["X-Spam", "X-S
...
@@ -46,7 +46,7 @@ if anyof (header :contains "X-Spam-Flag" "YES", header :contains ["X-Spam", "X-S
#################################################################
#################################################################
# Move spam to spam folder
# Move spam to spam folder
if anyof (header :
contains
"X-Spam-Flag" "Y
ES
", header :
contains ["X-Spam",
"X-Spam-Status"
]
"Yes") {
if anyof (header :
is ["X-Spam",
"X-Spam-Flag"
]
"Y
es
", header :
matches
"X-Spam-Status" "Yes
, *
") {
# Stop here so that we do not reply on spams
# Stop here so that we do not reply on spams
stop;
stop;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment