home · contact · privacy
Add mail server setup scripting.
[config] / buster / other_files / dovecot.sieve
1 require ["fileinto"];
2 require ["mailbox"];
3 if address :is "from" "foo@bar.com" {
4   fileinto :create "foo";
5 }
6 if address :is :domain "to" "example.com" {
7   fileinto :create "example.com";
8 }