alpha
Login
or
Join now
j3s.sh
/
dotfiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
my dotz
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
add sieve config
author
j3s
date
6 years ago
(May 6, 2020, 11:56 PM -0500)
commit
f5d86dc4
f5d86dc42eb5dfe9c768e0ab3a49e0f2f156df88
parent
a5a93fa0
a5a93fa0b1f78ce90f749b510fd797b672eda56e
+26
1 changed file
Expand all
Collapse all
Unified
Split
.sieve
+26
.sieve
Reviewed
···
1
1
+
require ["fileinto", "reject", "mailbox"];
2
2
+
3
3
+
if address :domain ["To", "CC"] "lists.alpinelinux.org" {
4
4
+
fileinto :create "alpine";
5
5
+
stop;
6
6
+
}
7
7
+
8
8
+
if address :domain ["To", "CC"] "openbsd.org" {
9
9
+
fileinto :create "openbsd";
10
10
+
stop;
11
11
+
}
12
12
+
13
13
+
if address :domain ["To", "CC"] "cyberia.club" {
14
14
+
fileinto :create "cyberia";
15
15
+
stop;
16
16
+
}
17
17
+
18
18
+
if address :domain ["To", "CC"] "talk.begriffs.com" {
19
19
+
fileinto :create "friends";
20
20
+
stop;
21
21
+
}
22
22
+
23
23
+
if address :domain ["To", "CC"] "lists.sr.ht" {
24
24
+
fileinto :create "sourcehut";
25
25
+
stop;
26
26
+
}