From b185e964945cf4bb58606a154922e5e7f079b0c0 Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Sun, 4 Oct 2009 00:28:54 +0200 Subject: mbox: don't hide when there is no mail --- mbox.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mbox.lua b/mbox.lua index d643e79..108a5c6 100644 --- a/mbox.lua +++ b/mbox.lua @@ -17,17 +17,15 @@ module("vicious.mbox") -- {{{ Mailbox widget type local function worker(format, mbox) - local f = io.open(mbox) -- mbox could be huge, get a 15kb chunk from EOF -- * attachments could be much bigger than this + local f = io.open(mbox) f:seek("end", -15360) - local text = f:read("*all") + local txt = f:read("*all") f:close() - for match in string.gfind(text, "Subject: ([^\n]*)") do - subject = match - end - + -- Find all Subject lines + for s in string.gfind(txt, "Subject: ([^\n]*)") do subject = s end if subject then -- Spam sanitize only the last subject subject = helpers.escape(subject) @@ -36,6 +34,8 @@ local function worker(format, mbox) subject = helpers.truncate(subject, 22) return {subject} + else + return {"N/A"} end end -- }}} -- cgit v1.2.3