mirror of
https://github.com/moparisthebest/imapfilter
synced 2024-12-21 23:28:49 -05:00
Correct variable error in one of the examples.
This commit is contained in:
parent
0d77e9d9a8
commit
362a123cd4
@ -77,7 +77,7 @@ results:delete_messages()
|
||||
all = myaccount.mymailbox:select_all()
|
||||
|
||||
for _, mesg in ipairs(all) do
|
||||
mbox, uid = table.unpack(all)
|
||||
mbox, uid = table.unpack(mesg)
|
||||
header = mbox[uid]:fetch_header()
|
||||
body = mbox[uid]:fetch_body()
|
||||
message = header:gsub('[\r\n]+$', '\r\n') ..
|
||||
|
Loading…
Reference in New Issue
Block a user