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/conf/dovecot/global_sieve_before
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
# global_sieve_before script
2
# global_sieve_before -> user sieve_before (mailcow UI) -> user sieve_after (mailcow UI) -> global_sieve_after
4
require ["mailbox", "fileinto"];
6
if header :contains ["Chat-Version"] [""] {
7
if mailboxexists "DeltaChat" {
8
fileinto "DeltaChat";
9
} else {
10
fileinto :create "DeltaChat";
11
}
12
stop;
13
}