mirror of https://github.com/lcpz/lain.git
imap: add notify option to disable notifications (read the wiki)
This commit is contained in:
parent
721ae4b7b5
commit
0ef7864227
|
@ -27,6 +27,7 @@ local function factory(args)
|
||||||
local timeout = args.timeout or 60
|
local timeout = args.timeout or 60
|
||||||
local is_plain = args.is_plain or false
|
local is_plain = args.is_plain or false
|
||||||
local followtag = args.followtag or false
|
local followtag = args.followtag or false
|
||||||
|
local notify = args.notify or "on"
|
||||||
local settings = args.settings or function() end
|
local settings = args.settings or function() end
|
||||||
|
|
||||||
local head_command = "curl --connect-timeout 3 -fsm 3"
|
local head_command = "curl --connect-timeout 3 -fsm 3"
|
||||||
|
@ -64,7 +65,7 @@ local function factory(args)
|
||||||
widget = imap.widget
|
widget = imap.widget
|
||||||
settings()
|
settings()
|
||||||
|
|
||||||
if mailcount >= 1 and mailcount > helpers.get_map(mail) then
|
if notify == "on" and mailcount >= 1 and mailcount > helpers.get_map(mail) then
|
||||||
if mailcount == 1 then
|
if mailcount == 1 then
|
||||||
nt = mail .. " has one new message"
|
nt = mail .. " has one new message"
|
||||||
else
|
else
|
||||||
|
|
2
wiki
2
wiki
|
@ -1 +1 @@
|
||||||
Subproject commit bb1a4d45d8ec98109167a53a4ebf2ef9017843c3
|
Subproject commit cc064cb376f34844abba70ab58de2df1e397955b
|
Loading…
Reference in New Issue