All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
4 Licensed under GNU General Public License v2
5 * (c) 2013, Luke Bonham
9 local helpers = require("lain.helpers")
11 local naughty = require("naughty")
12 local wibox = require("wibox")
14 local io = { popen = io.popen }
15 local string = { format = string.format,
18 local setmetatable = setmetatable
24 local function worker(args)
25 local args = args or {}
27 local server = args.server
28 local mail = args.mail
29 local password = args.password
31 local port = args.port or 993
32 local timeout = args.timeout or 60
33 local is_plain = args.is_plain or false
34 local settings = args.settings or function() end
36 local head_command = "curl --connect-timeout 1 -fsm 3"
37 local request = "-X 'SEARCH (UNSEEN)'"
39 helpers.set_map(mail, 0)
43 local f = io.popen(password)
44 password = f:read("*all"):gsub("\n", "")
48 imap.widget = wibox.widget.textbox('')
50 function imap.update()
51 notification_preset = {
52 icon = helpers.icons_dir .. "mail.png",
56 curl = string.format("%s --url imaps://%s:%s/INBOX -u %s:%s %s -k",
57 head_command, server, port, mail, password, request)
63 t, mailcount = string.gsub(ws, "%d", "")
64 t = nil -- because it's useless
69 if mailcount > helpers.get_map(mail) and mailcount >= 1
71 if mailcount == 1 then
72 nt = mail .. " has one new message"
74 nt = mail .. " has <b>" .. mailcount .. "</b> new messages"
76 naughty.notify({ preset = notification_preset, text = nt })
79 helpers.set_map(mail, mailcount)
82 helpers.newtimer(mail, timeout, imap.update, true)
86 return setmetatable(imap, { __call = function(_, ...) return worker(...) end })