host: Add spam filter sample

This commit is contained in:
jaseg 2016-01-04 21:21:55 +01:00
parent cae13443bc
commit 3f1a8bd116

7
host/secret_sauce.py Normal file
View file

@ -0,0 +1,7 @@
class SpamError(ValueError):
def __str__(self):
return ' '.join(self.args)
def check_spam(addr, data):
pass