1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
/* $Id: muhrc.in,v 1.10 2000/03/19 11:17:45 zap Exp $
##
##### ### ## ## ## ## ##
### ## ## ## ## ## ## ## ####
### #### ## ## ## ######### ###
# ## ## ### ### ## ##
# ###### ## ## ##
#
CONFIGURATION FILE
muh 2.05d (c)1998-2000 by Sebastian Kienzl <zap@riot.org>
muh will try to read this file from is $HOME/.muh/muhrc by default.
notes:
strings always have to be inbetween ""!
don't forget a ; after each instruction!
comments are in c/c++ and bash-style!
*/
/*************************************
********* REQUIRED SETTINGS *********
*************************************/
/* nickname <string>: your nickname on irc */
nickname = "muuh";
/* altnickname <string>: alternative nickname if nickname is occupied
* if this one is occupied as well muh will use a
* random nickname
*/
altnickname = "muuh-";
/* realname <string>: your 'real' name on irc */
realname = "John Doe";
/* username <string>: your ident (incase identd ain't running) */
username = "muh";
/* listenport <number>: the port muh will wait for incoming connections */
listenport = 9999;
/* password <string>: the password the connection to muh is secured with
* if it is 13 chars in length muh assumes it's crypted
* (try ./muh -c)
*/
password = "blah";
/* servers: muh's server-list
*
* example:
* servers {
* "irc.myfavserver.net",
* "irc.foo.bar":6666,
* "localhost":6668:"password"
* };
* - default-port is 6667
* - server-format: "server"[:port[:"password"]]
*/
servers {
"irc.myfavserver.net",
"irc.foo.bar":6666,
"localhost":6668:"password"
};
/*************************************
********* OPTIONAL SETTINGS *********
*************************************/
/* logging <boolean>: log messages while no client is connected?
* (default true)
*/
// logging = false;
/* leave <boolean>: leave channels when client disconnects?
* (default true)
*/
// leave = false;
/* leavemsg <string>: this string will be /me'd to all channels
* when the client disconnects
* (default none)
*/
// leavemsg = "is leaving...";
/* away <string>: people will receive this as a notice once if
* no client is connected
*/
away = "i'm not here, your messages get logged.";
/* getnick <boolean>: attempt to get the nickname specified with "nick"
* if occupied?
* (default true)
*/
// getnick = false;
/* nevergiveup <boolean>: muh will never stop trying to connect somewhere
* (even if all servers are disfunctional)
* (default false)
*/
// nevergiveup = true;
/* rejoin <boolean>: rejoin the channels after changing irc-server?
* (default false)
*/
// rejoin = true;
/* bind <string>: host/ip muh uses for in&outgoing connections
* (default none)
*/
// bind = "10.27.3.4";
/* antiidle <boolean>: reset idle-time every 10 minutes?
* (default false)
*/
// antiidle = true;
/* norestricted <boolean>: muh will jump to the next server if the
* connection is restricted
* (default false)
*/
// norestricted = true;
/* forwardmsg <string>: muh will collect the messages within 3 minutes
* and pipe them into the program specified
* example:
* forwardmsg = "mail sms@blah.org";
* this will mail the messages to sms@blah.org
* (default none)
*/
// forwardmsg = "mail sms@blah.org";
/* hosts: the hosts allowed to connect to muh
* example:
* hosts {
* "127.0.0.?" : yes,
* "*.trusted.dom" : yes,
* "*" : no
* };
* this would allow connections from 127.0.0.? and *.trusted.dom only
*
* - wildcards are * and ?
* - default-match is always "yes"
* - muh tries to match the ip and (if resolvable) hostname
*/
// hosts {
// "127.0.0.?" : yes,
// "*.trusted.dom" : yes,
// "*" : no
// };
/* people: people allowed to message & notice muh
* example:
* people {
* "*.stupid.org" : no,
* "idiot*!*" : no,
* "quite!*@annoying.com" : no
* };
* this would allow anyone except the hostmasks listed
*
* - wildcards are * and ?
* - default-match is always "yes"
*/
// people {
// "*.stupid.org" : no,
// "idiot*!*" : no,
// "quite!*@annoying.com" : no
// };
// end of file
|