diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-02-12 11:27:33 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-02-12 11:27:33 +0100 |
commit | 4350b747f91ec9d6f775f0315a868e0eaa1b4e7c (patch) | |
tree | 3202c52fb8c9ec68a6cacf886974f33f4ebeb722 /mail.sieve | |
parent | fe5e311fa9e6b3fa25ccd9ce455032b2e126ca09 (diff) |
Correct bugs xmodmap
Diffstat (limited to 'mail.sieve')
-rw-r--r-- | mail.sieve | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail.sieve b/mail.sieve new file mode 100644 index 0000000..d7dd982 --- /dev/null +++ b/mail.sieve @@ -0,0 +1,11 @@ +require ["fileinto"]; + +if address :is "To" "facebook@urbainvaes.com" +{ + fileinto :create "Drafts"; +} + +else +{ + keep; +} |