## -*-ruby-*-
## Nadoka Sample resource file
## $Id: nadokarc,v 1.3 2004/04/19 10:23:48 ko1 Exp $

class NADOKA_Config < Nadoka::NDK_ConfigBase

###############################################
# System setting
Setting_name = 'IRCNet'

# 0: quiet
# 1: normal
# 2: kindness
# 3: debug
Loglevel = 3


###############################################
# client server setting
Client_server_port = 16660
Client_server_pass = 'NadokaPassWord'


###############################################
# server setting
Servers = {
  'irc.kyoto.wide.ad.jp'    => (6660 .. 6669),
  'irc.fujisawa.wide.ad.jp' => (6660 .. 6669),
  'irc.tokyo.wide.ad.jp'    => (6660 .. 6669),
  'irc.dti.ne.jp'           => (6660 .. 6669),
  'irc.huie.hokudai.ac.jp'  => 6667,
  'irc.tohoku.ac.jp'        => 6667,
}
Server_passwd = nil

###############################################
# userinfo
User     = 'testbot'
Nick     = 'test_ndk'
Hostname = '0'
Realname = 'test bot on nadoka'


###############################################
# channel info

# log filename foramt
#  $S : Setting name
#  $C : Channel name
#  %? : Time#strftime format(see ruby reference)
#
Default_log= '$S-$C-%y%m.log'

Channel_info = {
  '#nadoka' => {
    # timing
    #  :startup / when nadoka start up
    #  :login   / when user login
    :timing  => :startup,
    :log     => '$S-$C-%y%m.log',
  },
}

System_log = '$S-system.log'


###############################################
# Directory
Log_dir     = './log'
Plugins_dir = './plugins'


###############################################
# Bots
Bots = [
# :SampleBot,
]
BotConfig = {
  # 'BotName' => ...
}


###############################################
end

