comparison mod_auth_imap/auth_imap/sasl_imap.lib.lua @ 5013:a106477f1a65

mod_auth_imap: Remove unused variable [luacheck]
author Kim Alvefur <zash@zash.se>
date Wed, 24 Aug 2022 16:03:17 +0200
parents f384669a9359
children
comparison
equal deleted inserted replaced
5012:b97a2ffef87f 5013:a106477f1a65
193 return "failure", "internal-server-error", err 193 return "failure", "internal-server-error", err
194 end 194 end
195 log("debug", "Received %d bytes from socket: %s", #line, line); 195 log("debug", "Received %d bytes from socket: %s", #line, line);
196 196
197 while line and line:match("^%* ") do 197 while line and line:match("^%* ") do
198 line, err = self.conn:receive("*l"); 198 line = self.conn:receive("*l");
199 end 199 end
200 200
201 if line:match("^%+") and #line > 2 then 201 if line:match("^%+") and #line > 2 then
202 local data = line:sub(3); 202 local data = line:sub(3);
203 data = data and unb64(data); 203 data = data and unb64(data);