You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to IDLE-wait on any any mailbox of an account? I know you can idle-wait on the inbox with
while true do
success = account.Inbox:enter_idle()
if success then
os.execute('mbsync -a')
end
end
but I also get stuff sent to other folders on the server, is there a way to do something like account.AllTheFolders:enter_idle() perhaps there's some concurrency feature like race(account.Inbox.enter_idle(), account.Work.enter_idle(), account.Fun.enter_idle()) ?
The text was updated successfully, but these errors were encountered:
Is it possible to IDLE-wait on any any mailbox of an account? I know you can idle-wait on the inbox with
but I also get stuff sent to other folders on the server, is there a way to do something like
account.AllTheFolders:enter_idle()
perhaps there's some concurrency feature likerace(account.Inbox.enter_idle(), account.Work.enter_idle(), account.Fun.enter_idle())
?The text was updated successfully, but these errors were encountered: