Mercurial > prosody-modules
changeset 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 | b06b5ac5714b |
children | 8c4a2d85e8bf |
files | mod_net_dovecotauth/mod_net_dovecotauth.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_net_dovecotauth/mod_net_dovecotauth.lua Sun Aug 17 23:10:19 2014 +0200 +++ b/mod_net_dovecotauth/mod_net_dovecotauth.lua Tue Aug 19 16:54:30 2014 +0200 @@ -19,7 +19,7 @@ -- Config local vhost = module:get_option_string("dovecotauth_host", (next(hosts))); -- TODO Is there a better solution? -local allow_master = module:get_option_boolean("adovecotauth_allow_master", false); +local allow_master = module:get_option_boolean("dovecotauth_allow_master", false); -- Active sessions local sessions = {};