Software /
code /
prosody-modules
Changeset
538:de64963d8e7a
mod_ircd: Made the requirement of setting the conference_server a bit more "aggressive", and the resulting error banner for not setting it also.
author | Marco Cirillo <maranda@lightwitch.org> |
---|---|
date | Sun, 08 Jan 2012 17:25:34 +0000 |
parents | 537:50be30f203f3 |
children | 539:99465bbfa205 |
files | mod_ircd/mod_ircd.in.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_ircd/mod_ircd.in.lua Sun Jan 08 05:25:49 2012 +0000 +++ b/mod_ircd/mod_ircd.in.lua Sun Jan 08 17:25:34 2012 +0000 @@ -14,7 +14,8 @@ module.host, nil, module:get_option_string("conference_server"), module:get_option_number("listener_port", 7000); if not muc_server then - module:log ("error", "You need to set the MUC server! halting.") + module:log ("error", "You need to set the MUC server in the configuration (conference_server)!") + module:log ("error", "Be a good boy or girl and go read the wiki at: http://code.google.com/p/prosody-modules/wiki/mod_ircd") return false; end