diff options
Diffstat (limited to 'vchat-howto')
-rwxr-xr-x | vchat-howto | 23 |
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 | ||
73 | If you want to ignore SSL-warnings due to missing CA-files, type: | ||
74 | |||
75 | $ echo ignssl=1 >> ~/.vchat/config | ||
76 | |||
77 | If 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 | |||
83 | and 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 | |||
91 | Now you can type: | ||
92 | |||
93 | $ echo ignssl=0 >> ~/.vchat/config | ||
94 | |||
95 | |||
73 | If you want a seperate private message window, type: | 96 | If you want a seperate private message window, type: |
74 | 97 | ||
75 | $ echo messages=10 >> ~/.vchat/config | 98 | $ echo messages=10 >> ~/.vchat/config |