From e279ce521d978ff817bf575d4a2c2d61a534e5de Mon Sep 17 00:00:00 2001 From: Marco Cirillo Date: Wed, 6 Apr 2011 20:00:44 +0100 Subject: mod_pubsub: Support for setting a disco name --- plugins/mod_pubsub.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua index 465bcb00..fd307583 100644 --- a/plugins/mod_pubsub.lua +++ b/plugins/mod_pubsub.lua @@ -9,6 +9,8 @@ local xmlns_pubsub_event = "http://jabber.org/protocol/pubsub#event"; local autocreate_on_publish = module:get_option_boolean("autocreate_on_publish", false); local autocreate_on_subscribe = module:get_option_boolean("autocreate_on_subscribe", false); +local pubsub_disco_name = module:get_option("name"); +if type(pubsub_disco_name) ~= "string" then pubsub_disco_name = "Prosody PubSub Service"; end local service; @@ -217,7 +219,7 @@ end local function build_disco_info(service) local disco_info = st.stanza("query", { xmlns = "http://jabber.org/protocol/disco#info" }) - :tag("identity", { category = "pubsub", type = "service" }):up() + :tag("identity", { category = "pubsub", type = "service", name = pubsub_disco_name }):up() :tag("feature", { var = "http://jabber.org/protocol/pubsub" }):up(); add_disco_features_from_service(disco_info, service); return disco_info; @@ -359,4 +361,4 @@ set_service(pubsub.new({ get_affiliation = get_affiliation; normalize_jid = jid_bare; -})); +})); \ No newline at end of file -- cgit v1.2.3