Skip to content

Instantly share code, notes, and snippets.

@kennethkalmer
Created November 22, 2009 19:32
Show Gist options
  • Save kennethkalmer/240685 to your computer and use it in GitHub Desktop.
Save kennethkalmer/240685 to your computer and use it in GitHub Desktop.
# Change this file to be a wrapper around your daemon code.
# Do your post daemonization configuration here
# At minimum you need just the first line (without the block), or a lot
# of strange things might start happening...
DaemonKit::Application.running! do |config|
# Trap signals with blocks or procs
# config.trap( 'INT' ) do
# # do something clever
# end
# config.trap( 'TERM', Proc.new { puts 'Going down' } )
end
DaemonKit::XMPP.run do
when_ready { DaemonKit.logger.info "Connected as #{jid}" }
# Auto approve subscription requests
subscription :request? do |s|
write_to_stream s.approve!
end
# Echo back what was said
message :chat?, :body do |m|
write_to_stream m.reply
end
end
require 'blather'
# Jabber configuration file
# The configuration specifies the following keys:
# * jabber_id - Identidy (username) of the user
# * password - Password used to authenticate
# * resource - Multiple connections can be made with the same credentials and different resources
# * masters - Array of Jabber ID's whose messages will be processed
# * supporters - Additional 'buddies' to keep on roster, but messages won't be processed
defaults: &defaults
jabber_id: dk@jabber
password: secret
resource: daemon_kit
masters:
- [email protected]
supporters:
- [email protected]
development:
<<: *defaults
test:
<<: *defaults
production:
<<: *defaults
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment