Multiple recipients support
Explain how to send multiline messages in the README.md file. New README file for nagios and example configuration files.
Set example id and password
jabber-send is a cli tool for sending messages using XMPP.
To send messages using jabber-send you must already have an account.
In the configuration file set your id and password. See the example file in the conf directory.
To send a message simply run
jabber-send -c myconf.yaml -m "My Message" -r user@domain -s "My Subject"
If you want to send multiline messages you need to use an external formatter such as printf.
jabber-send -c conf/config.yaml -m "`printf "Line 1 \nLine 2"`" -r user@domain -s "Subject"