Rev 3 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: config.h.tmpl 6 2024-08-25 19:00:39Z nishi $ */
/* This is the template config */
#ifndef __CONFIG_H__
#define __CONFIG_H__
/* Specify logger */
#undef USE_SYSLOG
#define USE_STDERR
/* IRC server IP */
#define IRC_SERVER "127.0.0.1"
/* IRC server port */
#define IRC_PORT 6667
/* IRC server password */
#define IRC_SECRET "secret"
/* Service name */
#define IRC_SERVICE "ircserv.localhost.local"
/* Services */
#define USE_NICKSERV
#define USE_MEMOSERV
#define USE_CHANSERV
#define USE_OPERSERV
/* IRCd */
#define USE_BAHAMUT_IRCD
#endif
/*
vim: syntax=c
*/