aboutsummaryrefslogtreecommitdiff
path: root/gmail.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gmail.lua')
-rw-r--r--gmail.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/gmail.lua b/gmail.lua
index 98fb40d..c893c2d 100644
--- a/gmail.lua
+++ b/gmail.lua
@@ -26,7 +26,7 @@ local function worker(format, login)
local auth = login[1] .. ":" .. login[2]
-- Get info from the Gmail atom feed
- local f = io.popen("curl --max-time 3 -fsu "..auth.." https://mail.google.com/mail/feed/atom")
+ local f = io.popen("curl --connect-timeout 1 -m 3 -fsu "..auth.." https://mail.google.com/mail/feed/atom")
-- Could be huge don't read it all at once, info we are after is at the top
for line in f:lines() do