comparison mod_net_dovecotauth/mod_net_dovecotauth.lua @ 1491:e7294423512f

mod_net_dovecotauth: Fix typo in config option
author Kim Alvefur <zash@zash.se>
date Tue, 19 Aug 2014 16:54:30 +0200
parents 6f8e7f65f704
children 1831c7b23286
comparison
equal deleted inserted replaced
1490:b06b5ac5714b 1491:e7294423512f
17 local new_buffer = module:require"buffer".new; 17 local new_buffer = module:require"buffer".new;
18 local dump = require"util.serialization".serialize; 18 local dump = require"util.serialization".serialize;
19 19
20 -- Config 20 -- Config
21 local vhost = module:get_option_string("dovecotauth_host", (next(hosts))); -- TODO Is there a better solution? 21 local vhost = module:get_option_string("dovecotauth_host", (next(hosts))); -- TODO Is there a better solution?
22 local allow_master = module:get_option_boolean("adovecotauth_allow_master", false); 22 local allow_master = module:get_option_boolean("dovecotauth_allow_master", false);
23 23
24 -- Active sessions 24 -- Active sessions
25 local sessions = {}; 25 local sessions = {};
26 26
27 -- Session methods 27 -- Session methods