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
|
# first section is usage
# second section is that config maker will put into config
# third section is full help
module irc
:%*
:
:Common support of client connection to IRC server: creating/destroying server\
connection; sending output traffic; receiving and parsing input traffic;\
handling PING-PONG command pair; handling IRC clients interface.
Format of hosts (servers) for network record:
[:password@]domain.name[/port][%%flags]
where flags are connection-specific mandatory flags for creating connection\
chain (see technical documentation for details).
Standard fields "%^passwd%^" and "%^info%^" contain user name and user info\
for connection respectively.
Special field "%^nick%^" in network record may contain space separated list\
of nicks which can be used for registering on servers in this network.
set irc-timeout
:%* <seconds>
:Max idle timeout for link to server.
:This variable defines how mich time link is idle before it will be PINGed.
Default: 180.
set irc-connect-timeout
:%* <seconds>
:Max connection time for IRC network.
:This variable defines maximum time for registration on the IRC network.
Default: 300.
set irc-retry-timeout
:%* <seconds>
:Delay before reconnection the same server.
:This variable defines how much time we will wait before trying next list\
cycle on IRC network reconnection.
Default: 120.
set irc-default-port
:%* <number>
:Default port to connect IRC server.
:This variable defines which port will be connected if it isn't specified in\
server hostmask.
Default: 6667.
set irc-max-penalty
:%* <seconds>
:Max IRC server messages penalty.
:Variable for "Excess flood" protection.
Default: 10.
set irc-privmsg-keep
:%* <seconds>
:How long keep I_CLIENT interface if there isn't I_QUERY for it.
:This variable defines how long created interface will be kept by module.\
Keeping of it avoids excessive creating/destroying an interface.
Default: 30.
set irc-default-nick
:%* <string>
:Default nick in IRC networks.
:Used on registering on IRC network if there wasn't defined "%^nick%^" field\
(list of used nicks) in listfile record for this network.
Default: value of variable %cnick%n.
set irc-default-ident
:%* <ascii string>
:Default ident in IRC networks.
:Used on registering on IRC network. Note that if there is %^identd%^ service\
on your host then value of %_ident%_ will be ignored by server.
Default: your login name.
set irc-default-realname
:%* <string>
:Default realname in IRC networks.
:Used on registering on IRC network.
Default: your system's real name.
set irc-umode
:%* <+|-chars>
:Default umode changes in IRC networks.
:Your startup user mode is set by server (usually it's "+i") but we may\
attempt to change it. This variable defines desired changes in user mode\
after registering on network.
Default: ""
set irc-privmsg-commands
:%* <yes|no>
:Allow or not using of private messages as commands.
:This variable defines behavior when someone sends private message to me. If\
this variable is set to %^yes%^ then it will be parsed and checked for\
commands.
Default: no.
set irc-next-try
:%* <minutes>
:Retry IRC servers list timeout (in minutes).
:This variable defines which timeout module will wait until it will try again\
to find a working server after all of them were failed due to some reason\
(kill list, resolver error, all servers are down). Note that retry may be\
ocurred before that timeout due to %crehash%n command, interference from an\
other timeout, or module "%^irc-channel%^" reloading.
Default: 60.
fset irc_message
:
:
:Used when logging standard message on IRC network. Macros: %%N, %%@, %%L,\
%%#, %%*.
Default: "<%%N> %%*".
fset irc_notice
:
:
:Used when logging notice on IRC network. Macros: %%N, %%@, %%L, %%#, %%*.
Default: "-%%N- %%*".
fset irc_ctcp
:
:
:Used when logging CTCP message on IRC network. Macros: %%N, %%@, %%L, %%#,\
%%*.
Default: "%%N requested CTCP %%* from %%?#%%#?me?".
fset irc_ctcp_reply
:
:
:Used when logging CTCP reply on IRC network. Macros: %%N, %%@, %%L, %%#, %%*.
Default: "CTCP reply from %%N: %%*".
fset irc_action
:
:
:Used when logging action on IRC network. Macros: %%N, %%@, %%L, %%#, %%*.
Default: "* %%N %%*".
fset irc_message_command
:
:
:Used when logging private message command on IRC network. Macros: %%N,\
%%@, %%L, %%#, %%*.
Default: "%%?#<<?(?%%N%%?#>>?!%%@)? !%%L! %%*".
fset irc_ctcp_command
:
:
:Used when logging CTCP command on IRC network. Macros: %%N, %%@, %%L,\
%%#, %%*.
Default: "((%%N)) %%?L!%%L! ??%%?#(CTCP to %%#) ??%%*"
|