about summary refs log tree commit diff stats
path: root/filters
diff options
context:
space:
mode:
Diffstat (limited to 'filters')
-rw-r--r--filters/email-libravatar.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/filters/email-libravatar.lua b/filters/email-libravatar.lua index a248be4..b0e2447 100644 --- a/filters/email-libravatar.lua +++ b/filters/email-libravatar.lua
@@ -15,7 +15,8 @@ function filter_open(email, page)
15end 15end
16 16
17function filter_close() 17function filter_close()
18 html("<img src='//cdn.libravatar.org/avatar/" .. md5 .. "?s=13&amp;d=retro' width='13' height='13' alt='Libravatar' /> " .. buffer) 18 baseurl = os.getenv("HTTPS") and "https://seccdn.libravatar.org/" or "http://cdn.libravatar.org/"
19 html("<img src='" .. baseurl .. "avatar/" .. md5 .. "?s=13&amp;d=retro' width='13' height='13' alt='Libravatar' /> " .. buffer)
19 return 0 20 return 0
20end 21end
21 22