Advertisement
Guest User

darksis

a guest
May 2nd, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. # (see Configuration.default_config)
  2. def self.default_config
  3. {
  4. :server => "192.168.1.13",
  5. :port => 4572,
  6. :ssl => Configuration::SSL.new,
  7. :password => nil,
  8. :nick => "cinch",
  9. :nicks => nil,
  10. :realname => "cinch",
  11. :user => "cinch",
  12. :modes => [],
  13. :messages_per_second => nil,
  14. :server_queue_size => nil,
  15. :strictness => :forgiving,
  16. :message_split_start => '... ',
  17. :message_split_end => ' ...',
  18. :max_messages => nil,
  19. :plugins => Configuration::Plugins.new,
  20. :channels => [],
  21. :encoding => :irc,
  22. :reconnect => true,
  23. :max_reconnect_delay => 300,
  24. :local_host => nil,
  25. :timeouts => Configuration::Timeouts.new,
  26. :ping_interval => 120,
  27. :delay_joins => 0,
  28. :dcc => Configuration::DCC.new,
  29. :sasl => Configuration::SASL.new,
  30. :shared => {},
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement