diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-03-06 23:05:56 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-03-06 23:05:56 +0100 |
commit | f7fd0ae8fccaff2b6e3ea028fba6edfedc9e3360 (patch) | |
tree | 79553ed64dc9339a3993fd64c92382e710726cca /doc/en | |
parent | b0a549210215cf7941b4ad739489ede6e0f9bd2c (diff) | |
download | weechat-f7fd0ae8fccaff2b6e3ea028fba6edfedc9e3360.zip |
Add question in FAQ about freenode and SSL
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_faq.en.txt | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/doc/en/weechat_faq.en.txt b/doc/en/weechat_faq.en.txt index 9d31a54ef..a327769a0 100644 --- a/doc/en/weechat_faq.en.txt +++ b/doc/en/weechat_faq.en.txt @@ -488,6 +488,30 @@ connection will be less secure by doing that): ---------------------------------------- +[[irc_ssl_freenode]] +How can I connect to freenode server using SSL? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +You must download certificate, convert it, then add it in WeeChat: + +---------------------------------------- +$ cd /tmp +$ wget http://crt.gandi.net/GandiStandardSSLCA.crt +$ openssl x509 -inform der -outform pem < GandiStandardSSLCA.crt > GandiStandardSSLCA.pem +$ mkdir ~/.weechat/ssl +$ cat GandiStandardSSLCA.pem >>~/.weechat/ssl/CAs.pem +---------------------------------------- + +Under WeeChat, setup server port, SSL, dhkey_size, then connect: + +---------------------------------------- +/set irc.server.freenode.addresses "chat.freenode.net/7000" +/set irc.server.freenode.ssl on +/set irc.server.freenode.ssl_dhkey_size 1024 +/connect freenode +---------------------------------------- + + [[plugins_scripts]] Plugins / scripts ----------------- @@ -575,7 +599,7 @@ When I run WeeChat under gdb, there is error about threads, what can I do? When you run WeeChat under gdb, you may have this error: ---------------------------------------- -gdb /path/to/weechat-curses +$ gdb /path/to/weechat-curses (gdb) run [Thread debugging using libthread_db enabled] Cannot find new threads: generic error @@ -585,7 +609,7 @@ To fix that, you can run gdb with this command (replace path to libpthread and WeeChat with paths on your system): ---------------------------------------- -LD_PRELOAD=/lib/libpthread.so.0 gdb /path/to/weechat-curses +$ LD_PRELOAD=/lib/libpthread.so.0 gdb /path/to/weechat-curses (gdb) run ---------------------------------------- |