Software /
code /
prosody
Diff
plugins/mod_auth_cyrus.lua @ 5000:58c9519dc461
mod_auth_cyrus, util.sasl_cyrus: Add new option 'cyrus_server_fqdn' to override the hostname passed to Cyrus (and used in e.g. GSSAPI/Kerberos) - fixes #295
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 24 Jul 2012 10:56:47 +0100 |
parent | 4160:f08f649b898b |
child | 5115:3939960b3c07 |
line wrap: on
line diff
--- a/plugins/mod_auth_cyrus.lua Tue Jul 24 10:44:37 2012 +0100 +++ b/plugins/mod_auth_cyrus.lua Tue Jul 24 10:56:47 2012 +0100 @@ -14,6 +14,7 @@ local cyrus_service_name = module:get_option("cyrus_service_name"); local cyrus_application_name = module:get_option("cyrus_application_name"); local require_provisioning = module:get_option("cyrus_require_provisioning") or false; +local host_fqdn = module:get_option("cyrus_server_fqdn"); prosody.unlock_globals(); --FIXME: Figure out why this is needed and -- why cyrussasl isn't caught by the sandbox @@ -23,7 +24,8 @@ return cyrus_new( cyrus_service_realm or realm, cyrus_service_name or "xmpp", - cyrus_application_name or "prosody" + cyrus_application_name or "prosody", + host_fqdn ); end