diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-05 17:36:27 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-05 17:36:27 +0100 |
commit | 2c3ccf56744975a5f5acbc66d2e917e056467965 (patch) | |
tree | 2791d9c28c980b6f9c355c705a2611a0b28d1cff | |
parent | 84294f210ad1196af663e6f8cdd5733eb6f86419 (diff) | |
download | prosody-2c3ccf56744975a5f5acbc66d2e917e056467965.tar.gz prosody-2c3ccf56744975a5f5acbc66d2e917e056467965.zip |
mod_console: Allow customisation/suppression of the banner
-rw-r--r-- | plugins/mod_console.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/mod_console.lua b/plugins/mod_console.lua index 0f2c6711..966156f8 100644 --- a/plugins/mod_console.lua +++ b/plugins/mod_console.lua @@ -437,6 +437,8 @@ end ------------- 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 @@ session.print [[ 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 |