summaryrefslogtreecommitdiff
path: root/vchat-howto
diff options
context:
space:
mode:
authorerdgeist <>2007-06-27 21:59:32 +0000
committererdgeist <>2007-06-27 21:59:32 +0000
commit3c11bea99886b006ca499e1be6a3a17d225cedc7 (patch)
tree687a3e0e762669af85c5858420856b49686795cd /vchat-howto
parentd4861ca31f0406f5c49023bc2c3bc4cfa54e3693 (diff)
Introducing new ssl code
Diffstat (limited to 'vchat-howto')
-rwxr-xr-xvchat-howto23
1 files changed, 23 insertions, 0 deletions
diff --git a/vchat-howto b/vchat-howto
index da9ac6f..22c34b7 100755
--- a/vchat-howto
+++ b/vchat-howto
@@ -70,6 +70,29 @@ type:
70 70
71$ echo host=vchat.berlin.ccc.de >> ~/.vchat/config 71$ echo host=vchat.berlin.ccc.de >> ~/.vchat/config
72 72
73If you want to ignore SSL-warnings due to missing CA-files, type:
74
75$ echo ignssl=1 >> ~/.vchat/config
76
77If you don't want to ignore SSL-warnings, get the root-certificates from:
78
79 http://www.cacert.org/certs/class3.txt
80 and
81 http://www.cacert.org/certs/root.txt
82
83and copy them into your openssl-certs directory. For example:
84
85 # cp root.txt /etc/ssl/certs/
86 # cp class3.txt /etc/ssl/certs/
87 # cd /etc/ssl/certs
88 # ln -s root.txt `openssl x509 -in root.txt -hash | head -n 1`.0
89 # ln -s class3.txt `openssl x509 -in class3.txt -hash | head -n 1`.0
90
91Now you can type:
92
93 $ echo ignssl=0 >> ~/.vchat/config
94
95
73If you want a seperate private message window, type: 96If you want a seperate private message window, type:
74 97
75$ echo messages=10 >> ~/.vchat/config 98$ echo messages=10 >> ~/.vchat/config