""" Set your postgres connection info NOTE: If your Postgres socket is located somewhere other than '/var/run/postgresql/', you will have to specify your host in the postgres connection string . E.g. 'host=/tmp/' """ postgres = {'connection_string': 'dbname=your_postgres_db user=your_postgres_user', 'channel': 'log_new_message'} """ Set your bot name and command prefix """ bot = {'bot_name': 'your_bot', 'bot_command_prefix': '!your_command_prefix'} """ Set this to True if you want main.py to pass ALL irc messages to router.py instead of just messages intended to be commands (i.e. messages starting with bot_command_prefix). This could be useful if, e.g. you are making an archive bot or a log quoter. """ route_all_notifications = False """ Set your list of irc nicks to ignore Irc messages originating from a nick on this list will be 'ignored' by main.py (i.e. those messages will not be processed nor commands routed) This could be useful if, e.g. you are running many bots in the same channel and don't want them talking to each other. """ ignore_list = ('examplebot','gavinandresen')