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")
10 local async = require("lain.asyncshell")
12 local naughty = require("naughty")
13 local wibox = require("wibox")
15 local string = { format = string.format,
17 local tonumber = tonumber
19 local setmetatable = setmetatable
24 local function worker(args)
26 local args = args or {}
28 local server = args.server
29 local mail = args.mail
30 local password = args.password
32 local port = args.port or 993
33 local timeout = args.timeout or 60
34 local is_plain = args.is_plain or false
35 local followtag = args.followtag or false
36 local settings = args.settings or function() end
38 local head_command = "curl --connect-timeout 3 -fsm 3"
39 local request = "-X 'SEARCH (UNSEEN)'"
41 helpers.set_map(mail, 0)
44 password = helpers.read_pipe(password):gsub("\n", "")
47 imap.widget = wibox.widget.textbox('')
50 mail_notification_preset = {
51 icon = helpers.icons_dir .. "mail.png",
56 mail_notification_preset.screen = awful.screen.focused()
59 curl = string.format("%s --url imaps://%s:%s/INBOX -u %s:%q %s -k",
60 head_command, server, port, mail, password, request)
62 async.request(curl, function(f)
63 _, mailcount = string.gsub(f, "%d+", "")
69 if mailcount >= 1 and mailcount > helpers.get_map(mail)
71 if mailcount == 1 then
72 nt = mail .. " has one new message"
74 nt = mail .. " has <b>" .. mailcount .. "</b> new messages"
77 preset = mail_notification_preset,
82 helpers.set_map(mail, mailcount)
87 helpers.newtimer(mail, timeout, update, true)
89 return setmetatable(imap, { __index = imap.widget })
92 return setmetatable({}, { __call = function(_, ...) return worker(...) end })