NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
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
sieve_8.yml
headline: lang.sieve_preset_8
content: |
  require "fileinto";
  require "mailbox";
  require "variables";
  require "subaddress";
  require "envelope";
  require "duplicate";
  require "imap4flags";
  if header :matches "To" "*[email protected]*" {
    redirect "[email protected]";
    setflag "\\seen"; /* Mark mail as read */
    fileInto "INBOX/SubFolder"; /* Move mail on subfolder after */
  } else {
    # The rest goes into INBOX
    # default is "implicit keep", we do it explicitly here
    keep;
  }