home · contact · privacy
Add POP3 account fetching to mail server setup.
[config] / all_new_2018 / user_files / dovecot.sieve
diff --git a/all_new_2018/user_files/dovecot.sieve b/all_new_2018/user_files/dovecot.sieve
new file mode 100644 (file)
index 0000000..5346309
--- /dev/null
@@ -0,0 +1,8 @@
+require ["fileinto"];
+require ["mailbox"];
+if address :is "from" "foo@bar.com" {
+  fileinto :create "foo";
+}
+if address :is :domain "to" "example.com" {
+  fileinto :create "example.com";
+}