Add Sieve script for mail filtering to move messages to Sent folder

This commit is contained in:
2025-03-15 23:05:12 +01:00
parent 98f789d2c8
commit 5fbd28e69c
+5
View File
@@ -0,0 +1,5 @@
require ["fileinto"];
if envelope :matches "from" "*" {
fileinto "Sent";
}