Sfoglia il codice sorgente

Separate irc documentation

Bob Mottram 8 anni fa
parent
commit
b4a5aed84d
6 ha cambiato i file con 720 aggiunte e 418 eliminazioni
  1. 100
    0
      doc/EN/app_irc.org
  2. 1
    0
      doc/EN/apps.org
  3. 1
    80
      doc/EN/usage.org
  4. 432
    0
      website/EN/app_irc.html
  5. 71
    68
      website/EN/apps.html
  6. 115
    270
      website/EN/usage.html

+ 100
- 0
doc/EN/app_irc.org Vedi File

1
+#+TITLE:
2
+#+AUTHOR: Bob Mottram
3
+#+EMAIL: bob@freedombone.net
4
+#+KEYWORDS: freedombome, irc
5
+#+DESCRIPTION: How to use IRC
6
+#+OPTIONS: ^:nil toc:nil
7
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="freedombone.css" />
8
+
9
+#+BEGIN_CENTER
10
+[[file:images/logo.png]]
11
+#+END_CENTER
12
+
13
+#+BEGIN_EXPORT html
14
+<center>
15
+<h1>IRC</h1>
16
+</center>
17
+#+END_EXPORT
18
+
19
+IRC is useful for multi-user chat. The classic use case is for software development where many engineers might need to coordinate their activities, but it's also useful for meetings, parties and general socialising.
20
+
21
+* Irssi
22
+The easiest way to use irssi is to connect to your system, like this:
23
+
24
+#+BEGIN_SRC bash
25
+ssh myusername@mydomain -p 2222
26
+#+END_SRC
27
+
28
+Then select *IRC* from the menu. However, other than via this method using ssh, irssi isn't a very good IRC client because it doesn't have the capability to onion route messages, and therefore leaks metadata. For the best security when using your IRC server, use HexChat, Emacs ERC or another client which supports socks5 proxying.
29
+
30
+* HexChat
31
+HexChat (formerly XChat) is compatible with proxying via Tor and so provides the best security when connecting to your IRC server. It will allow you to connect to your IRC server's onion address.
32
+
33
+First install HexChat and set up its configuration file. This can be done on your local machine with:
34
+
35
+#+BEGIN_SRC bash
36
+freedombone-client --setup hexchat
37
+#+END_SRC
38
+
39
+Now look up the onion address for your IRC server
40
+
41
+#+BEGIN_SRC bash
42
+ssh username@mydomainname -p 2222
43
+#+END_SRC
44
+
45
+Select Administrator options, then *About this system* and make a note of the onion address for IRC. Also select the *IRC Menu* and take a note of the login password.
46
+
47
+Run HexChat.
48
+
49
+Within the network list click, *Add* and enter your domain name then click *Edit*.
50
+
51
+Select the entry within the servers box, then enter *ircaddress.onion/6697* or *mydomainname/6697* and press *Enter*.
52
+
53
+Uncheck *use global user information*.
54
+
55
+Enter first and second nicknames and check *connect to this network on startup*.
56
+
57
+If you are using the ordinary domain name (clearnet/ICANN) then make sure that *Use SSL* is checked.
58
+
59
+[[file:images/hexchat_setup_clearnet.jpg]]
60
+
61
+If you are using the onion address then *use SSL* should be unchecked and the transport encryption will be handled via the onion address itself.
62
+
63
+[[file:images/hexchat_setup.jpg]]
64
+
65
+Within the *Password* field enter the password which can be found from the IRC menu of the *control panel*.
66
+
67
+Select the *Autojoin channels* tab, click *Add* and enter *#freedombone* as the channel name.
68
+
69
+Click *close* and then *connect*.
70
+
71
+* Emacs
72
+If you are an Emacs user then you can also connect to your IRC server via Emacs.
73
+
74
+Ensure that tor is installed onto your local system:
75
+
76
+#+BEGIN_SRC bash
77
+sudo apt-get install tor
78
+#+END_SRC
79
+
80
+Add the following to your Emacs configuration file:
81
+
82
+#+BEGIN_SRC elisp
83
+(setq socks-noproxy '("localhost"))
84
+(require 'socks)
85
+(require 'tls)
86
+(setq socks-server (list "Tor socks" "localhost" 9050 5))
87
+(setq erc-server-connect-function 'socks-open-network-stream)
88
+(setq erc-autojoin-channels-alist
89
+    '(("myircaddress.onion" "#freedombone")))
90
+(erc :server "myircaddress.onion" :port 6697 :nick "yourusername" :password "your IRC password")
91
+#+END_SRC
92
+
93
+* Changing or removing the IRC password
94
+By default the IRC server is set up to require a password for users to log in. The password is the same for all users. If you want to change or remove the password:
95
+
96
+#+BEGIN_SRC bash
97
+ssh myusername@mydomain -p 2222
98
+#+END_SRC
99
+
100
+Select /Administrator controls/ then *IRC Menu* and then change the password. An empty password will allow anyone to log in, so you can have a globally accessible IRC system if you wish, although you might want to carefully consider whether that's wise.

+ 1
- 0
doc/EN/apps.org Vedi File

53
 * IRC Server (ngirc)
53
 * IRC Server (ngirc)
54
 Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients.
54
 Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients.
55
 
55
 
56
+[[./app_irc.html][How to use it]]
56
 * Jitsi Meet
57
 * Jitsi Meet
57
 Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.
58
 Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.
58
 
59
 

+ 1
- 80
doc/EN/usage.org Vedi File

25
 | [[./app_dlna.html][Play Music]]                                           |
25
 | [[./app_dlna.html][Play Music]]                                           |
26
 | [[./app_gnusocial.html][Microblogging (GNU Social)]]                           |
26
 | [[./app_gnusocial.html][Microblogging (GNU Social)]]                           |
27
 | [[./app_hubzilla.html][Social Network]]                                       |
27
 | [[./app_hubzilla.html][Social Network]]                                       |
28
+| [[./app_irc.html][Multi-user chat with IRC]]                             |
28
 | [[Chat Services]]                                        |
29
 | [[Chat Services]]                                        |
29
 | [[RSS Reader]]                                           |
30
 | [[RSS Reader]]                                           |
30
 | [[Git Projects]]                                         |
31
 | [[Git Projects]]                                         |
98
 
99
 
99
 Subsequently even if dynamic DNS isn't working you may still be able to administer your system. Using the onion address also gives you some degree of protection against corporate or government metadata analysis, since it becomes more difficult to passively detect which systems are communicating.
100
 Subsequently even if dynamic DNS isn't working you may still be able to administer your system. Using the onion address also gives you some degree of protection against corporate or government metadata analysis, since it becomes more difficult to passively detect which systems are communicating.
100
 * Chat Services
101
 * Chat Services
101
-** IRC
102
-IRC is useful for multi-user chat. The classic use case is for software development where many engineers might need to coordinate their activities, but it's also useful for meetings, parties and general socialising.
103
-*** Irssi
104
-The easiest way to use irssi is to connect to your system, like this:
105
-
106
-#+BEGIN_SRC bash
107
-ssh myusername@mydomain -p 2222
108
-#+END_SRC
109
-
110
-Then select *IRC* from the menu. However, other than via this method using ssh, irssi isn't a very good IRC client because it doesn't have the capability to onion route messages, and therefore leaks metadata. For the best security when using your IRC server, use HexChat, Emacs ERC or another client which supports socks5 proxying.
111
-*** HexChat
112
-HexChat (formerly XChat) is compatible with proxying via Tor and so provides the best security when connecting to your IRC server. It will allow you to connect to your IRC server's onion address.
113
-
114
-First install HexChat and set up its configuration file. This can be done on your local machine with:
115
-
116
-#+BEGIN_SRC bash
117
-freedombone-client --setup hexchat
118
-#+END_SRC
119
-
120
-Now look up the onion address for your IRC server
121
-
122
-#+BEGIN_SRC bash
123
-ssh username@mydomainname -p 2222
124
-#+END_SRC
125
-
126
-Select Administrator options, then *About this system* and make a note of the onion address for IRC. Also select the *IRC Menu* and take a note of the login password.
127
-
128
-Run HexChat.
129
-
130
-Within the network list click, *Add* and enter your domain name then click *Edit*.
131
-
132
-Select the entry within the servers box, then enter *ircaddress.onion/6697* or *mydomainname/6697* and press *Enter*.
133
-
134
-Uncheck *use global user information*.
135
-
136
-Enter first and second nicknames and check *connect to this network on startup*.
137
-
138
-If you are using the ordinary domain name (clearnet/ICANN) then make sure that *Use SSL* is checked.
139
-
140
-[[file:images/hexchat_setup_clearnet.jpg]]
141
-
142
-If you are using the onion address then *use SSL* should be unchecked and the transport encryption will be handled via the onion address itself.
143
-
144
-[[file:images/hexchat_setup.jpg]]
145
-
146
-Within the *Password* field enter the password which can be found from the IRC menu of the *control panel*.
147
-
148
-Select the *Autojoin channels* tab, click *Add* and enter *#freedombone* as the channel name.
149
-
150
-Click *close* and then *connect*.
151
-
152
-*** Emacs
153
-If you are an Emacs user then you can also connect to your IRC server via Emacs.
154
-
155
-Ensure that tor is installed onto your local system:
156
-
157
-#+BEGIN_SRC bash
158
-sudo apt-get install tor
159
-#+END_SRC
160
-
161
-Add the following to your Emacs configuration file:
162
-
163
-#+BEGIN_SRC elisp
164
-(setq socks-noproxy '("localhost"))
165
-(require 'socks)
166
-(require 'tls)
167
-(setq socks-server (list "Tor socks" "localhost" 9050 5))
168
-(setq erc-server-connect-function 'socks-open-network-stream)
169
-(setq erc-autojoin-channels-alist
170
-    '(("myircaddress.onion" "#freedombone")))
171
-(erc :server "myircaddress.onion" :port 6697 :nick "yourusername" :password "your IRC password")
172
-#+END_SRC
173
-*** Changing or removing the IRC password
174
-By default the IRC server is set up to require a password for users to log in. The password is the same for all users. If you want to change or remove the password:
175
-
176
-#+BEGIN_SRC bash
177
-ssh myusername@mydomain -p 2222
178
-#+END_SRC
179
-
180
-Select /Administrator controls/ then *IRC Menu* and then change the password. An empty password will allow anyone to log in, so you can have a globally accessible IRC system if you wish, although you might want to carefully consider whether that's wise.
181
 
102
 
182
 ** XMPP/Jabber
103
 ** XMPP/Jabber
183
 *** About XMPP
104
 *** About XMPP

+ 432
- 0
website/EN/app_irc.html Vedi File

1
+<?xml version="1.0" encoding="utf-8"?>
2
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
+<head>
6
+<!-- 2016-11-12 Sat 20:26 -->
7
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
+<meta name="viewport" content="width=device-width, initial-scale=1" />
9
+<title></title>
10
+<meta name="generator" content="Org mode" />
11
+<meta name="author" content="Bob Mottram" />
12
+<meta name="description" content="How to use IRC"
13
+ />
14
+<meta name="keywords" content="freedombome, irc" />
15
+<style type="text/css">
16
+ <!--/*--><![CDATA[/*><!--*/
17
+  .title  { text-align: center;
18
+             margin-bottom: .2em; }
19
+  .subtitle { text-align: center;
20
+              font-size: medium;
21
+              font-weight: bold;
22
+              margin-top:0; }
23
+  .todo   { font-family: monospace; color: red; }
24
+  .done   { font-family: monospace; color: green; }
25
+  .priority { font-family: monospace; color: orange; }
26
+  .tag    { background-color: #eee; font-family: monospace;
27
+            padding: 2px; font-size: 80%; font-weight: normal; }
28
+  .timestamp { color: #bebebe; }
29
+  .timestamp-kwd { color: #5f9ea0; }
30
+  .org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
31
+  .org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
32
+  .org-center { margin-left: auto; margin-right: auto; text-align: center; }
33
+  .underline { text-decoration: underline; }
34
+  #postamble p, #preamble p { font-size: 90%; margin: .2em; }
35
+  p.verse { margin-left: 3%; }
36
+  pre {
37
+    border: 1px solid #ccc;
38
+    box-shadow: 3px 3px 3px #eee;
39
+    padding: 8pt;
40
+    font-family: monospace;
41
+    overflow: auto;
42
+    margin: 1.2em;
43
+  }
44
+  pre.src {
45
+    position: relative;
46
+    overflow: visible;
47
+    padding-top: 1.2em;
48
+  }
49
+  pre.src:before {
50
+    display: none;
51
+    position: absolute;
52
+    background-color: white;
53
+    top: -10px;
54
+    right: 10px;
55
+    padding: 3px;
56
+    border: 1px solid black;
57
+  }
58
+  pre.src:hover:before { display: inline;}
59
+  /* Languages per Org manual */
60
+  pre.src-asymptote:before { content: 'Asymptote'; }
61
+  pre.src-awk:before { content: 'Awk'; }
62
+  pre.src-C:before { content: 'C'; }
63
+  /* pre.src-C++ doesn't work in CSS */
64
+  pre.src-clojure:before { content: 'Clojure'; }
65
+  pre.src-css:before { content: 'CSS'; }
66
+  pre.src-D:before { content: 'D'; }
67
+  pre.src-ditaa:before { content: 'ditaa'; }
68
+  pre.src-dot:before { content: 'Graphviz'; }
69
+  pre.src-calc:before { content: 'Emacs Calc'; }
70
+  pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
71
+  pre.src-fortran:before { content: 'Fortran'; }
72
+  pre.src-gnuplot:before { content: 'gnuplot'; }
73
+  pre.src-haskell:before { content: 'Haskell'; }
74
+  pre.src-java:before { content: 'Java'; }
75
+  pre.src-js:before { content: 'Javascript'; }
76
+  pre.src-latex:before { content: 'LaTeX'; }
77
+  pre.src-ledger:before { content: 'Ledger'; }
78
+  pre.src-lisp:before { content: 'Lisp'; }
79
+  pre.src-lilypond:before { content: 'Lilypond'; }
80
+  pre.src-lua:before { content: 'Lua'; }
81
+  pre.src-matlab:before { content: 'MATLAB'; }
82
+  pre.src-mscgen:before { content: 'Mscgen'; }
83
+  pre.src-ocaml:before { content: 'Objective Caml'; }
84
+  pre.src-octave:before { content: 'Octave'; }
85
+  pre.src-org:before { content: 'Org mode'; }
86
+  pre.src-oz:before { content: 'OZ'; }
87
+  pre.src-plantuml:before { content: 'Plantuml'; }
88
+  pre.src-processing:before { content: 'Processing.js'; }
89
+  pre.src-python:before { content: 'Python'; }
90
+  pre.src-R:before { content: 'R'; }
91
+  pre.src-ruby:before { content: 'Ruby'; }
92
+  pre.src-sass:before { content: 'Sass'; }
93
+  pre.src-scheme:before { content: 'Scheme'; }
94
+  pre.src-screen:before { content: 'Gnu Screen'; }
95
+  pre.src-sed:before { content: 'Sed'; }
96
+  pre.src-sh:before { content: 'shell'; }
97
+  pre.src-sql:before { content: 'SQL'; }
98
+  pre.src-sqlite:before { content: 'SQLite'; }
99
+  /* additional languages in org.el's org-babel-load-languages alist */
100
+  pre.src-forth:before { content: 'Forth'; }
101
+  pre.src-io:before { content: 'IO'; }
102
+  pre.src-J:before { content: 'J'; }
103
+  pre.src-makefile:before { content: 'Makefile'; }
104
+  pre.src-maxima:before { content: 'Maxima'; }
105
+  pre.src-perl:before { content: 'Perl'; }
106
+  pre.src-picolisp:before { content: 'Pico Lisp'; }
107
+  pre.src-scala:before { content: 'Scala'; }
108
+  pre.src-shell:before { content: 'Shell Script'; }
109
+  pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
110
+  /* additional language identifiers per "defun org-babel-execute"
111
+       in ob-*.el */
112
+  pre.src-cpp:before  { content: 'C++'; }
113
+  pre.src-abc:before  { content: 'ABC'; }
114
+  pre.src-coq:before  { content: 'Coq'; }
115
+  pre.src-groovy:before  { content: 'Groovy'; }
116
+  /* additional language identifiers from org-babel-shell-names in
117
+     ob-shell.el: ob-shell is the only babel language using a lambda to put
118
+     the execution function name together. */
119
+  pre.src-bash:before  { content: 'bash'; }
120
+  pre.src-csh:before  { content: 'csh'; }
121
+  pre.src-ash:before  { content: 'ash'; }
122
+  pre.src-dash:before  { content: 'dash'; }
123
+  pre.src-ksh:before  { content: 'ksh'; }
124
+  pre.src-mksh:before  { content: 'mksh'; }
125
+  pre.src-posh:before  { content: 'posh'; }
126
+  /* Additional Emacs modes also supported by the LaTeX listings package */
127
+  pre.src-ada:before { content: 'Ada'; }
128
+  pre.src-asm:before { content: 'Assembler'; }
129
+  pre.src-caml:before { content: 'Caml'; }
130
+  pre.src-delphi:before { content: 'Delphi'; }
131
+  pre.src-html:before { content: 'HTML'; }
132
+  pre.src-idl:before { content: 'IDL'; }
133
+  pre.src-mercury:before { content: 'Mercury'; }
134
+  pre.src-metapost:before { content: 'MetaPost'; }
135
+  pre.src-modula-2:before { content: 'Modula-2'; }
136
+  pre.src-pascal:before { content: 'Pascal'; }
137
+  pre.src-ps:before { content: 'PostScript'; }
138
+  pre.src-prolog:before { content: 'Prolog'; }
139
+  pre.src-simula:before { content: 'Simula'; }
140
+  pre.src-tcl:before { content: 'tcl'; }
141
+  pre.src-tex:before { content: 'TeX'; }
142
+  pre.src-plain-tex:before { content: 'Plain TeX'; }
143
+  pre.src-verilog:before { content: 'Verilog'; }
144
+  pre.src-vhdl:before { content: 'VHDL'; }
145
+  pre.src-xml:before { content: 'XML'; }
146
+  pre.src-nxml:before { content: 'XML'; }
147
+  /* add a generic configuration mode; LaTeX export needs an additional
148
+     (add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
149
+  pre.src-conf:before { content: 'Configuration File'; }
150
+
151
+  table { border-collapse:collapse; }
152
+  caption.t-above { caption-side: top; }
153
+  caption.t-bottom { caption-side: bottom; }
154
+  td, th { vertical-align:top;  }
155
+  th.org-right  { text-align: center;  }
156
+  th.org-left   { text-align: center;   }
157
+  th.org-center { text-align: center; }
158
+  td.org-right  { text-align: right;  }
159
+  td.org-left   { text-align: left;   }
160
+  td.org-center { text-align: center; }
161
+  dt { font-weight: bold; }
162
+  .footpara { display: inline; }
163
+  .footdef  { margin-bottom: 1em; }
164
+  .figure { padding: 1em; }
165
+  .figure p { text-align: center; }
166
+  .inlinetask {
167
+    padding: 10px;
168
+    border: 2px solid gray;
169
+    margin: 10px;
170
+    background: #ffffcc;
171
+  }
172
+  #org-div-home-and-up
173
+   { text-align: right; font-size: 70%; white-space: nowrap; }
174
+  textarea { overflow-x: auto; }
175
+  .linenr { font-size: smaller }
176
+  .code-highlighted { background-color: #ffff00; }
177
+  .org-info-js_info-navigation { border-style: none; }
178
+  #org-info-js_console-label
179
+    { font-size: 10px; font-weight: bold; white-space: nowrap; }
180
+  .org-info-js_search-highlight
181
+    { background-color: #ffff00; color: #000000; font-weight: bold; }
182
+  .org-svg { width: 90%; }
183
+  /*]]>*/-->
184
+</style>
185
+<link rel="stylesheet" type="text/css" href="freedombone.css" />
186
+<script type="text/javascript">
187
+/*
188
+@licstart  The following is the entire license notice for the
189
+JavaScript code in this tag.
190
+
191
+Copyright (C) 2012-2013 Free Software Foundation, Inc.
192
+
193
+The JavaScript code in this tag is free software: you can
194
+redistribute it and/or modify it under the terms of the GNU
195
+General Public License (GNU GPL) as published by the Free Software
196
+Foundation, either version 3 of the License, or (at your option)
197
+any later version.  The code is distributed WITHOUT ANY WARRANTY;
198
+without even the implied warranty of MERCHANTABILITY or FITNESS
199
+FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
200
+
201
+As additional permission under GNU GPL version 3 section 7, you
202
+may distribute non-source (e.g., minimized or compacted) forms of
203
+that code without the copy of the GNU GPL normally required by
204
+section 4, provided you include this license notice and a URL
205
+through which recipients can access the Corresponding Source.
206
+
207
+
208
+@licend  The above is the entire license notice
209
+for the JavaScript code in this tag.
210
+*/
211
+<!--/*--><![CDATA[/*><!--*/
212
+ function CodeHighlightOn(elem, id)
213
+ {
214
+   var target = document.getElementById(id);
215
+   if(null != target) {
216
+     elem.cacheClassElem = elem.className;
217
+     elem.cacheClassTarget = target.className;
218
+     target.className = "code-highlighted";
219
+     elem.className   = "code-highlighted";
220
+   }
221
+ }
222
+ function CodeHighlightOff(elem, id)
223
+ {
224
+   var target = document.getElementById(id);
225
+   if(elem.cacheClassElem)
226
+     elem.className = elem.cacheClassElem;
227
+   if(elem.cacheClassTarget)
228
+     target.className = elem.cacheClassTarget;
229
+ }
230
+/*]]>*///-->
231
+</script>
232
+</head>
233
+<body>
234
+<div id="preamble" class="status">
235
+<a name="top" id="top"></a>
236
+</div>
237
+<div id="content">
238
+<div class="org-center">
239
+
240
+<div class="figure">
241
+<p><img src="images/logo.png" alt="logo.png" />
242
+</p>
243
+</div>
244
+</div>
245
+
246
+<center>
247
+<h1>IRC</h1>
248
+</center>
249
+
250
+<p>
251
+IRC is useful for multi-user chat. The classic use case is for software development where many engineers might need to coordinate their activities, but it's also useful for meetings, parties and general socialising.
252
+</p>
253
+
254
+<div id="outline-container-org854be38" class="outline-2">
255
+<h2 id="org854be38">Irssi</h2>
256
+<div class="outline-text-2" id="text-org854be38">
257
+<p>
258
+The easiest way to use irssi is to connect to your system, like this:
259
+</p>
260
+
261
+<div class="org-src-container">
262
+<pre class="src src-bash">ssh myusername@mydomain -p 2222
263
+</pre>
264
+</div>
265
+
266
+<p>
267
+Then select <b>IRC</b> from the menu. However, other than via this method using ssh, irssi isn't a very good IRC client because it doesn't have the capability to onion route messages, and therefore leaks metadata. For the best security when using your IRC server, use HexChat, Emacs ERC or another client which supports socks5 proxying.
268
+</p>
269
+</div>
270
+</div>
271
+
272
+<div id="outline-container-orgf253d99" class="outline-2">
273
+<h2 id="orgf253d99">HexChat</h2>
274
+<div class="outline-text-2" id="text-orgf253d99">
275
+<p>
276
+HexChat (formerly XChat) is compatible with proxying via Tor and so provides the best security when connecting to your IRC server. It will allow you to connect to your IRC server's onion address.
277
+</p>
278
+
279
+<p>
280
+First install HexChat and set up its configuration file. This can be done on your local machine with:
281
+</p>
282
+
283
+<div class="org-src-container">
284
+<pre class="src src-bash">freedombone-client --setup hexchat
285
+</pre>
286
+</div>
287
+
288
+<p>
289
+Now look up the onion address for your IRC server
290
+</p>
291
+
292
+<div class="org-src-container">
293
+<pre class="src src-bash">ssh username@mydomainname -p 2222
294
+</pre>
295
+</div>
296
+
297
+<p>
298
+Select Administrator options, then <b>About this system</b> and make a note of the onion address for IRC. Also select the <b>IRC Menu</b> and take a note of the login password.
299
+</p>
300
+
301
+<p>
302
+Run HexChat.
303
+</p>
304
+
305
+<p>
306
+Within the network list click, <b>Add</b> and enter your domain name then click <b>Edit</b>.
307
+</p>
308
+
309
+<p>
310
+Select the entry within the servers box, then enter <b>ircaddress.onion/6697</b> or <b>mydomainname/6697</b> and press <b>Enter</b>.
311
+</p>
312
+
313
+<p>
314
+Uncheck <b>use global user information</b>.
315
+</p>
316
+
317
+<p>
318
+Enter first and second nicknames and check <b>connect to this network on startup</b>.
319
+</p>
320
+
321
+<p>
322
+If you are using the ordinary domain name (clearnet/ICANN) then make sure that <b>Use SSL</b> is checked.
323
+</p>
324
+
325
+
326
+<div class="figure">
327
+<p><img src="images/hexchat_setup_clearnet.jpg" alt="hexchat_setup_clearnet.jpg" />
328
+</p>
329
+</div>
330
+
331
+<p>
332
+If you are using the onion address then <b>use SSL</b> should be unchecked and the transport encryption will be handled via the onion address itself.
333
+</p>
334
+
335
+
336
+<div class="figure">
337
+<p><img src="images/hexchat_setup.jpg" alt="hexchat_setup.jpg" />
338
+</p>
339
+</div>
340
+
341
+<p>
342
+Within the <b>Password</b> field enter the password which can be found from the IRC menu of the <b>control panel</b>.
343
+</p>
344
+
345
+<p>
346
+Select the <b>Autojoin channels</b> tab, click <b>Add</b> and enter <b>#freedombone</b> as the channel name.
347
+</p>
348
+
349
+<p>
350
+Click <b>close</b> and then <b>connect</b>.
351
+</p>
352
+</div>
353
+</div>
354
+
355
+<div id="outline-container-orgf17377b" class="outline-2">
356
+<h2 id="orgf17377b">Emacs</h2>
357
+<div class="outline-text-2" id="text-orgf17377b">
358
+<p>
359
+If you are an Emacs user then you can also connect to your IRC server via Emacs.
360
+</p>
361
+
362
+<p>
363
+Ensure that tor is installed onto your local system:
364
+</p>
365
+
366
+<div class="org-src-container">
367
+<pre class="src src-bash">sudo apt-get install tor
368
+</pre>
369
+</div>
370
+
371
+<p>
372
+Add the following to your Emacs configuration file:
373
+</p>
374
+
375
+<div class="org-src-container">
376
+<pre class="src src-elisp">(<span class="org-keyword">setq</span> socks-noproxy '(<span class="org-string">"localhost"</span>))
377
+(<span class="org-keyword">require</span> '<span class="org-constant">socks</span>)
378
+(<span class="org-keyword">require</span> '<span class="org-constant">tls</span>)
379
+(<span class="org-keyword">setq</span> socks-server (list <span class="org-string">"Tor socks"</span> <span class="org-string">"localhost"</span> 9050 5))
380
+(<span class="org-keyword">setq</span> erc-server-connect-function 'socks-open-network-stream)
381
+(<span class="org-keyword">setq</span> erc-autojoin-channels-alist
382
+    '((<span class="org-string">"myircaddress.onion"</span> <span class="org-string">"#freedombone"</span>)))
383
+(erc <span class="org-builtin">:server</span> <span class="org-string">"myircaddress.onion"</span> <span class="org-builtin">:port</span> 6697 <span class="org-builtin">:nick</span> <span class="org-string">"yourusername"</span> <span class="org-builtin">:password</span> <span class="org-string">"your IRC password"</span>)
384
+</pre>
385
+</div>
386
+</div>
387
+</div>
388
+
389
+<div id="outline-container-org918124e" class="outline-2">
390
+<h2 id="org918124e">Changing or removing the IRC password</h2>
391
+<div class="outline-text-2" id="text-org918124e">
392
+<p>
393
+By default the IRC server is set up to require a password for users to log in. The password is the same for all users. If you want to change or remove the password:
394
+</p>
395
+
396
+<div class="org-src-container">
397
+<pre class="src src-bash">ssh myusername@mydomain -p 2222
398
+</pre>
399
+</div>
400
+
401
+<p>
402
+Select <i>Administrator controls</i> then <b>IRC Menu</b> and then change the password. An empty password will allow anyone to log in, so you can have a globally accessible IRC system if you wish, although you might want to carefully consider whether that's wise.
403
+</p>
404
+</div>
405
+</div>
406
+</div>
407
+<div id="postamble" class="status">
408
+
409
+<style type="text/css">
410
+.back-to-top {
411
+    position: fixed;
412
+    bottom: 2em;
413
+    right: 0px;
414
+    text-decoration: none;
415
+    color: #000000;
416
+    background-color: rgba(235, 235, 235, 0.80);
417
+    font-size: 12px;
418
+    padding: 1em;
419
+    display: none;
420
+}
421
+
422
+.back-to-top:hover {
423
+    background-color: rgba(135, 135, 135, 0.50);
424
+}
425
+</style>
426
+
427
+<div class="back-to-top">
428
+<a href="#top">Back to top</a> | <a href="mailto:bob@freedombone.net">E-mail me</a>
429
+</div>
430
+</div>
431
+</body>
432
+</html>

+ 71
- 68
website/EN/apps.html Vedi File

3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
 <head>
5
 <head>
6
-<!-- 2016-11-12 Sat 20:19 -->
6
+<!-- 2016-11-12 Sat 20:28 -->
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9
 <title></title>
9
 <title></title>
257
 </div>
257
 </div>
258
 </div>
258
 </div>
259
 
259
 
260
-<div id="outline-container-org8b362e0" class="outline-2">
261
-<h2 id="org8b362e0">DLNA</h2>
262
-<div class="outline-text-2" id="text-org8b362e0">
260
+<div id="outline-container-orgd6bca02" class="outline-2">
261
+<h2 id="orgd6bca02">DLNA</h2>
262
+<div class="outline-text-2" id="text-orgd6bca02">
263
 <p>
263
 <p>
264
 Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network.
264
 Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network.
265
 </p>
265
 </p>
269
 </p>
269
 </p>
270
 </div>
270
 </div>
271
 </div>
271
 </div>
272
-<div id="outline-container-org5a75e71" class="outline-2">
273
-<h2 id="org5a75e71">Dokuwiki</h2>
274
-<div class="outline-text-2" id="text-org5a75e71">
272
+<div id="outline-container-org571c0cf" class="outline-2">
273
+<h2 id="org571c0cf">Dokuwiki</h2>
274
+<div class="outline-text-2" id="text-org571c0cf">
275
 <p>
275
 <p>
276
 A databaseless wiki system.
276
 A databaseless wiki system.
277
 </p>
277
 </p>
278
 </div>
278
 </div>
279
 </div>
279
 </div>
280
 
280
 
281
-<div id="outline-container-org08e9b36" class="outline-2">
282
-<h2 id="org08e9b36">Emacs</h2>
283
-<div class="outline-text-2" id="text-org08e9b36">
281
+<div id="outline-container-org86c450f" class="outline-2">
282
+<h2 id="org86c450f">Emacs</h2>
283
+<div class="outline-text-2" id="text-org86c450f">
284
 <p>
284
 <p>
285
 If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail.
285
 If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail.
286
 </p>
286
 </p>
287
 </div>
287
 </div>
288
 </div>
288
 </div>
289
 
289
 
290
-<div id="outline-container-orgc84769a" class="outline-2">
291
-<h2 id="orgc84769a">Etherpad</h2>
292
-<div class="outline-text-2" id="text-orgc84769a">
290
+<div id="outline-container-orgce869ec" class="outline-2">
291
+<h2 id="orgce869ec">Etherpad</h2>
292
+<div class="outline-text-2" id="text-orgce869ec">
293
 <p>
293
 <p>
294
 Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it.
294
 Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it.
295
 </p>
295
 </p>
296
 </div>
296
 </div>
297
 </div>
297
 </div>
298
 
298
 
299
-<div id="outline-container-org6fc29f0" class="outline-2">
300
-<h2 id="org6fc29f0">Ghost</h2>
301
-<div class="outline-text-2" id="text-org6fc29f0">
299
+<div id="outline-container-orgfa92334" class="outline-2">
300
+<h2 id="orgfa92334">Ghost</h2>
301
+<div class="outline-text-2" id="text-orgfa92334">
302
 <p>
302
 <p>
303
 Modern looking blogging system.
303
 Modern looking blogging system.
304
 </p>
304
 </p>
305
 </div>
305
 </div>
306
 </div>
306
 </div>
307
 
307
 
308
-<div id="outline-container-org13473f6" class="outline-2">
309
-<h2 id="org13473f6">GNU Social</h2>
310
-<div class="outline-text-2" id="text-org13473f6">
308
+<div id="outline-container-orgd5b6c40" class="outline-2">
309
+<h2 id="orgd5b6c40">GNU Social</h2>
310
+<div class="outline-text-2" id="text-orgd5b6c40">
311
 <p>
311
 <p>
312
 Federated social network. You can "<i>remote follow</i>" other users within the GNU Social federation.
312
 Federated social network. You can "<i>remote follow</i>" other users within the GNU Social federation.
313
 </p>
313
 </p>
317
 </p>
317
 </p>
318
 </div>
318
 </div>
319
 </div>
319
 </div>
320
-<div id="outline-container-orge704409" class="outline-2">
321
-<h2 id="orge704409">Gogs</h2>
322
-<div class="outline-text-2" id="text-orge704409">
320
+<div id="outline-container-org5a990e6" class="outline-2">
321
+<h2 id="org5a990e6">Gogs</h2>
322
+<div class="outline-text-2" id="text-org5a990e6">
323
 <p>
323
 <p>
324
 Lightweight git project hosting system. You can mirror projects from Github, or if Github turns evil then just host your own projects while retaining the familiar <i>fork-and-pull</i> workflow. If you can use Github then you can also use Gogs.
324
 Lightweight git project hosting system. You can mirror projects from Github, or if Github turns evil then just host your own projects while retaining the familiar <i>fork-and-pull</i> workflow. If you can use Github then you can also use Gogs.
325
 </p>
325
 </p>
326
 </div>
326
 </div>
327
 </div>
327
 </div>
328
 
328
 
329
-<div id="outline-container-org615d7da" class="outline-2">
330
-<h2 id="org615d7da">HTMLy</h2>
331
-<div class="outline-text-2" id="text-org615d7da">
329
+<div id="outline-container-org6d858db" class="outline-2">
330
+<h2 id="org6d858db">HTMLy</h2>
331
+<div class="outline-text-2" id="text-org6d858db">
332
 <p>
332
 <p>
333
 Databaseless blogging system. Quite simple and with a markdown-like format.
333
 Databaseless blogging system. Quite simple and with a markdown-like format.
334
 </p>
334
 </p>
335
 </div>
335
 </div>
336
 </div>
336
 </div>
337
 
337
 
338
-<div id="outline-container-org11b80ad" class="outline-2">
339
-<h2 id="org11b80ad">Hubzilla</h2>
340
-<div class="outline-text-2" id="text-org11b80ad">
338
+<div id="outline-container-org6fad5ec" class="outline-2">
339
+<h2 id="org6fad5ec">Hubzilla</h2>
340
+<div class="outline-text-2" id="text-org6fad5ec">
341
 <p>
341
 <p>
342
 Web publishing platform with social network like features and good privacy controls so that it's possible to specify who can see which content. Includes photo albums, calendar, wiki and file storage.
342
 Web publishing platform with social network like features and good privacy controls so that it's possible to specify who can see which content. Includes photo albums, calendar, wiki and file storage.
343
 </p>
343
 </p>
347
 </p>
347
 </p>
348
 </div>
348
 </div>
349
 </div>
349
 </div>
350
-<div id="outline-container-org3edd239" class="outline-2">
351
-<h2 id="org3edd239">IRC Server (ngirc)</h2>
352
-<div class="outline-text-2" id="text-org3edd239">
350
+<div id="outline-container-org6904871" class="outline-2">
351
+<h2 id="org6904871">IRC Server (ngirc)</h2>
352
+<div class="outline-text-2" id="text-org6904871">
353
 <p>
353
 <p>
354
 Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients.
354
 Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients.
355
 </p>
355
 </p>
356
+
357
+<p>
358
+<a href="./app_irc.html">How to use it</a>
359
+</p>
356
 </div>
360
 </div>
357
 </div>
361
 </div>
358
-
359
-<div id="outline-container-orgbd7eda1" class="outline-2">
360
-<h2 id="orgbd7eda1">Jitsi Meet</h2>
361
-<div class="outline-text-2" id="text-orgbd7eda1">
362
+<div id="outline-container-org3640e06" class="outline-2">
363
+<h2 id="org3640e06">Jitsi Meet</h2>
364
+<div class="outline-text-2" id="text-org3640e06">
362
 <p>
365
 <p>
363
 Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.
366
 Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.
364
 </p>
367
 </p>
365
 </div>
368
 </div>
366
 </div>
369
 </div>
367
 
370
 
368
-<div id="outline-container-org56f2d4c" class="outline-2">
369
-<h2 id="org56f2d4c">Lychee</h2>
370
-<div class="outline-text-2" id="text-org56f2d4c">
371
+<div id="outline-container-org9134521" class="outline-2">
372
+<h2 id="org9134521">Lychee</h2>
373
+<div class="outline-text-2" id="text-org9134521">
371
 <p>
374
 <p>
372
 Make your photo albums available on the web.
375
 Make your photo albums available on the web.
373
 </p>
376
 </p>
374
 </div>
377
 </div>
375
 </div>
378
 </div>
376
 
379
 
377
-<div id="outline-container-org2c415e2" class="outline-2">
378
-<h2 id="org2c415e2">Mailpile</h2>
379
-<div class="outline-text-2" id="text-org2c415e2">
380
+<div id="outline-container-org44a1ff5" class="outline-2">
381
+<h2 id="org44a1ff5">Mailpile</h2>
382
+<div class="outline-text-2" id="text-org44a1ff5">
380
 <p>
383
 <p>
381
 Modern email client which supports GPG encryption.
384
 Modern email client which supports GPG encryption.
382
 </p>
385
 </p>
383
 </div>
386
 </div>
384
 </div>
387
 </div>
385
 
388
 
386
-<div id="outline-container-orgb65e532" class="outline-2">
387
-<h2 id="orgb65e532">Mumble</h2>
388
-<div class="outline-text-2" id="text-orgb65e532">
389
+<div id="outline-container-org228ca34" class="outline-2">
390
+<h2 id="org228ca34">Mumble</h2>
391
+<div class="outline-text-2" id="text-org228ca34">
389
 <p>
392
 <p>
390
 The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile.
393
 The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile.
391
 </p>
394
 </p>
392
 </div>
395
 </div>
393
 </div>
396
 </div>
394
 
397
 
395
-<div id="outline-container-org73032ef" class="outline-2">
396
-<h2 id="org73032ef">PI-Hole</h2>
397
-<div class="outline-text-2" id="text-org73032ef">
398
+<div id="outline-container-orgeccf92f" class="outline-2">
399
+<h2 id="orgeccf92f">PI-Hole</h2>
400
+<div class="outline-text-2" id="text-orgeccf92f">
398
 <p>
401
 <p>
399
 The black hole for web adverts. Block adverts at the domain name level within your local network. It can significantly reduce bandwidth, speed up page load times and protect your systems from being tracked by spyware.
402
 The black hole for web adverts. Block adverts at the domain name level within your local network. It can significantly reduce bandwidth, speed up page load times and protect your systems from being tracked by spyware.
400
 </p>
403
 </p>
401
 </div>
404
 </div>
402
 </div>
405
 </div>
403
 
406
 
404
-<div id="outline-container-orgac6069d" class="outline-2">
405
-<h2 id="orgac6069d">PostActiv</h2>
406
-<div class="outline-text-2" id="text-orgac6069d">
407
+<div id="outline-container-orgd52fb5a" class="outline-2">
408
+<h2 id="orgd52fb5a">PostActiv</h2>
409
+<div class="outline-text-2" id="text-orgd52fb5a">
407
 <p>
410
 <p>
408
 An alternative federated social networking system compatible with GNU Social. It includes some optimisations and fixes currently not available within the main GNU Social project.
411
 An alternative federated social networking system compatible with GNU Social. It includes some optimisations and fixes currently not available within the main GNU Social project.
409
 </p>
412
 </p>
410
 </div>
413
 </div>
411
 </div>
414
 </div>
412
 
415
 
413
-<div id="outline-container-org889b446" class="outline-2">
414
-<h2 id="org889b446">Radicale</h2>
415
-<div class="outline-text-2" id="text-org889b446">
416
+<div id="outline-container-org70d72b7" class="outline-2">
417
+<h2 id="org70d72b7">Radicale</h2>
418
+<div class="outline-text-2" id="text-org70d72b7">
416
 <p>
419
 <p>
417
 Calendar system compatible with CalDAV and CardDAV. Manage your calendar events easily across all your devices.
420
 Calendar system compatible with CalDAV and CardDAV. Manage your calendar events easily across all your devices.
418
 </p>
421
 </p>
419
 </div>
422
 </div>
420
 </div>
423
 </div>
421
 
424
 
422
-<div id="outline-container-orgbad0c63" class="outline-2">
423
-<h2 id="orgbad0c63">tt-rss</h2>
424
-<div class="outline-text-2" id="text-orgbad0c63">
425
+<div id="outline-container-org951789f" class="outline-2">
426
+<h2 id="org951789f">tt-rss</h2>
427
+<div class="outline-text-2" id="text-org951789f">
425
 <p>
428
 <p>
426
 Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "<i>the right to read</i>" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox.
429
 Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "<i>the right to read</i>" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox.
427
 </p>
430
 </p>
428
 </div>
431
 </div>
429
 </div>
432
 </div>
430
 
433
 
431
-<div id="outline-container-org7425471" class="outline-2">
432
-<h2 id="org7425471">Syncthing</h2>
433
-<div class="outline-text-2" id="text-org7425471">
434
+<div id="outline-container-org742baf7" class="outline-2">
435
+<h2 id="org742baf7">Syncthing</h2>
436
+<div class="outline-text-2" id="text-org742baf7">
434
 <p>
437
 <p>
435
 Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed.
438
 Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed.
436
 </p>
439
 </p>
440
 </p>
443
 </p>
441
 </div>
444
 </div>
442
 </div>
445
 </div>
443
-<div id="outline-container-org182c2c6" class="outline-2">
444
-<h2 id="org182c2c6">Tox</h2>
445
-<div class="outline-text-2" id="text-org182c2c6">
446
+<div id="outline-container-org7fa483d" class="outline-2">
447
+<h2 id="org7fa483d">Tox</h2>
448
+<div class="outline-text-2" id="text-org7fa483d">
446
 <p>
449
 <p>
447
 Client and bootstrap node for the Tox chat/VoIP system.
450
 Client and bootstrap node for the Tox chat/VoIP system.
448
 </p>
451
 </p>
449
 </div>
452
 </div>
450
 </div>
453
 </div>
451
 
454
 
452
-<div id="outline-container-org6f2a32f" class="outline-2">
453
-<h2 id="org6f2a32f">Vim</h2>
454
-<div class="outline-text-2" id="text-org6f2a32f">
455
+<div id="outline-container-org1459499" class="outline-2">
456
+<h2 id="org1459499">Vim</h2>
457
+<div class="outline-text-2" id="text-org1459499">
455
 <p>
458
 <p>
456
 If you use the Mutt client to read your email then this will set it up to use vim for composing new mail.
459
 If you use the Mutt client to read your email then this will set it up to use vim for composing new mail.
457
 </p>
460
 </p>
458
 </div>
461
 </div>
459
 </div>
462
 </div>
460
 
463
 
461
-<div id="outline-container-orga1114f1" class="outline-2">
462
-<h2 id="orga1114f1">XMPP</h2>
463
-<div class="outline-text-2" id="text-orga1114f1">
464
+<div id="outline-container-orgac0c9d6" class="outline-2">
465
+<h2 id="orgac0c9d6">XMPP</h2>
466
+<div class="outline-text-2" id="text-orgac0c9d6">
464
 <p>
467
 <p>
465
 Chat server which can be used together with client such as Gajim or Conversations to provide end-to-end content security and also onion routed metadata security. Includes advanced features such as <i>client state notification</i> to save battery power on your mobile devices, support for seamless roaming between networks and <i>message carbons</i> so that you can receive the same messages while being simultaneously logged in to your account on more than one device.
468
 Chat server which can be used together with client such as Gajim or Conversations to provide end-to-end content security and also onion routed metadata security. Includes advanced features such as <i>client state notification</i> to save battery power on your mobile devices, support for seamless roaming between networks and <i>message carbons</i> so that you can receive the same messages while being simultaneously logged in to your account on more than one device.
466
 </p>
469
 </p>

+ 115
- 270
website/EN/usage.html Vedi File

3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
 <head>
5
 <head>
6
-<!-- 2016-11-12 Sat 20:18 -->
6
+<!-- 2016-11-12 Sat 20:27 -->
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9
 <title></title>
9
 <title></title>
255
 </colgroup>
255
 </colgroup>
256
 <tbody>
256
 <tbody>
257
 <tr>
257
 <tr>
258
-<td class="org-left"><a href="#orge0d5123">Readme</a></td>
258
+<td class="org-left"><a href="#org5bb31f9">Readme</a></td>
259
 </tr>
259
 </tr>
260
 
260
 
261
 <tr>
261
 <tr>
262
-<td class="org-left"><a href="#orgd2a9afb">Improving ssh security</a></td>
262
+<td class="org-left"><a href="#orgbd22da2">Improving ssh security</a></td>
263
 </tr>
263
 </tr>
264
 
264
 
265
 <tr>
265
 <tr>
266
-<td class="org-left"><a href="#orgaf97067">Administrating the system via an onion address (Tor)</a></td>
266
+<td class="org-left"><a href="#org03083b8">Administrating the system via an onion address (Tor)</a></td>
267
 </tr>
267
 </tr>
268
 
268
 
269
 <tr>
269
 <tr>
291
 </tr>
291
 </tr>
292
 
292
 
293
 <tr>
293
 <tr>
294
-<td class="org-left"><a href="#org61a775a">Chat Services</a></td>
294
+<td class="org-left"><a href="./app_irc.html">Multi-user chat with IRC</a></td>
295
 </tr>
295
 </tr>
296
 
296
 
297
 <tr>
297
 <tr>
298
-<td class="org-left"><a href="#orgf076640">RSS Reader</a></td>
298
+<td class="org-left"><a href="#org93777dd">Chat Services</a></td>
299
 </tr>
299
 </tr>
300
 
300
 
301
 <tr>
301
 <tr>
302
-<td class="org-left"><a href="#org8b7fde8">Git Projects</a></td>
302
+<td class="org-left"><a href="#org3eb0562">RSS Reader</a></td>
303
 </tr>
303
 </tr>
304
 
304
 
305
 <tr>
305
 <tr>
306
-<td class="org-left"><a href="#org0f48943">Adding or removing users</a></td>
306
+<td class="org-left"><a href="#org0140487">Git Projects</a></td>
307
 </tr>
307
 </tr>
308
 
308
 
309
 <tr>
309
 <tr>
310
-<td class="org-left"><a href="#org99fb698">Blocking Ads</a></td>
310
+<td class="org-left"><a href="#org5c79868">Adding or removing users</a></td>
311
+</tr>
312
+
313
+<tr>
314
+<td class="org-left"><a href="#orgf047482">Blocking Ads</a></td>
311
 </tr>
315
 </tr>
312
 </tbody>
316
 </tbody>
313
 </table>
317
 </table>
314
 
318
 
315
-<div id="outline-container-orge0d5123" class="outline-2">
316
-<h2 id="orge0d5123">Readme</h2>
317
-<div class="outline-text-2" id="text-orge0d5123">
319
+<div id="outline-container-org5bb31f9" class="outline-2">
320
+<h2 id="org5bb31f9">Readme</h2>
321
+<div class="outline-text-2" id="text-org5bb31f9">
318
 <p>
322
 <p>
319
 After the system has installed a README file will be generated which contains passwords and some brief advice on using the installed systems. You can read this with the following commands:
323
 After the system has installed a README file will be generated which contains passwords and some brief advice on using the installed systems. You can read this with the following commands:
320
 </p>
324
 </p>
334
 </p>
338
 </p>
335
 </div>
339
 </div>
336
 </div>
340
 </div>
337
-<div id="outline-container-orgd2a9afb" class="outline-2">
338
-<h2 id="orgd2a9afb">Improving ssh security</h2>
339
-<div class="outline-text-2" id="text-orgd2a9afb">
341
+<div id="outline-container-orgbd22da2" class="outline-2">
342
+<h2 id="orgbd22da2">Improving ssh security</h2>
343
+<div class="outline-text-2" id="text-orgbd22da2">
340
 <p>
344
 <p>
341
 To improve ssh security you can generate an ssh key pair on your system and then upload the public key to the Freedombone.
345
 To improve ssh security you can generate an ssh key pair on your system and then upload the public key to the Freedombone.
342
 </p>
346
 </p>
386
 </div>
390
 </div>
387
 </div>
391
 </div>
388
 
392
 
389
-<div id="outline-container-orgaf97067" class="outline-2">
390
-<h2 id="orgaf97067">Administrating the system via an onion address (Tor)</h2>
391
-<div class="outline-text-2" id="text-orgaf97067">
393
+<div id="outline-container-org03083b8" class="outline-2">
394
+<h2 id="org03083b8">Administrating the system via an onion address (Tor)</h2>
395
+<div class="outline-text-2" id="text-org03083b8">
392
 <p>
396
 <p>
393
 You can also access your system via the Tor system using an onion address. To find out what the onion address for ssh access is you can do the following:
397
 You can also access your system via the Tor system using an onion address. To find out what the onion address for ssh access is you can do the following:
394
 </p>
398
 </p>
430
 </p>
434
 </p>
431
 </div>
435
 </div>
432
 </div>
436
 </div>
433
-<div id="outline-container-org61a775a" class="outline-2">
434
-<h2 id="org61a775a">Chat Services</h2>
435
-<div class="outline-text-2" id="text-org61a775a">
436
-</div><div id="outline-container-orgf4bf4ce" class="outline-3">
437
-<h3 id="orgf4bf4ce">IRC</h3>
438
-<div class="outline-text-3" id="text-orgf4bf4ce">
439
-<p>
440
-IRC is useful for multi-user chat. The classic use case is for software development where many engineers might need to coordinate their activities, but it's also useful for meetings, parties and general socialising.
441
-</p>
442
-</div>
443
-<div id="outline-container-orgacaf59f" class="outline-4">
444
-<h4 id="orgacaf59f">Irssi</h4>
445
-<div class="outline-text-4" id="text-orgacaf59f">
446
-<p>
447
-The easiest way to use irssi is to connect to your system, like this:
448
-</p>
449
-
450
-<div class="org-src-container">
451
-<pre class="src src-bash">ssh myusername@mydomain -p 2222
452
-</pre>
453
-</div>
454
-
455
-<p>
456
-Then select <b>IRC</b> from the menu. However, other than via this method using ssh, irssi isn't a very good IRC client because it doesn't have the capability to onion route messages, and therefore leaks metadata. For the best security when using your IRC server, use HexChat, Emacs ERC or another client which supports socks5 proxying.
457
-</p>
458
-</div>
459
-</div>
460
-<div id="outline-container-org4acdb42" class="outline-4">
461
-<h4 id="org4acdb42">HexChat</h4>
462
-<div class="outline-text-4" id="text-org4acdb42">
463
-<p>
464
-HexChat (formerly XChat) is compatible with proxying via Tor and so provides the best security when connecting to your IRC server. It will allow you to connect to your IRC server's onion address.
465
-</p>
466
-
467
-<p>
468
-First install HexChat and set up its configuration file. This can be done on your local machine with:
469
-</p>
470
-
471
-<div class="org-src-container">
472
-<pre class="src src-bash">freedombone-client --setup hexchat
473
-</pre>
474
-</div>
475
-
476
-<p>
477
-Now look up the onion address for your IRC server
478
-</p>
479
-
480
-<div class="org-src-container">
481
-<pre class="src src-bash">ssh username@mydomainname -p 2222
482
-</pre>
483
-</div>
484
-
485
-<p>
486
-Select Administrator options, then <b>About this system</b> and make a note of the onion address for IRC. Also select the <b>IRC Menu</b> and take a note of the login password.
487
-</p>
488
-
489
-<p>
490
-Run HexChat.
491
-</p>
492
-
493
-<p>
494
-Within the network list click, <b>Add</b> and enter your domain name then click <b>Edit</b>.
495
-</p>
496
-
497
-<p>
498
-Select the entry within the servers box, then enter <b>ircaddress.onion/6697</b> or <b>mydomainname/6697</b> and press <b>Enter</b>.
499
-</p>
500
-
501
-<p>
502
-Uncheck <b>use global user information</b>.
503
-</p>
504
-
505
-<p>
506
-Enter first and second nicknames and check <b>connect to this network on startup</b>.
507
-</p>
508
-
509
-<p>
510
-If you are using the ordinary domain name (clearnet/ICANN) then make sure that <b>Use SSL</b> is checked.
511
-</p>
512
-
513
-
514
-<div class="figure">
515
-<p><img src="images/hexchat_setup_clearnet.jpg" alt="hexchat_setup_clearnet.jpg" />
516
-</p>
517
-</div>
518
-
519
-<p>
520
-If you are using the onion address then <b>use SSL</b> should be unchecked and the transport encryption will be handled via the onion address itself.
521
-</p>
522
-
523
-
524
-<div class="figure">
525
-<p><img src="images/hexchat_setup.jpg" alt="hexchat_setup.jpg" />
526
-</p>
527
-</div>
528
-
529
-<p>
530
-Within the <b>Password</b> field enter the password which can be found from the IRC menu of the <b>control panel</b>.
531
-</p>
532
-
533
-<p>
534
-Select the <b>Autojoin channels</b> tab, click <b>Add</b> and enter <b>#freedombone</b> as the channel name.
535
-</p>
536
-
537
-<p>
538
-Click <b>close</b> and then <b>connect</b>.
539
-</p>
540
-</div>
541
-</div>
542
-
543
-<div id="outline-container-orgcb3ad1c" class="outline-4">
544
-<h4 id="orgcb3ad1c">Emacs</h4>
545
-<div class="outline-text-4" id="text-orgcb3ad1c">
546
-<p>
547
-If you are an Emacs user then you can also connect to your IRC server via Emacs.
548
-</p>
549
-
550
-<p>
551
-Ensure that tor is installed onto your local system:
552
-</p>
553
-
554
-<div class="org-src-container">
555
-<pre class="src src-bash">sudo apt-get install tor
556
-</pre>
557
-</div>
558
-
559
-<p>
560
-Add the following to your Emacs configuration file:
561
-</p>
562
-
563
-<div class="org-src-container">
564
-<pre class="src src-elisp">(<span class="org-keyword">setq</span> socks-noproxy '(<span class="org-string">"localhost"</span>))
565
-(<span class="org-keyword">require</span> '<span class="org-constant">socks</span>)
566
-(<span class="org-keyword">require</span> '<span class="org-constant">tls</span>)
567
-(<span class="org-keyword">setq</span> socks-server (list <span class="org-string">"Tor socks"</span> <span class="org-string">"localhost"</span> 9050 5))
568
-(<span class="org-keyword">setq</span> erc-server-connect-function 'socks-open-network-stream)
569
-(<span class="org-keyword">setq</span> erc-autojoin-channels-alist
570
-    '((<span class="org-string">"myircaddress.onion"</span> <span class="org-string">"#freedombone"</span>)))
571
-(erc <span class="org-builtin">:server</span> <span class="org-string">"myircaddress.onion"</span> <span class="org-builtin">:port</span> 6697 <span class="org-builtin">:nick</span> <span class="org-string">"yourusername"</span> <span class="org-builtin">:password</span> <span class="org-string">"your IRC password"</span>)
572
-</pre>
573
-</div>
574
-</div>
575
-</div>
576
-<div id="outline-container-orgaec0a45" class="outline-4">
577
-<h4 id="orgaec0a45">Changing or removing the IRC password</h4>
578
-<div class="outline-text-4" id="text-orgaec0a45">
579
-<p>
580
-By default the IRC server is set up to require a password for users to log in. The password is the same for all users. If you want to change or remove the password:
581
-</p>
582
-
583
-<div class="org-src-container">
584
-<pre class="src src-bash">ssh myusername@mydomain -p 2222
585
-</pre>
586
-</div>
587
-
588
-<p>
589
-Select <i>Administrator controls</i> then <b>IRC Menu</b> and then change the password. An empty password will allow anyone to log in, so you can have a globally accessible IRC system if you wish, although you might want to carefully consider whether that's wise.
590
-</p>
591
-</div>
592
-</div>
593
-</div>
594
-
595
-<div id="outline-container-org4016ecb" class="outline-3">
596
-<h3 id="org4016ecb">XMPP/Jabber</h3>
597
-<div class="outline-text-3" id="text-org4016ecb">
598
-</div><div id="outline-container-org4c7f956" class="outline-4">
599
-<h4 id="org4c7f956">About XMPP</h4>
600
-<div class="outline-text-4" id="text-org4c7f956">
437
+<div id="outline-container-org93777dd" class="outline-2">
438
+<h2 id="org93777dd">Chat Services</h2>
439
+<div class="outline-text-2" id="text-org93777dd">
440
+</div><div id="outline-container-org848d506" class="outline-3">
441
+<h3 id="org848d506">XMPP/Jabber</h3>
442
+<div class="outline-text-3" id="text-org848d506">
443
+</div><div id="outline-container-org05712a9" class="outline-4">
444
+<h4 id="org05712a9">About XMPP</h4>
445
+<div class="outline-text-4" id="text-org05712a9">
601
 <p>
446
 <p>
602
 A well written article on the state of XMPP and how it compares to other chat protocols <a href="https://gultsch.de/xmpp_2016.html">can be found here</a>.
447
 A well written article on the state of XMPP and how it compares to other chat protocols <a href="https://gultsch.de/xmpp_2016.html">can be found here</a>.
603
 </p>
448
 </p>
604
 </div>
449
 </div>
605
 </div>
450
 </div>
606
-<div id="outline-container-org706b122" class="outline-4">
607
-<h4 id="org706b122">Using with Gajim</h4>
608
-<div class="outline-text-4" id="text-org706b122">
451
+<div id="outline-container-org063f13a" class="outline-4">
452
+<h4 id="org063f13a">Using with Gajim</h4>
453
+<div class="outline-text-4" id="text-org063f13a">
609
 <p>
454
 <p>
610
 In mid 2016 <a href="https://gajim.org/">Gajim</a> became the first desktop XMPP client to support the <a href="https://en.wikipedia.org/wiki/OMEMO">OMEMO end-to-end security standard</a>, which is superior to the more traditional <a href="https://en.wikipedia.org/wiki/Off-the-Record_Messaging">OTR</a> since it also includes multi-user chat and the ratcheting mechanism pioneered by Open Whisper Systems. To install it:
455
 In mid 2016 <a href="https://gajim.org/">Gajim</a> became the first desktop XMPP client to support the <a href="https://en.wikipedia.org/wiki/OMEMO">OMEMO end-to-end security standard</a>, which is superior to the more traditional <a href="https://en.wikipedia.org/wiki/Off-the-Record_Messaging">OTR</a> since it also includes multi-user chat and the ratcheting mechanism pioneered by Open Whisper Systems. To install it:
611
 </p>
456
 </p>
649
 </div>
494
 </div>
650
 </div>
495
 </div>
651
 
496
 
652
-<div id="outline-container-org27d6954" class="outline-4">
653
-<h4 id="org27d6954">Using with Profanity</h4>
654
-<div class="outline-text-4" id="text-org27d6954">
497
+<div id="outline-container-orge5efeff" class="outline-4">
498
+<h4 id="orge5efeff">Using with Profanity</h4>
499
+<div class="outline-text-4" id="text-orge5efeff">
655
 <p>
500
 <p>
656
 The <a href="https://profanity.im">Profanity</a> shell based user interface and is perhaps the simplest way to use XMPP from a laptop. It's also a good way to ensure that your OTR keys are the same even when logging in from different laptops or devices, and it also means that if those devices later become compomised then there are no locally stored OTR keys to be found.
501
 The <a href="https://profanity.im">Profanity</a> shell based user interface and is perhaps the simplest way to use XMPP from a laptop. It's also a good way to ensure that your OTR keys are the same even when logging in from different laptops or devices, and it also means that if those devices later become compomised then there are no locally stored OTR keys to be found.
657
 </p>
502
 </p>
733
 </p>
578
 </p>
734
 </div>
579
 </div>
735
 </div>
580
 </div>
736
-<div id="outline-container-org3a05a57" class="outline-4">
737
-<h4 id="org3a05a57">Using with Jitsi</h4>
738
-<div class="outline-text-4" id="text-org3a05a57">
581
+<div id="outline-container-org1243af3" class="outline-4">
582
+<h4 id="org1243af3">Using with Jitsi</h4>
583
+<div class="outline-text-4" id="text-org1243af3">
739
 <p>
584
 <p>
740
 Jitsi is the recommended communications client for desktop or laptop systems, since it includes the <i>off the record</i> (OTR) feature which provides some additional security beyond the usual SSL certificates.
585
 Jitsi is the recommended communications client for desktop or laptop systems, since it includes the <i>off the record</i> (OTR) feature which provides some additional security beyond the usual SSL certificates.
741
 </p>
586
 </p>
765
 </p>
610
 </p>
766
 </div>
611
 </div>
767
 </div>
612
 </div>
768
-<div id="outline-container-org77d30ac" class="outline-4">
769
-<h4 id="org77d30ac">Using with Ubuntu</h4>
770
-<div class="outline-text-4" id="text-org77d30ac">
613
+<div id="outline-container-org26e4d0c" class="outline-4">
614
+<h4 id="org26e4d0c">Using with Ubuntu</h4>
615
+<div class="outline-text-4" id="text-org26e4d0c">
771
 <p>
616
 <p>
772
 The default XMPP client in Ubuntu is Empathy.  Using Empathy isn't as secure as using Jitsi, since it doesn't include the <i>off the record</i> feature, but since it's the default it's what many users will have easy access to.
617
 The default XMPP client in Ubuntu is Empathy.  Using Empathy isn't as secure as using Jitsi, since it doesn't include the <i>off the record</i> feature, but since it's the default it's what many users will have easy access to.
773
 </p>
618
 </p>
785
 </p>
630
 </p>
786
 </div>
631
 </div>
787
 </div>
632
 </div>
788
-<div id="outline-container-orgeba2ba7" class="outline-4">
789
-<h4 id="orgeba2ba7">Using Tor Messenger</h4>
790
-<div class="outline-text-4" id="text-orgeba2ba7">
633
+<div id="outline-container-org0d31b4f" class="outline-4">
634
+<h4 id="org0d31b4f">Using Tor Messenger</h4>
635
+<div class="outline-text-4" id="text-org0d31b4f">
791
 <p>
636
 <p>
792
 Tor Messenger is a messaging client which supports XMPP, and its onion routing enables you to protect the metadata of chat interactions to some extent by making it difficult for an adversary to know which server is talking to which. You can download Tor Messenger from <a href="https://torproject.org">torproject.org</a> and the setup is pretty simple.
637
 Tor Messenger is a messaging client which supports XMPP, and its onion routing enables you to protect the metadata of chat interactions to some extent by making it difficult for an adversary to know which server is talking to which. You can download Tor Messenger from <a href="https://torproject.org">torproject.org</a> and the setup is pretty simple.
793
 </p>
638
 </p>
794
 </div>
639
 </div>
795
 </div>
640
 </div>
796
-<div id="outline-container-orgab2ba25" class="outline-4">
797
-<h4 id="orgab2ba25">Using with Android/Conversations</h4>
798
-<div class="outline-text-4" id="text-orgab2ba25">
641
+<div id="outline-container-org205f4a5" class="outline-4">
642
+<h4 id="org205f4a5">Using with Android/Conversations</h4>
643
+<div class="outline-text-4" id="text-org205f4a5">
799
 <p>
644
 <p>
800
 Install <a href="https://f-droid.org/">F-Droid</a>
645
 Install <a href="https://f-droid.org/">F-Droid</a>
801
 </p>
646
 </p>
830
 </div>
675
 </div>
831
 </div>
676
 </div>
832
 </div>
677
 </div>
833
-<div id="outline-container-org4f4b967" class="outline-3">
834
-<h3 id="org4f4b967">Tox</h3>
835
-<div class="outline-text-3" id="text-org4f4b967">
678
+<div id="outline-container-orgd56650b" class="outline-3">
679
+<h3 id="orgd56650b">Tox</h3>
680
+<div class="outline-text-3" id="text-orgd56650b">
836
 <p>
681
 <p>
837
 Tox is an encrypted peer-to-peer messaging system and so should work without Freedombone. It uses a system of nodes which act as a sort of directory service allowing users to find and connect to each other. The Tox node ID on the Freedombone can be found within the README within your home directory. If you have other users connect to your node then you will be able to continue chatting even when no other nodes are available.
682
 Tox is an encrypted peer-to-peer messaging system and so should work without Freedombone. It uses a system of nodes which act as a sort of directory service allowing users to find and connect to each other. The Tox node ID on the Freedombone can be found within the README within your home directory. If you have other users connect to your node then you will be able to continue chatting even when no other nodes are available.
838
 </p>
683
 </p>
839
 </div>
684
 </div>
840
-<div id="outline-container-org1b76e54" class="outline-4">
841
-<h4 id="org1b76e54">Using the Toxic client</h4>
842
-<div class="outline-text-4" id="text-org1b76e54">
685
+<div id="outline-container-orga52b252" class="outline-4">
686
+<h4 id="orga52b252">Using the Toxic client</h4>
687
+<div class="outline-text-4" id="text-orga52b252">
843
 <p>
688
 <p>
844
 Log into your system with:
689
 Log into your system with:
845
 </p>
690
 </p>
862
 </div>
707
 </div>
863
 </div>
708
 </div>
864
 
709
 
865
-<div id="outline-container-org39c5c24" class="outline-3">
866
-<h3 id="org39c5c24">VoIP (Voice and text chat)</h3>
867
-<div class="outline-text-3" id="text-org39c5c24">
868
-</div><div id="outline-container-org29bf1bd" class="outline-4">
869
-<h4 id="org29bf1bd">Text chat</h4>
870
-<div class="outline-text-4" id="text-org29bf1bd">
710
+<div id="outline-container-orge804b5d" class="outline-3">
711
+<h3 id="orge804b5d">VoIP (Voice and text chat)</h3>
712
+<div class="outline-text-3" id="text-orge804b5d">
713
+</div><div id="outline-container-org3f66035" class="outline-4">
714
+<h4 id="org3f66035">Text chat</h4>
715
+<div class="outline-text-4" id="text-org3f66035">
871
 <p>
716
 <p>
872
 In addition to voice it is also possible to do text chat via mumble. The security of this is pretty good provided that you do it via Plumble and Orbot on mobile, but compared to other options such as XMPP/Conversations or Tox the security is not as good, since the mumble server currently doesn't support forward secrecy.
717
 In addition to voice it is also possible to do text chat via mumble. The security of this is pretty good provided that you do it via Plumble and Orbot on mobile, but compared to other options such as XMPP/Conversations or Tox the security is not as good, since the mumble server currently doesn't support forward secrecy.
873
 </p>
718
 </p>
874
 </div>
719
 </div>
875
 </div>
720
 </div>
876
-<div id="outline-container-orgdeb8d3a" class="outline-4">
877
-<h4 id="orgdeb8d3a">Using with Ubuntu</h4>
878
-<div class="outline-text-4" id="text-orgdeb8d3a">
721
+<div id="outline-container-org89b03bc" class="outline-4">
722
+<h4 id="org89b03bc">Using with Ubuntu</h4>
723
+<div class="outline-text-4" id="text-org89b03bc">
879
 <p>
724
 <p>
880
 Within the software center search for "mumble" and install the client then run it. Skip through the audio setup wizard.
725
 Within the software center search for "mumble" and install the client then run it. Skip through the audio setup wizard.
881
 </p>
726
 </p>
885
 </p>
730
 </p>
886
 </div>
731
 </div>
887
 </div>
732
 </div>
888
-<div id="outline-container-org1fc921a" class="outline-4">
889
-<h4 id="org1fc921a">Using with Android</h4>
890
-<div class="outline-text-4" id="text-org1fc921a">
733
+<div id="outline-container-org85a5327" class="outline-4">
734
+<h4 id="org85a5327">Using with Android</h4>
735
+<div class="outline-text-4" id="text-org85a5327">
891
 <p>
736
 <p>
892
 Install <a href="https://f-droid.org/">F-Droid</a>
737
 Install <a href="https://f-droid.org/">F-Droid</a>
893
 </p>
738
 </p>
922
 </div>
767
 </div>
923
 </div>
768
 </div>
924
 </div>
769
 </div>
925
-<div id="outline-container-org678aa32" class="outline-3">
926
-<h3 id="org678aa32">SIP phones</h3>
927
-<div class="outline-text-3" id="text-org678aa32">
770
+<div id="outline-container-org7b7a25c" class="outline-3">
771
+<h3 id="org7b7a25c">SIP phones</h3>
772
+<div class="outline-text-3" id="text-org7b7a25c">
928
 <p>
773
 <p>
929
 Freedombone also supports SIP phones The username and domain is the same as for your email address, and the SIP password and extension number will appear within the README file in your home directory. Various SIP client options are available, such as CSipSimple on Android and Jitsi on desktop or laptop machines. Ideally use clients which support ZRTP, which will provide the best level of security.
774
 Freedombone also supports SIP phones The username and domain is the same as for your email address, and the SIP password and extension number will appear within the README file in your home directory. Various SIP client options are available, such as CSipSimple on Android and Jitsi on desktop or laptop machines. Ideally use clients which support ZRTP, which will provide the best level of security.
930
 </p>
775
 </p>
931
 </div>
776
 </div>
932
-<div id="outline-container-org74168da" class="outline-4">
933
-<h4 id="org74168da">About ZRTP</h4>
934
-<div class="outline-text-4" id="text-org74168da">
777
+<div id="outline-container-orgbb92679" class="outline-4">
778
+<h4 id="orgbb92679">About ZRTP</h4>
779
+<div class="outline-text-4" id="text-orgbb92679">
935
 <p>
780
 <p>
936
 <a href="https://jitsi.org/Documentation/ZrtpFAQ">ZRTP</a> appears to be the current best standard to end-to-end encrypted voice calls, combining good security with simplicity of use. When the initial cryptographic negotiation between phones is done at the start of a call a short authentication string (SAS) is calculated and displayed at both ends. To check that there isn't anyone intercepting the call and acting as a <i>man in the middle</i> - as <a href="https://en.wikipedia.org/wiki/Stingray_phone_tracker">stingray type devices</a> try to do - the short authentication string can be read out and verbally confirmed between the callers. If it's the same then you can be pretty confident that the call is secure.
781
 <a href="https://jitsi.org/Documentation/ZrtpFAQ">ZRTP</a> appears to be the current best standard to end-to-end encrypted voice calls, combining good security with simplicity of use. When the initial cryptographic negotiation between phones is done at the start of a call a short authentication string (SAS) is calculated and displayed at both ends. To check that there isn't anyone intercepting the call and acting as a <i>man in the middle</i> - as <a href="https://en.wikipedia.org/wiki/Stingray_phone_tracker">stingray type devices</a> try to do - the short authentication string can be read out and verbally confirmed between the callers. If it's the same then you can be pretty confident that the call is secure.
937
 </p>
782
 </p>
938
 </div>
783
 </div>
939
 </div>
784
 </div>
940
-<div id="outline-container-org5a51525" class="outline-4">
941
-<h4 id="org5a51525">Using with CSIPSimple</h4>
942
-<div class="outline-text-4" id="text-org5a51525">
785
+<div id="outline-container-org8e84902" class="outline-4">
786
+<h4 id="org8e84902">Using with CSIPSimple</h4>
787
+<div class="outline-text-4" id="text-org8e84902">
943
 <p>
788
 <p>
944
 Add an account. Under <b>General Wizards</b> choose <b>Expert</b> and enter the following details:
789
 Add an account. Under <b>General Wizards</b> choose <b>Expert</b> and enter the following details:
945
 </p>
790
 </p>
995
 </p>
840
 </p>
996
 </div>
841
 </div>
997
 </div>
842
 </div>
998
-<div id="outline-container-org3a1fff5" class="outline-4">
999
-<h4 id="org3a1fff5">Using with Ring</h4>
1000
-<div class="outline-text-4" id="text-org3a1fff5">
843
+<div id="outline-container-org89e6c64" class="outline-4">
844
+<h4 id="org89e6c64">Using with Ring</h4>
845
+<div class="outline-text-4" id="text-org89e6c64">
1001
 <p>
846
 <p>
1002
 From the menu select <b>Manage accounts</b>.
847
 From the menu select <b>Manage accounts</b>.
1003
 </p>
848
 </p>
1050
 </div>
895
 </div>
1051
 </div>
896
 </div>
1052
 
897
 
1053
-<div id="outline-container-orgf076640" class="outline-2">
1054
-<h2 id="orgf076640">RSS Reader</h2>
1055
-<div class="outline-text-2" id="text-orgf076640">
898
+<div id="outline-container-org3eb0562" class="outline-2">
899
+<h2 id="org3eb0562">RSS Reader</h2>
900
+<div class="outline-text-2" id="text-org3eb0562">
1056
 <p>
901
 <p>
1057
 The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
902
 The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
1058
 </p>
903
 </p>
1064
 </div>
909
 </div>
1065
 </div>
910
 </div>
1066
 
911
 
1067
-<div id="outline-container-orgc718f45" class="outline-3">
1068
-<h3 id="orgc718f45">Finding the onion address</h3>
1069
-<div class="outline-text-3" id="text-orgc718f45">
912
+<div id="outline-container-org45ca393" class="outline-3">
913
+<h3 id="org45ca393">Finding the onion address</h3>
914
+<div class="outline-text-3" id="text-org45ca393">
1070
 <p>
915
 <p>
1071
 See the control panel for the RSS reader onion address.
916
 See the control panel for the RSS reader onion address.
1072
 </p>
917
 </p>
1090
 </div>
935
 </div>
1091
 </div>
936
 </div>
1092
 
937
 
1093
-<div id="outline-container-orgfebdb13" class="outline-3">
1094
-<h3 id="orgfebdb13">On mobile</h3>
1095
-<div class="outline-text-3" id="text-orgfebdb13">
938
+<div id="outline-container-org0814faa" class="outline-3">
939
+<h3 id="org0814faa">On mobile</h3>
940
+<div class="outline-text-3" id="text-org0814faa">
1096
 <p>
941
 <p>
1097
 To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
942
 To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
1098
 </p>
943
 </p>
1104
 </blockquote>
949
 </blockquote>
1105
 </div>
950
 </div>
1106
 </div>
951
 </div>
1107
-<div id="outline-container-orgac64c2b" class="outline-3">
1108
-<h3 id="orgac64c2b">With Emacs</h3>
1109
-<div class="outline-text-3" id="text-orgac64c2b">
952
+<div id="outline-container-org4f142b0" class="outline-3">
953
+<h3 id="org4f142b0">With Emacs</h3>
954
+<div class="outline-text-3" id="text-org4f142b0">
1110
 <p>
955
 <p>
1111
 If you are an Emacs user then you can also read your RSS feeds via the <a href="https://github.com/dk87/avandu">Avandu</a> mode.
956
 If you are an Emacs user then you can also read your RSS feeds via the <a href="https://github.com/dk87/avandu">Avandu</a> mode.
1112
 </p>
957
 </p>
1145
 </div>
990
 </div>
1146
 </div>
991
 </div>
1147
 </div>
992
 </div>
1148
-<div id="outline-container-org8b7fde8" class="outline-2">
1149
-<h2 id="org8b7fde8">Git Projects</h2>
1150
-<div class="outline-text-2" id="text-org8b7fde8">
993
+<div id="outline-container-org0140487" class="outline-2">
994
+<h2 id="org0140487">Git Projects</h2>
995
+<div class="outline-text-2" id="text-org0140487">
1151
 <p>
996
 <p>
1152
 Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens.
997
 Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens.
1153
 </p>
998
 </p>
1183
 </p>
1028
 </p>
1184
 </div>
1029
 </div>
1185
 </div>
1030
 </div>
1186
-<div id="outline-container-org0f48943" class="outline-2">
1187
-<h2 id="org0f48943">Adding or removing users</h2>
1188
-<div class="outline-text-2" id="text-org0f48943">
1031
+<div id="outline-container-org5c79868" class="outline-2">
1032
+<h2 id="org5c79868">Adding or removing users</h2>
1033
+<div class="outline-text-2" id="text-org5c79868">
1189
 <p>
1034
 <p>
1190
 Log into the system with:
1035
 Log into the system with:
1191
 </p>
1036
 </p>
1213
 </div>
1058
 </div>
1214
 </div>
1059
 </div>
1215
 
1060
 
1216
-<div id="outline-container-org99fb698" class="outline-2">
1217
-<h2 id="org99fb698">Blocking Ads</h2>
1218
-<div class="outline-text-2" id="text-org99fb698">
1061
+<div id="outline-container-orgf047482" class="outline-2">
1062
+<h2 id="orgf047482">Blocking Ads</h2>
1063
+<div class="outline-text-2" id="text-orgf047482">
1219
 <p>
1064
 <p>
1220
 Everyone except for advertisers hates adverts. Not only are they annoying, but they can consume a lot of bandwidth, be a privacy problem in terms of allowing companies to track your browsing habits and also any badly written scripts they contain may introduce exploitable security holes. Also if you're poor then adverts often make you want things that you can't have.
1065
 Everyone except for advertisers hates adverts. Not only are they annoying, but they can consume a lot of bandwidth, be a privacy problem in terms of allowing companies to track your browsing habits and also any badly written scripts they contain may introduce exploitable security holes. Also if you're poor then adverts often make you want things that you can't have.
1221
 </p>
1066
 </p>
1229
 </p>
1074
 </p>
1230
 </div>
1075
 </div>
1231
 
1076
 
1232
-<div id="outline-container-org36b0a42" class="outline-3">
1233
-<h3 id="org36b0a42">Set a static IP address</h3>
1234
-<div class="outline-text-3" id="text-org36b0a42">
1077
+<div id="outline-container-org9407dca" class="outline-3">
1078
+<h3 id="org9407dca">Set a static IP address</h3>
1079
+<div class="outline-text-3" id="text-org9407dca">
1235
 <p>
1080
 <p>
1236
 Ensure that your system has a static local IP address (typically 192.168..) using the option on the control panel. You will also need to know the IP address of your internet router, which is usually <b>192.168.1.1</b> or <b>192.168.1.254</b>.
1081
 Ensure that your system has a static local IP address (typically 192.168..) using the option on the control panel. You will also need to know the IP address of your internet router, which is usually <b>192.168.1.1</b> or <b>192.168.1.254</b>.
1237
 </p>
1082
 </p>
1242
 </div>
1087
 </div>
1243
 </div>
1088
 </div>
1244
 
1089
 
1245
-<div id="outline-container-orgf4ac5e0" class="outline-3">
1246
-<h3 id="orgf4ac5e0">On each client system within your local network</h3>
1247
-<div class="outline-text-3" id="text-orgf4ac5e0">
1090
+<div id="outline-container-org4309453" class="outline-3">
1091
+<h3 id="org4309453">On each client system within your local network</h3>
1092
+<div class="outline-text-3" id="text-org4309453">
1248
 <div class="org-src-container">
1093
 <div class="org-src-container">
1249
 <pre class="src src-bash">sudo chattr -i /etc/resolv.conf
1094
 <pre class="src src-bash">sudo chattr -i /etc/resolv.conf
1250
 sudo nano /etc/resolv.conf
1095
 sudo nano /etc/resolv.conf
1271
 </div>
1116
 </div>
1272
 </div>
1117
 </div>
1273
 
1118
 
1274
-<div id="outline-container-org9063cc0" class="outline-3">
1275
-<h3 id="org9063cc0">On your internet router</h3>
1276
-<div class="outline-text-3" id="text-org9063cc0">
1119
+<div id="outline-container-org22c1431" class="outline-3">
1120
+<h3 id="org22c1431">On your internet router</h3>
1121
+<div class="outline-text-3" id="text-org22c1431">
1277
 <p>
1122
 <p>
1278
 If you can access the settings on your local internet router then this is the simplest way to provide ad blocking for all devices which connect to it. Unfortunately some router models don't let you edit the DNS settings and if that's the case you might want to consider getting a different router.
1123
 If you can access the settings on your local internet router then this is the simplest way to provide ad blocking for all devices which connect to it. Unfortunately some router models don't let you edit the DNS settings and if that's the case you might want to consider getting a different router.
1279
 </p>
1124
 </p>
1283
 </p>
1128
 </p>
1284
 </div>
1129
 </div>
1285
 
1130
 
1286
-<div id="outline-container-org1b0b157" class="outline-4">
1287
-<h4 id="org1b0b157">LibreCMC</h4>
1288
-<div class="outline-text-4" id="text-org1b0b157">
1131
+<div id="outline-container-org6c4afef" class="outline-4">
1132
+<h4 id="org6c4afef">LibreCMC</h4>
1133
+<div class="outline-text-4" id="text-org6c4afef">
1289
 <p>
1134
 <p>
1290
 On a router running LibreCMC from the <b>Network</b> menu select <b>DHCP and DNS</b>. Enter the static IP address of your Freedombone system within <b>DNS Forwardings</b>, then at the bottom of the page click on <b>Save &amp; Apply</b>. Any devices which connect to your router will now have ad blocking.
1135
 On a router running LibreCMC from the <b>Network</b> menu select <b>DHCP and DNS</b>. Enter the static IP address of your Freedombone system within <b>DNS Forwardings</b>, then at the bottom of the page click on <b>Save &amp; Apply</b>. Any devices which connect to your router will now have ad blocking.
1291
 </p>
1136
 </p>
1293
 </div>
1138
 </div>
1294
 </div>
1139
 </div>
1295
 
1140
 
1296
-<div id="outline-container-org116997a" class="outline-3">
1297
-<h3 id="org116997a">Configuring block lists</h3>
1298
-<div class="outline-text-3" id="text-org116997a">
1141
+<div id="outline-container-org987a1ad" class="outline-3">
1142
+<h3 id="org987a1ad">Configuring block lists</h3>
1143
+<div class="outline-text-3" id="text-org987a1ad">
1299
 <p>
1144
 <p>
1300
 You can configure the block lists which the system uses by going to the <b>administrator control panel</b>, selecting <b>App Settings</b> then choosing <b>pihole</b>. You can also add any extra domain names to the whitelist if they're being wrongly blocked or to the blacklist if they're not blocked by the current lists.
1145
 You can configure the block lists which the system uses by going to the <b>administrator control panel</b>, selecting <b>App Settings</b> then choosing <b>pihole</b>. You can also add any extra domain names to the whitelist if they're being wrongly blocked or to the blacklist if they're not blocked by the current lists.
1301
 </p>
1146
 </p>