# HG changeset patch # User Matthew Wild # Date 1317146714 -3600 # Node ID 886eebf10802810f3d885843724f1add7aa2d6d0 # Parent eded80beab5870d1061739b6ef31b110f67923ed mod_motd: Send no message (instead of 'blank') if no message is set in the config (thanks medics) diff -r eded80beab58 -r 886eebf10802 plugins/mod_motd.lua --- a/plugins/mod_motd.lua Tue Sep 27 17:28:56 2011 +0100 +++ b/plugins/mod_motd.lua Tue Sep 27 19:05:14 2011 +0100 @@ -8,9 +8,11 @@ -- local host = module:get_host(); -local motd_text = module:get_option("motd_text") or "MOTD: (blank)"; +local motd_text = module:get_option("motd_text"); local motd_jid = module:get_option("motd_jid") or host; +if not motd_text then return; end + local st = require "util.stanza"; motd_text = motd_text:gsub("^%s*(.-)%s*$", "%1"):gsub("\n%s+", "\n"); -- Strip indentation from the config