From 0ef78642276735127d2206be184c1e071ad6b0ed Mon Sep 17 00:00:00 2001 From: Luke Bonham Date: Tue, 25 Jul 2017 21:34:07 +0200 Subject: [PATCH] imap: add notify option to disable notifications (read the wiki) --- widget/imap.lua | 3 ++- wiki | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/widget/imap.lua b/widget/imap.lua index 0f7fde5..84a1cd0 100644 --- a/widget/imap.lua +++ b/widget/imap.lua @@ -27,6 +27,7 @@ local function factory(args) local timeout = args.timeout or 60 local is_plain = args.is_plain or false local followtag = args.followtag or false + local notify = args.notify or "on" local settings = args.settings or function() end local head_command = "curl --connect-timeout 3 -fsm 3" @@ -64,7 +65,7 @@ local function factory(args) widget = imap.widget 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 nt = mail .. " has one new message" else diff --git a/wiki b/wiki index bb1a4d4..cc064cb 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit bb1a4d45d8ec98109167a53a4ebf2ef9017843c3 +Subproject commit cc064cb376f34844abba70ab58de2df1e397955b -- 2.39.2