Added tag 1.0.3 for changeset 3d6986784dae
[mcabber.git] / mcabber / mcabberrc.example
blobeff933459cf55b006ecae48ac56a18df2eab3b73
1 # Sample ~/.mcabber/mcabberrc file
3 # Note about this file syntax:
4 # - Leading and trailing spaces are ignored.
5 # - Empty lines and lines beginning with a '#' are ignored.
7 # Please provide your Jabber (XMPP) identifier:
8 set jid = yourusername@domain
10 # If password is not given, it will be interactively asked for.
11 # Note: if the password contains leading or trailing spaces, you must
12 # enclose it with quotes: set password = " example password "
13 #set password = yourpassword
15 # Read password from output of the given command.
16 # This is a way to use password managers like 'pass' in order
17 # to avoid writing plain passwords into config files.
18 #set password_eval = "your command"
20 # You can provide a server name if you want mcabber to connect
21 # to a specific server.
22 #set server = your.jabber.server
24 # To automatically append the server to the JID in say_to, use this option:
25 #set default_server = jabber.org
27 # If port is not given, mcabber will try to find it out.
28 #set port = 5222
30 # If you don't know what a resource is, do not set it.
31 # Set disable_random_resource to 1 if you don't want mcabber to add a random
32 # suffix to the resource name.
33 #set resource = mcabber
34 #set disable_random_resource = 0
36 #set priority = 3
37 #set priority_away = 0
39 # Set 'ignore_self_presence' to 1 if you do not want to see your own
40 # presence in your roster (default: 0).  Other resources will still be
41 # displayed.
42 set ignore_self_presence = 1
44 # SSL/TLS options:
45 # TLS is now regarded as the default encryption for connecting to jabber.
46 # You can require TLS by setting tls to 1.  If your jabber server
47 # still doesn't support TLS, you can use the old-style SSL by setting
48 # ssl to 1.  It's not possible to use old-style SSL and TLS together.
49 #set ssl = 0
50 set tls = 1
51 # It is possible to set the allowed ciphers which openssl/gnutls can use for
52 # the encrypted connection.
53 # openssl (get the name of the available ciphers via 'openssl ciphers'):
54 #set ssl_ciphers = ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384
55 # gnutls (check the priorities option of 'man gnutls_priority_init'):
56 #set ssl_ciphers = PFS
57 # If you'd like to explicitly specify trusted certificates, set the ssl_ca
58 # option to a certificate file or path.
59 #set ssl_ca = ~/.mcabber/trusted_cert.pem
60 # Moreover, it's possible to check whether the fingerprint of the
61 # ssl certificate matches ssl_fingerprint.
62 # You can get the fingerprint of your server either with gnutls or openssl:
63 # 1. gnutls-cli -p 5223 $your_server
64 # 2. openssl s_client -starttls xmpp -connect $yourserver:5222 | \
65 #    openssl x509 -fingerprint -sha256 -noout
66 #set ssl_fingerprint = SHA256:647d2eef7f972001d4fe8b6bedb3007d095dcd982ebb6773c6fb74adb8cc27c0
67 # Set ssl_ignore_checks to 1 to disable all certificate checks except the
68 # fingerprint check.
69 #set ssl_ignore_checks = 0
71 # PGP support
72 # Set pgp to 1 to enable OpenPGP.
73 # To sign outgoing messages, select your private key id with
74 # the pgp_private_key option.  You cannot change these options once
75 # mcabber is running.
76 # Note: you can get the Key Id with gpg: "gpg --list-keys --keyid-format long"
77 #set pgp = 0
78 #set pgp_private_key = "C9940A9BB0B92210"
80 # You can set your PGP passhrase here, although it's NOT advised.
81 #set pgp_passphrase = "PGPpassword"
83 # If you don't like the default number of passphrase retries (2), you
84 # can change it here.  If this number is < 0, mcabber will keep asking
85 # until the passphrase is good.
86 #set pgp_passphrase_retries = 2
88 # You can specify the path to the gpg binary, e.g. to force the use of
89 # GnuPG version 1 on systems which have both versions installed.
90 #set gpg_path = /usr/bin/gpg
92 # If GnuPG should use a custom configuration directory, you can set
93 # 'gpg_home' to the desired path.
94 #set gpg_home = ~/.mcabber/gpg
96 # Conference nickname
97 # This nickname is used when joining a room, when no nick is explicitly
98 # specified by the user.  Note that when the nickname option is not set,
99 # the jid variable can be used.
100 #set nickname = Abitbol
102 # Proxy
103 # mcabber can use a proxy if it supports the CONNECT method
104 # The proxy_user/proxy_pass variables are optional.
105 #set proxy_host = "proxy-hostname"
106 #set proxy_port = 3128
107 #set proxy_user = "username"
108 #set proxy_pass = "password"
110 # Keepalive
111 # If you need a ping/keepalive to leave your connection open, you
112 # can use the pinginterval.  Setting this option to 0 disables the ping.
113 # Default value is 40 seconds.
114 #set pinginterval = 40
116 # Language
117 # Help files have been translated into a few languages.
118 # You can set lang to a semicolon separated list of the following
119 # values: en, cs, de, fr, it, nl, pl, ru, uk. If you omit this,
120 # mcabber will try to autodetect it from your locale, with fallback
121 # to en.
122 # You also can specify a list of directories, where help is located,
123 # for example, if your mcabber is installed with another prefix than
124 # your modules.
125 # This may be convenient to print help not into the status buffer, but into
126 # currently opened buffer. For that set help_to_current option.
127 #set lang = en
128 #set help_dirs = "/usr/share/mcabber/help;~/share/mcabber/help"
129 #set help_to_current = 0
131 # Aspell
132 # If your mcabber has been built with Aspell support, you can enable spell
133 # checking with the following options (you can't change them once mcabber is
134 # running).
135 #set spell_enable = 1
136 #set spell_lang = en_US ru_RU
137 #set spell_encoding = iso8859-1
138 #set spell_encoding = UTF-8
140 # History
141 # Number of lines to remember for the command line history
142 # (default: 0, unlimited).
143 set cmdhistory_lines = 250
145 # You can set up a mask to filter buddies and display them according to
146 # their status.  The mask should contain the shortcut letters of the
147 # status you want to see ([o]nline, [f]ree_for_chat, [d]o_not_disturb,
148 # [n]ot_available, [a]way, [_]offline).
149 # For example, to display everybody the filter should be "ofdna_" (default).
150 # To display only the connected buddies, use "ofdna".
151 # Please note that this option is only used at startup (once mcabber is
152 # running you can use "/roster display").
153 #set roster_display_filter = ofdna_
155 # By default, mcabber adds a leading space before each buddy in the roster. You
156 # can remove it to gain a little space.
157 #set roster_no_leading_space = 0
159 # By default command line completion is case-sensitive; this can be changed
160 # by setting the option 'completion_ignore_case' to 1.
161 #set completion_ignore_case = 0
163 # Message Carbons (XEP-0280)
164 # If you want to enable Message Carbons at startup (and if your server
165 # supports them), set the 'carbons' option to 1.  Default is 0.
166 #set carbons = 1
168 # Set the 'clear_unread_on_carbon' option to 1 if the unread messages flag
169 # should be cleared when an outgoing copy of a message sent to that contact
170 # is received from another client. Default is 0.
171 #set clear_unread_on_carbon = 1
173 # Typing notifications, Chat States, Events (XEP-22/85)
174 # Set disable_chatstates to 1 if you don't want to use typing notifications.
175 # Note: changing this option once mcabber is running has no effect.
176 #set disable_chatstates = 0
178 # History logging
179 # You can save the messages history: set logging = 1
180 # Set 'logging_ignore_status' to 1 if you do not want to save status changes
181 # (and status messages) to the log files (default: 0).
182 # You can load (read) the messages history: set load_logs = 1
183 # If you enable load_logs, you can use the 'max_history_age' setting below.
184 # The default logging directory (logging_dir) is $HOME/.mcabber/histo/
185 # (or $XDG_CONFIG_HOME/mcabber/histo/).
186 # Defaults for logging, load_logs are 0 (disabled)
187 # Note: the logging directory path is created if absent.
188 # Note: these options, except 'max_history_age' and 'max_history_blocks',
189 # are used at startup time.
190 #set logging = 1
191 #set load_logs = 1
192 #set logging_dir = ~/.mcabber/histo/
193 #set logging_ignore_status = 1
195 # Set log_muc_conf to 1 to enable MUC chatrooms logging (default = 0)
196 #set log_muc_conf = 1
197 # Set load_muc_logs to 1 to read MUC chatrooms logs (default = 0).  These
198 # logs will be displayed in the buffer window _before_ any history received
199 # from the server.
200 #set load_muc_logs = 0
202 # When load_logs (or load_muc_logs) is enabled, you can specify a maximum
203 # number of history days to load into memory with max_history_age.
204 # Default = 0 (disabled -- everything is loaded)
205 # Note: this option is only used when reading history files, not later.
206 #set max_history_age = 0
208 # mcabber can store the list of unread messages in a state file,
209 # so that the message flags are set back at next startup.
210 # Note that 'logging' must be enabled for this feature to work.
211 #set statefile = ~/.mcabber/mcabber.state
213 # You can specify a maximum number of data blocks per buffer (1 block contains
214 # about 8kB).  The default is 0 (unlimited).  If set, this value must be > 2.
215 set max_history_blocks = 8
217 # IQ settings
218 # Set iq_version_hide_os to 1 if you do not want to allow people to retrieve
219 # your OS version.
220 #set iq_version_hide_os = 0
222 # Set iq_version_hide_version to 1 if you do not want to allow people to
223 # retrieve your mcabber version.
224 #set iq_version_hide_version = 0
226 # Set iq_time_hide to 1 if you do not want to allow people to retrieve
227 # your OS time.
228 #set iq_time_hide = 0
230 # Set iq_last_disable to 1 if you want to disable response to jabber:iq:last
231 # queries (XEP-0012).  Set iq_last_disable_when_notavail to 1 if you want
232 # to disable Last Activity reports only when the not-available status is set.
233 # (Default is 0 for both options)
234 #set iq_last_disable = 0
235 #set iq_last_disable_when_notavail = 1
237 # Set iq_hide_requests to 1 if you don't want received IQ requests to be
238 # displayed in the status window (default: 0).
239 #set iq_hide_requests = 1
241 # Modules
242 # If mcabber is built with modules support, you can specify the path
243 # to the directory where your modules reside. Though, default compiled-in
244 # value should be appropriate.
245 #set modules_dir = /usr/lib/mcabber/
247 # Beep
248 # Set beep_on_message to 1 if you want mcabber to beep when receiving
249 # a new message (except in chatrooms).  If you want a more sophisticated
250 # system (e.g. play a sound), have a look at 'events_command' below.
251 #set beep_on_message = 0
253 # External command for events
254 # You can specify a script or process to be launched when an event occurs.
255 # Set 'events_ignore_active_window' to 1 if you don't want the script to
256 # be run for a message to the current active window (default: 0).
258 # If 'event_log_files' is set, a file is created and contains the body of
259 # the message (incoming messages only); the file name is the last parameter.
260 # If you enable this, you can specify the directory mcabber will use to
261 # create these messages with the 'event_log_dir' variable (default is the
262 # system temp dir, or MCABBERTMPDIR environment variable).  Please note
263 # that mcabber won't delete these files, it's your script's job.
265 # The command is called the following way:
266 #   $events_command MSG IN jabber@id [file] (when receiving a message)
267 #   $events_command MSG OUT jabber@id       (when sending a message)
268 #   $events_command MSG MUC room_id [file]  (when receiving a MUC message)
269 #   $events_command STATUS X jabber@id      (new buddy status is X)
270 #   $events_command UNREAD "N x y z"        (number of unread buddy buffers)
271 #   (x=attention y=muc unread buffers z=muc unread buffers with attention sign)
272 # See sample script in contrib/ directory.
273 #set events_command = ~/.mcabber/eventcmd
275 #set events_ignore_active_window = 0
277 #set event_log_files = 0
278 #set event_log_dir = ~/.mcabber/event_files
280 # If you set 'eventcmd_use_nickname' to 1, mcabber will pass the nickname
281 # (if it is defined) to the event script instead of the JID (default: 0).
282 #set eventcmd_use_nickname = 0
284 # External command status check
285 # You can request mcabber to inspect exit status value after each
286 # events_command.  If this option is set, mcabber will beep if the
287 # exit value is 2.
288 #set eventcmd_checkstatus = 0
290 # Internal hooks
291 # You can ask mcabber to execute an internal command when a special event
292 # occurs (for example when it connects to the server).
294 # 'hook-post-connect' is executed when mcabber has connected to the server
295 # and the roster has been received.
296 #set hook-post-connect = status dnd
298 # 'hook-pre-disconnect' is executed just before mcabber disconnects from
299 # the server.
300 #set hook-pre-disconnect = say_to foo@bar Goodbye!
302 # FIFO
303 # mcabber can create a FIFO named pipe and listen to this pipe for commands.
304 # Don't forget to load the FIFO module if you plan to use this feature!
305 # Default: disabled.
306 # Set 'fifo_hide_commands' to 1 if you don't want to see the FIFO commands
307 # in the log window (they will still be written to the tracelog file).
308 # When FIFO  is configured, you can turn it off and on in real time with
309 # the 'fifo_ignore' option (default: 0).  When set to 1, the FIFO input is
310 # still read but it is discarded.
311 #set fifo_name = ~/.mcabber/mcabber.fifo
312 #set fifo_hide_commands = 0
313 #set fifo_ignore = 0
315 #module load fifo
317 # URL extractor
318 # Set 'url_regex' to a regular expression matching urls.  If it matches an
319 # url in an incoming messages, it'll print it to the log window.
320 # Don't forget to load the urlregex module if you plan to use this feature!
321 #set url_regex = "(((https?|ftps?|nntp)://)|www[.][-a-z0-9.]+|(mailto:|news:))(%[0-9A-F]{2}|[-_.!~*';/?:@&=+$,#[:alnum:]])+"
323 #module load urlregex
326 # Traces logging
327 # If you want advanced traces, please specify a file and a level here.
328 # There are currently 4 tracelog levels:
329 #  lvl 1: most events of the log window are written to the file
330 #  lvl 2: Loudmouth verbose logging
331 #  lvl 3: debug logging (XML, etc.)
332 #  lvl 4: noisy debug logging (Loudmouth parser...)
333 # Default is level 0, no trace logging
334 #set tracelog_level = 1
335 #set tracelog_file = ~/.mcabber/mcabber.log
337 # Set the auto-away timeout, in seconds.  If set to a value >0,
338 # mcabber will change your status to away if no real activity is detected
339 # (command, message, move in the buddylist...).  Note: auto-away only changes
340 # the status when it is "available" (online) or "free_for_chat".
341 # See 'message_autoaway' below.
342 #set autoaway = 0
344 # Message blocking
345 # Set 'block_unsubscribed' to 1 if you want to block (drop) incoming
346 # messages from people you haven't authorized. (default: 0)
347 #set block_unsubscribed = 0
349 # Set 'delete_on_reject' to 1 if you want to delete buddies from your
350 # roster when you reject their subscription request. (default: 0)
351 # (See documentation for /event)
352 # The buddy is actually deleted only if there is no other subscription,
353 # so for example if you are subscribed to this buddy's presence updates it
354 # won't be deleted.
355 #set delete_on_reject = 0
357 # MUC
358 # Set 'muc_flag_joins' to 1 if you want the MUC rooms to be flagged in
359 # the roster when somebody joins a room.  Set it to 2 if you want a flag
360 # for leaves too.
361 #set muc_flag_joins = 0
362 # Set 'muc_print_status' to see status changes in MUC rooms:
363 # 1: (none)       do not display joining/leaving members
364 # 2: (in_and_out) display joining/leaving members
365 # 3: (all)        display joining/leaving members and member status changes
366 # (default: in_and_out)
367 #set muc_print_status = 2
368 # Set 'muc_auto_whois' to 1 if you want to call /room whois each time
369 # somebody joins a room. (default: 0)
370 #set muc_auto_whois = 0
371 # Set 'muc_print_jid' to see real jid in non-anonynmous room when somebody
372 # joins. This setting will be ignored when auto_whois is enabled.
373 # 0: only nick (don't print jid even if available)
374 # 1: nick and bare jid
375 # 2: nick and full jid with resource
376 #set muc_print_jid = 1
378 # Set 'muc_disable_nick_hl' to 1 if you don't want mcabber to color lines
379 # containing your nickname in a MUC room.
380 #set muc_disable_nick_hl = 0
382 # Set 'muc_completion_suffix' if you want mcabber to append a string to
383 # suggested nicknames (only at the beginning of a line), like ":" or ",".
384 # (Default: none)
385 #set muc_completion_suffix = ": "
387 # Set 'muc_bookmark_autoupdate' to 1 if you want changes made to room options
388 # be stored automatically on server.  Otherwise you'll have to manually use
389 # command /room bookmark, or changes will not be permanent (for session only).
390 # This setting will not add any bookmark, only update already existing ones.
391 #set muc_bookmark_autoupdate = 0
393 # Status messages
394 # The 'message' value will override all others, take care!
395 #set message = Unique message status
396 #set message_avail     = I'm available
397 #set message_free      = I'm free for chat
398 #set message_dnd       = Please do not disturb
399 #set message_notavail  = I'm not available
400 #set message_away      = I'm away
402 # The auto-away message is only used when 'autoaway' is set.  The previous
403 # message will be restored when leaving auto-away status.  If this message
404 # isn't defined, the status message will stay unchanged.
405 set message_autoaway = Auto-away (idle)
407 # Escape timeout delay (ESCDELAY)
408 # The ESCDELAY variable specifies the time, in milliseconds, for which
409 # the ncurses interface will await a character sequence.
410 # The default is 1000 (1 second).
411 # If you want mcabber to react faster after hitting Escape, you can lower
412 # this value by setting the ESCDELAY environment variable or setting the
413 # 'escdelay' option.
414 set escdelay = 50
416 # Colors
417 # Colors are: black, red, green, yellow, blue, magenta, cyan, white
418 # For text colors (i.e. not background and bg* colors) you can also use
419 # the "bright" prefix to get a bright/bold color.  Example: brightblue
420 # You can use the "default" color, too (i.e. for transparent background).
421 # If your terminal supports 256 colors, you can use the color number
422 # directly (16-255).
424 # Have a look at the contrib/themes/ directory to see some sample
425 # color settings.
427 # background: background color of the chat window and the log window
428 # general:    text color in the chat window and the log window
429 # info:       text color in the chat window for info messages
430 # msgin:      text color in the chat window for incoming messages
431 # msgout:     text color in the chat window for outgoing messages
432 # msghl:      text color in the chat window for highlighted messages (MUC)
433 # bgstatus:   background color of the status lines
434 # status:     text color of the status lines
435 # log:        text color in the log window
436 # roster:     text color of the roster (buddylist) normal items
437 # bgrostersel: background color of the selected roster item
438 # rostersel:   text color of the selected roster item
439 # rosterselmsg:text color of the selected roster item, if there is a new msg
440 # rosternewmsg: text color of items with unread messages
441 # readmark:   text color of the "read mark" line in buffers
442 # timestamp:  text color in the chat window for delayed timestamps
444 #set color_background   = black
445 #set color_general      = white
446 #set color_info         = white
447 #set color_msgin        = white
448 #set color_msgout       = cyan
449 #set color_msghl        = yellow
450 #set color_bgstatus     = blue
451 #set color_status       = white
452 #set color_log          = white
453 #set color_roster       = green
454 #set color_bgrostersel  = cyan
455 #set color_rostersel    = blue
456 #set color_rosterselmsg = red
457 #set color_rosternewmsg = red
458 #set color_readmark     = red
459 #set color_timestamp    = brightblue
461 # You can color roster items by their status and JID.  For example, to have
462 # all roster items white, just all contacts from jabber.org that are away,
463 # not available or do not disturb yellow, you do this:
465 #color roster * * white
466 #color roster adn *@jabber.org yellow
468 # You can let mcabber color nicks in MUC.
469 # These colors will by used automatically:
470 #set nick_colors = red green blue
471 # This turns coloring of all mucs on:
472 #color muc * on
474 # If you want someone's nick to be the same all the time:
475 #color mucnick my_friend yellow
477 # Style
478 # Note: the 'log_win_height' and 'roster_width' values below can be set
479 # in real time when mcabber is running.  Refresh the screen (Ctrl-l) to
480 # use the new values.
482 # Log window height (minimum 1, default 5)
483 #set log_win_height = 5
484 # Buddylist window width (minimum 2, default 24)
485 #set roster_width=24
487 # The options 'log_win_on_top' and 'roster_win_on_right' can change the
488 # position of the log window (top/bottom) and the position of the roster
489 # (left/right).
490 #set log_win_on_top = 0
491 #set roster_win_on_right = 0
493 # The attention sign (default: '!') used when a private message is received
494 # can be changed with the 'attention_char' option.
495 #set attention_char = !
497 # By default, the displayed name of a contact in the roster window will
498 # be the JID if no name has been specified.  You can use the following
499 # option if you only want to see the username part.
500 #set roster_hide_domain = 0
502 # Buddy name format (in status window):
503 # - 0: (default) "<jid/resource>"
504 # - 1: "name <jid/resource>" (name is omitted if same as the JID)
505 # - 2: "name/resource" (if the name is the same as the JID, use <jid/res>)
506 # - 3: "name" (if the name is the same as the JID, use <jid/res>)
507 #set buddy_format = 2
509 # Time format:
510 # - 0: (default) Date and time
511 # - 1: Time only
512 # - 2: None
513 #set time_prefix = 0
515 # When a contact sends "/me ", mcabber displays "*user ", where user
516 # is the local part of the contact's JID.
517 # If you want mcabber to display the complete bare JID (user@server.com),
518 # set 'buddy_me_fulljid' to 1 (default: 0)
519 #set buddy_me_fulljid = 1
521 # Display the status changes in the log window (default: 0, never)
522 # Set 'log_display_presence' to 1 to enable.
523 #set log_display_presence = 0
525 # Display the status changes in the chat buffers (default: 0, never)
526 # Values:  0: never  1: only connect/disconnect  2: all
527 #set show_status_in_buffer = 1
529 # Set 'log_display_sender' to 1 to display the message sender's JID in the
530 # log window (default: 0, no)
531 #set log_display_sender = 0
533 # Set 'info' to anything you'd like to see in your lower status line.
534 #set info = woot
536 # Automatic locking on buddy resource that messages are coming from.
537 # Useful when your buddies are chatting from their non-highest priority
538 # resources, forcing you to use /say_to command.
539 #set roster_autolock_resource = 1
541 # Automatic locking of buffer when scrolled up, and unlocking when scrolled
542 # to bottom.
543 # Set 'buffer_smart_scrolling' to 1 to enable.
544 # Note: manual command "/buffer scroll_lock" will not work when smart scrolling
545 # is enabled. Command "/buffer scroll_unlock" will only work if there is a new
546 # message received.
547 #set buffer_smart_scrolling = 0
549 # Contacts PGP information
550 # You can provide a PGP key to be used for a given Jabber user, or
551 # disable PGP on a per-account basis.
552 # If you provide a KeyId for a contact, it will be compared to the key the
553 # contact uses to sign their presence/messages and it will be used for
554 # all outgoing encrypted messages (that is, the contact signature key will
555 # be ignored).
556 # Please note that the key must match exactly the id seen with /info.
557 #pgp disable foo@bar.org
558 #pgp setkey bar@foo.net C9940A9BB0B92210
560 # OTR (Off-The-Record messaging) support
561 # (Only available if mcabber is built with OTR support)
562 # Set otr to 1 to enable OTR support.
563 # You cannot change this option once mcabber is running.
564 #set otr = 0
566 # OTR directory
567 # You can specify the OTR directory with the otr_dir option
568 # (default = ~/.mcabber/otr/).
569 #set otr_dir = "~/.mcabber/otr/"
571 # You can set OTR policies from the configuration file (use /help otrpolicy
572 # for the details).
573 #otrpolicy default manual
575 # Entity Caps cache
576 # You can provide a directory where mcabber will store an offline cache
577 # of other clients' capabilities. This will likely reduce network overhead
578 # on start of new session.
579 #set caps_directory = "~/.mcabber/caps"
581 # Aliases
582 alias me = say /me
583 alias online   = status online
584 alias away     = status away
585 alias dnd      = status dnd
586 alias notavail = status notavail
587 #alias names = room names
588 #alias topic = room topic
590 # Set use_mouse to 1 to map mouse buttons like keycodes.
591 #set use_mouse = 1
593 # Key bindings
594 # Ctrl-q (17) bound to /roster unread_next
595 bind 17 = roster unread_next
596 # Ctrl-x (24) bound to /roster alternate
597 bind 24 = roster alternate
598 # F5 (269) bound to /roster toggle_offline  (centericq-like, IIRC)
599 bind 269 = roster toggle_offline
600 # F12 (276) bound to /roster toggle
601 bind 276 = roster toggle
602 # Ctrl-Up/Ctrl-Down bound to /buffer up/down  (like Ctrl-p/Ctrl-n)
603 bind 521 = buffer up
604 bind 514 = buffer down
606 # Sample alias to join mcabber channel with "/jmc"
607 #alias jmc = room join mcabber@conf.lilotux.net