public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/web/inc/presets/sieve/sieve_8.yml
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
headline: lang.sieve_preset_8
2
content: |
3
require "fileinto";
4
require "mailbox";
5
require "variables";
6
require "subaddress";
7
require "envelope";
8
require "duplicate";
9
require "imap4flags";
10
if header :matches "To" "*[email protected]*" {
11
redirect "[email protected]";
12
setflag "\\seen"; /* Mark mail as read */
13
fileInto "INBOX/SubFolder"; /* Move mail on subfolder after */
14
} else {
15
# The rest goes into INBOX
16
# default is "implicit keep", we do it explicitly here
17
keep;
18
}