mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-06-08 18:09:06 +02:00
Fixed sieve filters
This commit is contained in:
parent
b9209a815c
commit
86837313c2
2 changed files with 49 additions and 11 deletions
|
@ -22,16 +22,8 @@ with lib;
|
|||
loginAccounts = {
|
||||
"julien@malka.sh" = {
|
||||
hashedPasswordFile = "/run/secrets/malkash-pw";
|
||||
catchAll = [ "malka.sh" ];
|
||||
sieveScript = ''
|
||||
require ["variables", "fileinto", "envelope", "subaddress", "mailbox"];
|
||||
|
||||
if envelope :matches :user "to" "*" {
|
||||
# you can prefix with INBOX/ or INBOX. if necessary
|
||||
# remove :create if you want to permit only existing mailboxes
|
||||
fileinto :create "''${1}";
|
||||
}
|
||||
'';
|
||||
aliases = [ "@malka.sh" ];
|
||||
sieveScript = builtins.readFile ./malka-sh.sieve;
|
||||
};
|
||||
"julien.malka@ens.school" = {
|
||||
hashedPasswordFile = "/run/secrets/ensmailmalka-pw";
|
||||
|
@ -49,7 +41,6 @@ with lib;
|
|||
|
||||
services.roundcube = {
|
||||
enable = true;
|
||||
plugins = [ "managesieve" ];
|
||||
hostName = "webmail.julienmalka.me";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue