Rev 6 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: config.h.tmpl 7 2024-08-25 20:49:55Z 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"
/* Service description */
#define IRC_SERVICE_DESCRIPTION "IRCServ services"
/* Services */
#define USE_NICKSERV
#define USE_MEMOSERV
#define USE_CHANSERV
#define USE_OPERSERV
/* IRCd */
#define USE_BAHAMUT_IRCD
#endif
/*
vim: syntax=c
*/