We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abc7dc0 commit 5285353Copy full SHA for 5285353
smtp/init.lua
@@ -29,7 +29,6 @@
29
-- SUCH DAMAGE.
30
--
31
32
-local fiber = require('fiber')
33
local driver = require('smtp.lib')
34
local digest = require('digest')
35
test/smtp.test.lua
@@ -9,7 +9,7 @@ local os = require('os')
9
local log = require('log')
10
11
test:plan(1)
12
-mails = fiber.channel(100)
+local mails = fiber.channel(100)
13
14
-- {{{ Debugging
15
@@ -64,7 +64,7 @@ end
64
65
-- }}} Debugging
66
67
-function write_reply_code(s, l)
+local function write_reply_code(s, l)
68
if l:find('3xx') then
69
s:write('354 Start mail input\r\n')
70
elseif l:find('4xx') then
0 commit comments