diff options
Diffstat (limited to 'filters')
| -rw-r--r-- | filters/email-libravatar.lua | 3 | 
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) | |||
| 15 | end | 15 | end | 
| 16 | 16 | ||
| 17 | function filter_close() | 17 | function filter_close() | 
| 18 | html("<img src='//cdn.libravatar.org/avatar/" .. md5 .. "?s=13&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&d=retro' width='13' height='13' alt='Libravatar' /> " .. buffer) | ||
| 19 | return 0 | 20 | return 0 | 
| 20 | end | 21 | end | 
| 21 | 22 | ||
