462670e60804a431d5bc2fd4425c5a34651c3103
[prosody.git] / plugins / mod_motd.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 -- Copyright (C) 2010 Jeff Mitchell
5 -- 
6 -- This project is MIT/X11 licensed. Please see the
7 -- COPYING file in the source package for more information.
8 --
9
10 local host = module:get_host();
11 local motd_text = module:get_option("motd_text") or "MOTD: (blank)";
12 local motd_jid = module:get_option("motd_jid") or host;
13
14 local st = require "util.stanza";
15
16 motd_text = motd_text:gsub("^%s*(.-)%s*$", "%1"):gsub("\n%s+", "\n"); -- Strip indentation from the config
17
18 module:hook("resource-bind",
19         function (event)
20                 local session = event.session;
21                 local motd_stanza =
22                         st.message({ to = session.username..'@'..session.host, from = motd_jid })
23                                 :tag("body"):text(motd_text);
24                 core_route_stanza(hosts[host], motd_stanza);
25                 module:log("debug", "MOTD send to user %s@%s", session.username, session.host);
26
27 end);