summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-05-22 23:37:33 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-05-22 23:37:33 -0400
commit58f1e1467c2b68a7d734c457aaa815377226f01c (patch)
tree873373eb82ae3206e35fec1a8aa711c06843e65d
parent39bd672b152e7b15f0b34fd06572ca3a14bf877c (diff)
tweak mail filter
-rw-r--r--.maildirproc/default.rc6
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