# HG changeset patch # User Matthew Wild # Date 1246811787 -3600 # Node ID efd19cdda6caab1147eec30d7bf79373f459add0 # Parent 9734231a569ffe6229a62e91a9a0d78d106c2fba mod_console: Allow customisation/suppression of the banner diff -r 9734231a569f -r efd19cdda6ca plugins/mod_console.lua --- a/plugins/mod_console.lua Sun Jul 05 17:10:42 2009 +0100 +++ b/plugins/mod_console.lua Sun Jul 05 17:36:27 2009 +0100 @@ -437,6 +437,8 @@ ------------- function printbanner(session) + local option = config.get("*", "core", "console_banner"); +if option == nil or option == "full" or option == "graphic" then session.print [[ ____ \ / _ | _ \ _ __ ___ ___ _-_ __| |_ _ @@ -446,7 +448,18 @@ A study in simplicity |___/ ]] +end +if option == nil or option == "short" or option == "full" then session.print("Welcome to the Prosody administration console. For a list of commands, type: help"); session.print("You may find more help on using this console in our online documentation at "); session.print("http://prosody.im/doc/console\n"); end +if option and option ~= "short" and option ~= "full" and option ~= "graphic" then + if type(option) == "string" then + session.print(option) + elseif type(option) == "function" then + setfenv(option, redirect_output(_G, session)); + pcall(option, session); + end +end +end