filter: add page source to email filter

Since the email filter is called from lots of places, the script might
benefit from knowing the origin. That way it can modify its contents
and/or size depending.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld
2014-01-13 16:24:40 +01:00
والد e942a1622b
کامیت 786609bd36
8فایلهای تغییر یافته به همراه21 افزوده شده و 15 حذف شده

مشاهده پرونده

@@ -9,7 +9,7 @@
require("crypto")
function filter_open(email)
function filter_open(email, page)
buffer = ""
md5 = crypto.digest("md5", email:sub(2, -2):lower())
end

مشاهده پرونده

@@ -27,6 +27,8 @@ if email[0] == '<':
if email[-1] == '>':
email = email[0:-1]
page = sys.argv[2]
md5 = hashlib.md5(email.encode()).hexdigest()
text = sys.stdin.read().strip()