123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- # Edit :
- # password/nick
- # autojoin
- # Nagios-ack channels/files, at settings section
- # Immortal window (bottom of the configuration file)
- servers = (
- { address = "irc.stealth.net"; chatnet = "IRCnet"; port = "6668"; },
- { address = "irc.efnet.net"; chatnet = "EFNet"; port = "6667"; },
- {
- address = "ipv6.chat.freenode.net";
- chatnet = "FreeNode";
- port = "6697";
- use_ssl = "yes";
- ssl_verify = "no";
- autoconnect = "no"; #######################
- autosendcmd = "/^msg nickserv IDENTIFY mybotpassword";
- },
- {
- address = "irc.geeknode.net";
- chatnet = "GeekNode";
- autoconnect = "yes"; #######################
- port = "6697";
- use_ssl = "no";
- autosendcmd = "/^msg C nick IDENTIFY mybotpassword";
- },
- {
- address = "irc.undernet.org";
- chatnet = "Undernet";
- port = "6667";
- },
- { address = "irc.dal.net"; chatnet = "DALnet"; port = "6667"; },
- {
- address = "irc.quakenet.org";
- chatnet = "QuakeNet";
- port = "6667";
- },
- { address = "silc.silcnet.org"; chatnet = "SILC"; port = "706"; }
- );
- chatnets = {
- IRCnet = {
- type = "IRC";
- max_kicks = "4";
- max_msgs = "5";
- max_whois = "4";
- max_query_chans = "5";
- };
- EFNet = {
- type = "IRC";
- max_kicks = "4";
- max_msgs = "3";
- max_whois = "1";
- };
- Undernet = {
- type = "IRC";
- max_kicks = "1";
- max_msgs = "3";
- max_whois = "30";
- };
- DALnet = {
- type = "IRC";
- max_kicks = "4";
- max_msgs = "3";
- max_whois = "30";
- };
- QuakeNet = {
- type = "IRC";
- max_kicks = "1";
- max_msgs = "3";
- max_whois = "30";
- };
- SILC = { type = "SILC"; };
- };
- channels = (
- ###################################
- {
- name = "#main_channel";
- chatnet = "geeknode";
- password = "command_chan_password";
- autojoin = "Yes";
- },
- {
- name = "#test";
- chatnet = "geeknode";
- autojoin = "yes";
- }
- );
- ###################################
- aliases = {
- J = "join";
- WJOIN = "join -window";
- WQUERY = "query -window";
- LEAVE = "part";
- BYE = "quit";
- EXIT = "quit";
- SIGNOFF = "quit";
- DESCRIBE = "action";
- DATE = "time";
- HOST = "userhost";
- LAST = "lastlog";
- SAY = "msg *";
- WI = "whois";
- WII = "whois $0 $0";
- WW = "whowas";
- W = "who";
- N = "names";
- M = "msg";
- T = "topic";
- C = "clear";
- CL = "clear";
- K = "kick";
- KB = "kickban";
- KN = "knockout";
- BANS = "ban";
- B = "ban";
- MUB = "unban *";
- UB = "unban";
- IG = "ignore";
- UNIG = "unignore";
- SB = "scrollback";
- UMODE = "mode $N";
- WC = "window close";
- WN = "window new hide";
- SV = "say Irssi $J ($V) - http://irssi.org/";
- GOTO = "sb goto";
- CHAT = "dcc chat";
- RUN = "SCRIPT LOAD";
- UPTIME = "eval exec - expr `date +%s` - \\$F | awk '{print \"Irssi uptime: \"int(\\\\\\$1/3600/24)\"d \"int(\\\\\\$1/3600%24)\"h \"int(\\\\\\$1/60%60)\"m \"int(\\\\\\$1%60)\"s\" }'";
- CALC = "exec - if which bc &>/dev/null\\; then echo '$*' | bc | awk '{print \"$*=\"$$1}'\\; else echo bc was not found\\; fi";
- SBAR = "STATUSBAR";
- INVITELIST = "mode $C +I";
- Q = "QUERY";
- "MANUAL-WINDOWS" = "set use_status_window off;set autocreate_windows off;set autocreate_query_level none;set autoclose_windows off;set reuse_unused_windows on;save";
- EXEMPTLIST = "mode $C +e";
- ATAG = "WINDOW SERVER";
- };
- #######################
- # Cosmetic parameters #
- #######################
- statusbar = {
- # formats:
- # when using {templates}, the template is shown only if it's argument isn't
- # empty unless no argument is given. for example {sb} is printed always,
- # but {sb $T} is printed only if $T isn't empty.
- items = {
- # start/end text in statusbars
- barstart = "{sbstart}";
- barend = "{sbend}";
- topicbarstart = "{topicsbstart}";
- topicbarend = "{topicsbend}";
- # treated "normally", you could change the time/user name to whatever
- time = "{sb $Z}";
- user = "{sb {sbnickmode $cumode}$N{sbmode $usermode}{sbaway $A}}";
- # treated specially .. window is printed with non-empty windows,
- # window_empty is printed with empty windows
- window = "{sb $winref:$itemname{sbmode $M}}";
- window_empty = "{sb $winref{sbservertag $tag}}";
- prompt = "{prompt $[.15]itemname}";
- prompt_empty = "{prompt $winname}";
- topic = " $topic";
- topic_empty = " Irssi v$J - http://irssi.org/help/";
- # all of these treated specially, they're only displayed when needed
- lag = "{sb Lag: $0-}";
- act = "{sb Act: $0-}";
- more = "-- more --";
- };
- # there's two type of statusbars. root statusbars are either at the top
- # of the screen or at the bottom of the screen. window statusbars are at
- # the top/bottom of each split window in screen.
- default = {
- # the "default statusbar" to be displayed at the bottom of the window.
- # contains all the normal items.
- window = {
- disabled = "no";
- # window, root
- type = "window";
- # top, bottom
- placement = "bottom";
- # number
- position = "1";
- # active, inactive, always
- visible = "active";
- # list of items in statusbar in the display order
- items = {
- barstart = { priority = "100"; };
- time = { };
- user = { };
- window = { };
- window_empty = { };
- lag = { priority = "-1"; };
- act = { priority = "10"; };
- more = { priority = "-1"; alignment = "right"; };
- barend = { priority = "100"; alignment = "right"; };
- usercount = { };
- };
- };
- # statusbar to use in inactive split windows
- window_inact = {
- type = "window";
- placement = "bottom";
- position = "1";
- visible = "inactive";
- items = {
- barstart = { priority = "100"; };
- window = { };
- window_empty = { };
- more = { priority = "-1"; alignment = "right"; };
- barend = { priority = "100"; alignment = "right"; };
- };
- };
- # we treat input line as yet another statusbar :) It's possible to
- # add other items before or after the input line item.
- prompt = {
- type = "root";
- placement = "bottom";
- # we want to be at the bottom always
- position = "100";
- visible = "always";
- items = {
- prompt = { priority = "-1"; };
- prompt_empty = { priority = "-1"; };
- # treated specially, this is the real input line.
- input = { priority = "10"; };
- };
- };
- # topicbar
- topic = {
- type = "root";
- placement = "top";
- position = "1";
- visible = "always";
- items = {
- topicbarstart = { priority = "100"; };
- topic = { };
- topic_empty = { };
- topicbarend = { priority = "100"; alignment = "right"; };
- };
- };
- awl_0 = {
- items = {
- barstart = { priority = "100"; };
- awl_0 = { };
- barend = { priority = "100"; alignment = "right"; };
- };
- };
- };
- };
- settings = {
- "irc/core" = {
- join_auto_chans_on_invite = "yes";
- ctcp_version_reply = "TC-14 protocol bot 1.3.1";
- };
- core = {
- real_name = "Protocol Droid TC-14, at your service.";
- user_name = "TC-14";
- nick = "TC-14";
- recode_out_default_charset = "= utf8";
- recode_autodetect_utf8 = "yes";
- quit_message = "Sir, the possibility of successfully navigating an asteroid field is approximately 3,720 to 1. We should turn ar...";
- };
- "perl/core/scripts" = {
- charsetwars_convert_in = "yes";
- charsetwars_convert_out = "yes";
- charsetwars_own = "utf";
- ###################################
- autorejoin_channels = "#main_channel";
- nagios_ack_channel = "#main_channel"
- nagios_ack_nick = ""
- nagios_command = "/var/lib/nagios3/rw/live"
- fifo_remote_file = "/home/tc-14/var/nagios-fifo"
- }
- };
- "fe-common/core" = {
- term_charset = "utf8";
- autolog = "yes";
- autolog_colors = "no";
- autocreate_query_level = "NONE";
- };
- "fe-text" = { actlist_sort = "refnum"; };
- };
- conversions = {
- "#clx" = "iso8859-1";
- "#lautre.net" = "iso-8859-1";
- "#gitoyen" = "iso-8859-1";
- "#bepo" = "utf8";
- "#spip" = "utf8";
- };
- hilights = ( { text = "asr"; nick = "yes"; word = "yes"; } );
- windows = {
- 1 = {
- immortal = "yes";
- name = "(status)";
- level = "ALL";
- sticky = "yes";
- };
- 2 = { immortal = "yes"; name = "hilight"; sticky = "yes"; };
- 3 = {
- ###################################
- items = (
- {
- type = "CHANNEL";
- chat_type = "IRC";
- name = "#main_channel";
- tag = "GeekNode";
- }
- );
- sticky = "yes";
- ###################################
- };
- };
- mainwindows = {
- 2 = { first_line = "1"; lines = "5"; };
- 3 = { first_line = "19"; lines = "53"; };
- 1 = { first_line = "6"; lines = "13"; };
- };
- logs = { };
- ignores = ( { level = "CTCPS"; } );
|