# HG changeset patch # User Matthew Wild # Date 1380216942 -3600 # Node ID 2cce28fe806b77f2f044942fec4fda5b861d3f48 # Parent 744af76b732474bac95a9e42a85e6210fa73b1ce mod_auth_imap: Fix typo in previous commit diff -r 744af76b7324 -r 2cce28fe806b mod_auth_imap/auth_imap/mod_auth_imap.lua --- a/mod_auth_imap/auth_imap/mod_auth_imap.lua Thu Sep 26 18:30:46 2013 +0100 +++ b/mod_auth_imap/auth_imap/mod_auth_imap.lua Thu Sep 26 18:35:42 2013 +0100 @@ -8,7 +8,7 @@ local imap_host = module:get_option_string("imap_auth_host", "localhost"); local imap_port = module:get_option_number("imap_auth_port"); -local imap_service_realm = module:get_option_string("imap_auth_realm", module_get_option("sasl_realm")); +local imap_service_realm = module:get_option_string("imap_auth_realm", module:get_option("sasl_realm")); local imap_service_name = module:get_option_string("imap_auth_service_name"); local append_host = module:get_option_boolean("auth_append_host");