【CentOS】IRCサーバを導入してみた

CentOS IRCサーバ構築 ircd.conf ポート開放 詰まったところなど
エラーが出た

設定ファイルをちゃんと読めと言われているらしい
You haven't read your config file properly.
There is a line in the example conf that will kill your server if not removed.
Consider actually reading/editing the conf file, and removing this line.

http://labs.unoh.net/2008/08/ircd.html
http://g-chan.dip.jp/square/archives/2010/09/centos5ircd_1.html
havent_read_conf = 1;
↑を消さないと読んだことにならない
need_ident消さないとdisable_auth = yesにしても認証しろって言われる
auth {
    user = "*@*";
    class = "users";
    flags = need_ident;
}