Software /
code /
prosody-modules
Comparison
mod_auth_imap/auth_imap/mod_auth_imap.lua @ 1202:2cce28fe806b
mod_auth_imap: Fix typo in previous commit
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 26 Sep 2013 18:35:42 +0100 |
parent | 1201:744af76b7324 |
comparison
equal
deleted
inserted
replaced
1201:744af76b7324 | 1202:2cce28fe806b |
---|---|
6 local log = require "util.logger".init("auth_imap"); | 6 local log = require "util.logger".init("auth_imap"); |
7 | 7 |
8 local imap_host = module:get_option_string("imap_auth_host", "localhost"); | 8 local imap_host = module:get_option_string("imap_auth_host", "localhost"); |
9 local imap_port = module:get_option_number("imap_auth_port"); | 9 local imap_port = module:get_option_number("imap_auth_port"); |
10 | 10 |
11 local imap_service_realm = module:get_option_string("imap_auth_realm", module_get_option("sasl_realm")); | 11 local imap_service_realm = module:get_option_string("imap_auth_realm", module:get_option("sasl_realm")); |
12 local imap_service_name = module:get_option_string("imap_auth_service_name"); | 12 local imap_service_name = module:get_option_string("imap_auth_service_name"); |
13 local append_host = module:get_option_boolean("auth_append_host"); | 13 local append_host = module:get_option_boolean("auth_append_host"); |
14 | 14 |
15 local verify_certificate = module:get_option_boolean("auth_imap_verify_certificate", true); | 15 local verify_certificate = module:get_option_boolean("auth_imap_verify_certificate", true); |
16 local ssl_params = module:get_option("auth_imap_ssl", { | 16 local ssl_params = module:get_option("auth_imap_ssl", { |