comparison mcabber/mcabberrc.example @ 938:40175f3dcef7

SSL server certificate verification This patch enables SSL server certificate verification.
author Jefferson Ogata <ogata@antibozo.net>
date Sat, 08 Jul 2006 23:32:49 +0200
parents 653c1cdfb589
children e693cbe33802
comparison
equal deleted inserted replaced
937:548def60b810 938:40175f3dcef7
8 # If your jid's domain name is different from the server name, 8 # If your jid's domain name is different from the server name,
9 # you can specify your complete jid as username. 9 # you can specify your complete jid as username.
10 # 10 #
11 # If password is not given, it will be interactively asked for. 11 # If password is not given, it will be interactively asked for.
12 # If port is not given, default Jabber port will be used. 12 # If port is not given, default Jabber port will be used.
13 # Use ssl = 1 to enable SSL
14 13
15 set username = yourusername 14 set username = yourusername
16 # Note: if the password contains leading or trailing spaces, you must 15 # Note: if the password contains leading or trailing spaces, you must
17 # enclose it with quotes: set password = " example password " 16 # enclose it with quotes: set password = " example password "
18 #set password = yourpassword 17 #set password = yourpassword
19 set server = your.jabber.server 18 set server = your.jabber.server
20 #set port = 5222 19 #set port = 5222
21 set ssl = 0
22 # If you don't know what a resource is, you can leave "mcabber" here. 20 # If you don't know what a resource is, you can leave "mcabber" here.
23 set resource = mcabber 21 set resource = mcabber
24 #set priority = 3 22 #set priority = 3
23
24 # SSL options:
25 # Set ssl non-zero to use SSL (this also sets the default port to 5223).
26 # Set ssl_verify to 0 to disable certificate verification, or non-zero
27 # to set desired maximum CA verification depth. Use -1 to specify an
28 # unlimited depth.
29 # Set ssl_cafile to a path to a CA certificate file (may contain multiple
30 # CA certificates).
31 # Set ssl_capath to a directory containing CA certificates (use c_rehash
32 # to generate hash links).
33 # Set ssl_ciphers to a list of desired SSL ciphers (run "openssl ciphers"
34 # for candidate values).
35 set ssl = 0
36 #set ssl_verify = -1
37 #set ssl_cafile = /usr/share/ssl/certs/ca-bundle.crt
38 #set ssl_capath =
39 #set ssl_ciphers =
25 40
26 # Conference nickname 41 # Conference nickname
27 # This nickname is used when joining a room, when no nick is explicitly 42 # This nickname is used when joining a room, when no nick is explicitly
28 # specified by the user. Note that when the nickname option is not set, 43 # specified by the user. Note that when the nickname option is not set,
29 # the username variable can be used. 44 # the username variable can be used.