mcabberrc 24 KB

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