mbox: don't hide when there is no mail

This commit is contained in:
Adrian C. (anrxc) 2009-10-04 00:28:54 +02:00
parent 724366c038
commit b185e96494
1 changed files with 6 additions and 6 deletions

View File

@ -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
-- }}}