diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-05-22 23:37:33 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-05-22 23:37:33 -0400 |
commit | 58f1e1467c2b68a7d734c457aaa815377226f01c (patch) | |
tree | 873373eb82ae3206e35fec1a8aa711c06843e65d /.maildirproc/default.rc | |
parent | 39bd672b152e7b15f0b34fd06572ca3a14bf877c (diff) |
tweak mail filter
Diffstat (limited to '.maildirproc/default.rc')
-rw-r--r-- | .maildirproc/default.rc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.maildirproc/default.rc b/.maildirproc/default.rc index 1661527..f49fb9b 100644 --- a/.maildirproc/default.rc +++ b/.maildirproc/default.rc @@ -232,7 +232,11 @@ def my_filters(mail): mail.move(".CompTIA") return - if is_to_or_from(mail, "@lnnorthstar.org"): + if ( + False + or is_to_or_from(mail, "@lnnorthstar.org") + or is_to_or_from(mail, "lnnorthstar.org@tigertech.net") + ): mail.move(".School.Newspaper") return |