- Use reserved example domains as specified in rfc2606
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>
Wed, 24 Dec 2014 13:26:29 +0000 (13:26 +0000)
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>
Wed, 24 Dec 2014 13:26:29 +0000 (13:26 +0000)
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/trunk@5109 82007160-df01-0410-b94d-b575c5fd34c7

doc/reference.conf
src/config.c

index 18fe52854c590d343a86413c340c6e383bc2dfab..5c3ca79564e7e7aef4f7910b311817d0311568ca 100644 (file)
@@ -89,7 +89,7 @@ irc {
         * Hostname (or IP) of the IRC server which HOPM will monitor
         * connections on.
         */
-       server = "myserver.somenetwork.org";
+       server = "irc.example.org";
 
        /*
         * Password used to connect to the IRC server (PASS)
@@ -528,7 +528,7 @@ scanner {
         * If your ircd supports a more specific line (see below),
         * using it will reduce false positives.
         */
-       target_string = ":server.yournetwork.org NOTICE * :*** Looking up your hostname";
+       target_string = ":irc.example.org NOTICE * :*** Looking up your hostname";
 
        /*
         * If you try to connect too fast, you'll be throttled by your own
index 0a5c7719295f0ae87798e3aafdd073032a41d647..570199ba1216b43b335bea361015476634768f5d 100644 (file)
@@ -125,7 +125,7 @@ void config_setup()
    IRCItem->oper = xstrdup("undefined");
    IRCItem->username = xstrdup("hopm");
    IRCItem->realname = xstrdup("Hybrid Open Proxy Monitor");
-   IRCItem->server = xstrdup("myserver.blitzed.org");
+   IRCItem->server = xstrdup("irc.example.org");
    IRCItem->vhost = xstrdup("");
    IRCItem->connregex = xstrdup("\\*\\*\\* Notice -- Client connecting: ([^ ]+) \\(([^@]+)@([^\\)]+)\\) \\[([0-9\\.]+)\\].*");
    IRCItem->kline = xstrdup("KLINE %u@%h :Open Proxy found on your host.");