Ver código fonte

Merge branch 'stretch' of https://github.com/bashrc/freedombone

Bob Mottram 7 anos atrás
pai
commit
be948f2396

+ 1
- 1
README.md Ver arquivo

@@ -2,7 +2,7 @@
2 2
 
3 3
 > _"With the increasing move of our computing to cloud infrastructures, we give up the control of our computing to the managers of those infrastructures. Our terminals (laptops, desktops) might now be running entirely on Free Software, but this is increasingly irrelevant given that most of what actually matters gets executed on a remote closed system that we don’t control. The Free Software community needs to work to help users keep the control of all their computing, by developing suitable alternatives and facilitating their deployment."_ -- Lucas Nussbaum
4 4
 
5
-<img src="https://github.com/bashrc/freedombone/blob/master/img/beaglebone_logo.jpg?raw=true" width=800/>
5
+<img src="https://github.com/bashrc/freedombone/blob/master/img/bbb_above.jpg?raw=true" width=800/>
6 6
 
7 7
 So you want to run your own internet services? Email, chat, VoIP, web sites, file synchronisation, wikis, blogs, social networks, media hosting, backups, VPN. Freedombone enables you to do all of that in a self-hosted way, where you keep control of your data and it resides in your own home.
8 8
 

+ 3
- 5
doc/EN/app_pleroma.org Ver arquivo

@@ -10,11 +10,9 @@
10 10
 [[file:images/logo.png]]
11 11
 #+END_CENTER
12 12
 
13
-#+BEGIN_EXPORT html
14
-<center>
15
-<h1>Pleroma</h1>
16
-</center>
17
-#+END_EXPORT
13
+#+BEGIN_CENTER
14
+[[file:images/pleroma-logo.png]]
15
+#+END_CENTER
18 16
 
19 17
 Pleroma is an OStatus-compatible social networking server, compatible with GNU Social, PostActiv and Mastodon. It is high-performance and so is especially well suited for running on low power single board computers without much RAM.
20 18
 

+ 5
- 0
doc/EN/faq.org Ver arquivo

@@ -17,6 +17,11 @@
17 17
 #+END_EXPORT
18 18
 
19 19
 #+BEGIN_CENTER
20
+[[file:images/surveillanceoptions.jpg]]
21
+/Possible options for dealing with bulk surveillance at The Glass Room exhibition, 2017/
22
+#+END_CENTER
23
+
24
+#+BEGIN_CENTER
20 25
 #+ATTR_HTML: :border -1
21 26
 | [[What applications are supported?]]                                                          |
22 27
 | [[I don't have a static IP address. Can I still install this system?]]                        |

BIN
img/pleroma-logo.png Ver arquivo


BIN
img/surveillanceoptions.jpg Ver arquivo


+ 102
- 5
src/freedombone-app-pleroma Ver arquivo

@@ -386,6 +386,99 @@ function pleroma_disable_registrations {
386 386
     pleroma_recompile
387 387
 }
388 388
 
389
+function pleroma_add_emoji {
390
+    emoji_resolution='128x128'
391
+
392
+    data=$(tempfile 2>/dev/null)
393
+    trap "rm -f $data" 0 1 2 5 15
394
+    dialog --backtitle $"Freedombone Control Panel" \
395
+           --title $"Add Custom Emoji" \
396
+           --form "\n" 8 75 2 \
397
+           $"Shortcode:" 1 1 "" 1 18 16 15 \
398
+           $"ImageURL:" 2 1 "" 2 18 512 10000 \
399
+           2> $data
400
+    sel=$?
401
+    case $sel in
402
+        1) return;;
403
+        255) return;;
404
+    esac
405
+    shortcode=$(cat $data | sed -n 1p)
406
+    image_url=$(cat $data | sed -n 2p)
407
+    rm $data
408
+    if [ ${#shortcode} -lt 2 ]; then
409
+        return
410
+    fi
411
+    if [ ${#image_url} -lt 2 ]; then
412
+        return
413
+    fi
414
+    if [[ "$image_url" != *'.'* ]]; then
415
+        return
416
+    fi
417
+    if [[ "$image_url" != *'.png' && "$image_url" != *'.jpg' && "$image_url" != *'.jpeg' && "$image_url" != *'.gif' ]]; then
418
+        dialog --title $"Add Custom Emoji" \
419
+               --msgbox $"The image must be png/jpg/gif format" 6 60
420
+        return
421
+    fi
422
+    if [[ "$shortcode" == *':'* || "$shortcode" == *' '* || "$shortcode" == *'.'* || "$shortcode" == *'!'* ]]; then
423
+        dialog --title $"Add Custom Emoji" \
424
+               --msgbox $"The shortcode contains invalid characters" 6 60
425
+        return
426
+    fi
427
+
428
+    image_extension='png'
429
+    if [[ "$image_url" == *'.jpg' || "$image_url" == *'.jpeg' ]]; then
430
+        image_extension='jpg'
431
+    fi
432
+    if [[ "$image_url" == *'.gif' ]]; then
433
+        image_extension='gif'
434
+    fi
435
+
436
+    if [ ! -d $PLEROMA_DIR/priv/static/emoji ]; then
437
+        mkdir -p $PLEROMA_DIR/priv/static/emoji
438
+    fi
439
+
440
+    image_filename=$PLEROMA_DIR/priv/static/emoji/${shortcode}.${image_extension}
441
+    wget "$image_url" -O $image_filename
442
+    if [ ! -f $image_filename ]; then
443
+        dialog --title $"Add Custom Emoji" \
444
+               --msgbox $"Unable to download the image" 6 60
445
+        return
446
+    fi
447
+
448
+    if [[ "$image_url" == *'.jpg' || "$image_url" == *'.jpeg' || "$image_url" == *'.gif' ]]; then
449
+        convert $image_filename -resize $emoji_resolution $PLEROMA_DIR/priv/static/emoji/${shortcode}.png
450
+        if [ ! -f $PLEROMA_DIR/priv/static/emoji/${shortcode}.png ]; then
451
+            dialog --title $"Add Custom Emoji" \
452
+                   --msgbox $"Unable to convert empji image to png format" 6 60
453
+            return
454
+        fi
455
+
456
+        # remove the original
457
+        rm $image_filename
458
+
459
+        image_extension='png'
460
+        image_filename=$PLEROMA_DIR/priv/static/emoji/${shortcode}.${image_extension}
461
+    else
462
+        convert $image_filename -resize $emoji_resolution $image_filename
463
+    fi
464
+
465
+    if ! grep -q "${shortcode}," $PLEROMA_DIR/config/emoji.txt; then
466
+        echo "${shortcode}, /emoji/${shortcode}.${image_extension}" >> $PLEROMA_DIR/config/emoji.txt
467
+    else
468
+        sed -i "s|${shortcode},.*|${shortcode}, /emoji/${shortcode}.${image_extension}|g" $PLEROMA_DIR/config/emoji.txt
469
+    fi
470
+
471
+    chown -R pleroma:pleroma $PLEROMA_DIR
472
+    clear
473
+    echo ''
474
+    echo $'Recompiling Pleroma with the new emoji'
475
+    systemctl stop pleroma
476
+    pleroma_recompile
477
+
478
+    dialog --title $"Add Custom Emoji" \
479
+           --msgbox $"Custom emoji :${shortcode}: has been added" 6 70
480
+}
481
+
389 482
 function configure_interactive_pleroma {
390 483
     read_config_param PLEROMA_EXPIRE_MONTHS
391 484
     while true
@@ -394,12 +487,13 @@ function configure_interactive_pleroma {
394 487
         trap "rm -f $data" 0 1 2 5 15
395 488
         dialog --backtitle $"Freedombone Control Panel" \
396 489
                --title $"Pleroma" \
397
-               --radiolist $"Choose an operation:" 14 70 5 \
490
+               --radiolist $"Choose an operation:" 15 70 6 \
398 491
                1 $"Set a background image" off \
399 492
                2 $"Set the title" off \
400 493
                3 $"Disable new account registrations" off \
401
-               4 $"Set post expiry period (currently $PLEROMA_EXPIRE_MONTHS months)" off \
402
-               5 $"Exit" on 2> $data
494
+               4 $"Add a custom emoji" off \
495
+               5 $"Set post expiry period (currently $PLEROMA_EXPIRE_MONTHS months)" off \
496
+               6 $"Exit" on 2> $data
403 497
         sel=$?
404 498
         case $sel in
405 499
             1) return;;
@@ -409,8 +503,9 @@ function configure_interactive_pleroma {
409 503
             1) pleroma_set_background_image;;
410 504
             2) pleroma_set_title;;
411 505
             3) pleroma_disable_registrations;;
412
-            4) pleroma_set_expire_months;;
413
-            5) break;;
506
+            4) pleroma_add_emoji;;
507
+            5) pleroma_set_expire_months;;
508
+            6) break;;
414 509
         esac
415 510
         rm $data
416 511
     done
@@ -606,6 +701,8 @@ function install_pleroma {
606 701
         ONION_ONLY='no'
607 702
     fi
608 703
 
704
+    apt-get -yq install wget imagemagick
705
+
609 706
     # We need elixir 1.4+ here, so the debian repo package won't do
610 707
     install_elixir
611 708
 

+ 0
- 1
src/freedombone-utils-postgresql Ver arquivo

@@ -120,7 +120,6 @@ function run_query_postgresql_with_output {
120 120
     database_name=$1
121 121
     database_query=$2
122 122
     output=$(sudo -u postgres psql -d $database_name -c << EOF
123
-use $database_name;
124 123
 $database_query
125 124
 EOF
126 125
 )

+ 14
- 10
website/EN/app_pleroma.html Ver arquivo

@@ -3,7 +3,7 @@
3 3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 5
 <head>
6
-<!-- 2017-11-08 Wed 14:34 -->
6
+<!-- 2017-11-10 Fri 17:42 -->
7 7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9 9
 <title>&lrm;</title>
@@ -244,9 +244,13 @@ for the JavaScript code in this tag.
244 244
 </div>
245 245
 </div>
246 246
 
247
-<center>
248
-<h1>Pleroma</h1>
249
-</center>
247
+<div class="org-center">
248
+
249
+<div class="figure">
250
+<p><img src="images/pleroma-logo.png" alt="pleroma-logo.png" />
251
+</p>
252
+</div>
253
+</div>
250 254
 
251 255
 <p>
252 256
 Pleroma is an OStatus-compatible social networking server, compatible with GNU Social, PostActiv and Mastodon. It is high-performance and so is especially well suited for running on low power single board computers without much RAM.
@@ -260,9 +264,9 @@ Pleroma is an OStatus-compatible social networking server, compatible with GNU S
260 264
 </div>
261 265
 </div>
262 266
 
263
-<div id="outline-container-org7600aa0" class="outline-2">
264
-<h2 id="org7600aa0">Installation</h2>
265
-<div class="outline-text-2" id="text-org7600aa0">
267
+<div id="outline-container-org630bbcf" class="outline-2">
268
+<h2 id="org630bbcf">Installation</h2>
269
+<div class="outline-text-2" id="text-org630bbcf">
266 270
 <p>
267 271
 Log into your system with:
268 272
 </p>
@@ -282,9 +286,9 @@ Select <b>Add/Remove Apps</b> then <b>pleroma</b>. You will then be asked for a
282 286
 </div>
283 287
 </div>
284 288
 
285
-<div id="outline-container-orgf115794" class="outline-2">
286
-<h2 id="orgf115794">Initial setup</h2>
287
-<div class="outline-text-2" id="text-orgf115794">
289
+<div id="outline-container-org703cfb4" class="outline-2">
290
+<h2 id="org703cfb4">Initial setup</h2>
291
+<div class="outline-text-2" id="text-org703cfb4">
288 292
 <p>
289 293
 The first thing you'll need to do is register a new account. You can set your profile details and profile image by selecting the small settings icon to the right of your name.
290 294
 </p>

+ 166
- 159
website/EN/faq.html Ver arquivo

@@ -3,10 +3,10 @@
3 3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 5
 <head>
6
-<!-- 2017-09-15 Fri 10:29 -->
6
+<!-- 2017-11-11 Sat 18:24 -->
7 7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9
-<title></title>
9
+<title>&lrm;</title>
10 10
 <meta name="generator" content="Org mode" />
11 11
 <meta name="author" content="Bob Mottram" />
12 12
 <meta name="description" content="Frequently asked questions"
@@ -249,6 +249,13 @@ for the JavaScript code in this tag.
249 249
 </center>
250 250
 
251 251
 <div class="org-center">
252
+<p>
253
+<img src="images/surveillanceoptions.jpg" alt="surveillanceoptions.jpg" />
254
+<i>Possible options for dealing with bulk surveillance at The Glass Room exhibition, 2017</i>
255
+</p>
256
+</div>
257
+
258
+<div class="org-center">
252 259
 <table border="-1" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
253 260
 
254 261
 
@@ -257,39 +264,39 @@ for the JavaScript code in this tag.
257 264
 </colgroup>
258 265
 <tbody>
259 266
 <tr>
260
-<td class="org-left"><a href="#orgbbb3441">What applications are supported?</a></td>
267
+<td class="org-left"><a href="#orgf3ee5ce">What applications are supported?</a></td>
261 268
 </tr>
262 269
 
263 270
 <tr>
264
-<td class="org-left"><a href="#orgd634a7c">I don't have a static IP address. Can I still install this system?</a></td>
271
+<td class="org-left"><a href="#orgec76339">I don't have a static IP address. Can I still install this system?</a></td>
265 272
 </tr>
266 273
 
267 274
 <tr>
268
-<td class="org-left"><a href="#org88331dc">Why Freedombone and not FreedomBox?</a></td>
275
+<td class="org-left"><a href="#org2da13bd">Why Freedombone and not FreedomBox?</a></td>
269 276
 </tr>
270 277
 
271 278
 <tr>
272
-<td class="org-left"><a href="#orgc55c3a9">Why not support building images for Raspberry Pi?</a></td>
279
+<td class="org-left"><a href="#orgd530659">Why not support building images for Raspberry Pi?</a></td>
273 280
 </tr>
274 281
 
275 282
 <tr>
276
-<td class="org-left"><a href="#orga017b02">Why use Tor? I've heard it's used by bad people</a></td>
283
+<td class="org-left"><a href="#org4bb2842">Why use Tor? I've heard it's used by bad people</a></td>
277 284
 </tr>
278 285
 
279 286
 <tr>
280
-<td class="org-left"><a href="#org249c744">How is Tor integrated with Freedombone?</a></td>
287
+<td class="org-left"><a href="#org8f15beb">How is Tor integrated with Freedombone?</a></td>
281 288
 </tr>
282 289
 
283 290
 <tr>
284
-<td class="org-left"><a href="#org7cecca6">Can I add a clearnet domain to an onion build?</a></td>
291
+<td class="org-left"><a href="#orgd33d165">Can I add a clearnet domain to an onion build?</a></td>
285 292
 </tr>
286 293
 
287 294
 <tr>
288
-<td class="org-left"><a href="#org851c64e">Why use Github?</a></td>
295
+<td class="org-left"><a href="#org8e4a27d">Why use Github?</a></td>
289 296
 </tr>
290 297
 
291 298
 <tr>
292
-<td class="org-left"><a href="#orgf317597">Keys and emails should not be stored on servers. Why do you do that?</a></td>
299
+<td class="org-left"><a href="#org3cd5f2c">Keys and emails should not be stored on servers. Why do you do that?</a></td>
293 300
 </tr>
294 301
 
295 302
 <tr>
@@ -297,103 +304,103 @@ for the JavaScript code in this tag.
297 304
 </tr>
298 305
 
299 306
 <tr>
300
-<td class="org-left"><a href="#org01f5e64">Why can't I access my .onion site with a Tor browser?</a></td>
307
+<td class="org-left"><a href="#org97f01de">Why can't I access my .onion site with a Tor browser?</a></td>
301 308
 </tr>
302 309
 
303 310
 <tr>
304
-<td class="org-left"><a href="#org38cbf46">What is the best hardware to run this system on?</a></td>
311
+<td class="org-left"><a href="#org49504c7">What is the best hardware to run this system on?</a></td>
305 312
 </tr>
306 313
 
307 314
 <tr>
308
-<td class="org-left"><a href="#orgcce0278">Can I add more users to the system?</a></td>
315
+<td class="org-left"><a href="#orgf3e781c">Can I add more users to the system?</a></td>
309 316
 </tr>
310 317
 
311 318
 <tr>
312
-<td class="org-left"><a href="#org101140b">Why not use Signal for mobile chat?</a></td>
319
+<td class="org-left"><a href="#orgb408729">Why not use Signal for mobile chat?</a></td>
313 320
 </tr>
314 321
 
315 322
 <tr>
316
-<td class="org-left"><a href="#org8b50dde">What is the most secure chat app to use on mobile?</a></td>
323
+<td class="org-left"><a href="#orgd117b08">What is the most secure chat app to use on mobile?</a></td>
317 324
 </tr>
318 325
 
319 326
 <tr>
320
-<td class="org-left"><a href="#org20eaffc">How do I remove a user from the system?</a></td>
327
+<td class="org-left"><a href="#orgb5b2126">How do I remove a user from the system?</a></td>
321 328
 </tr>
322 329
 
323 330
 <tr>
324
-<td class="org-left"><a href="#org209f0d6">Why is logging for web sites turned off by default?</a></td>
331
+<td class="org-left"><a href="#org1ab944e">Why is logging for web sites turned off by default?</a></td>
325 332
 </tr>
326 333
 
327 334
 <tr>
328
-<td class="org-left"><a href="#orga16e12a">How do I reset the tripwire?</a></td>
335
+<td class="org-left"><a href="#org576c1da">How do I reset the tripwire?</a></td>
329 336
 </tr>
330 337
 
331 338
 <tr>
332
-<td class="org-left"><a href="#orgf085eb1">Is metadata protected?</a></td>
339
+<td class="org-left"><a href="#org575438d">Is metadata protected?</a></td>
333 340
 </tr>
334 341
 
335 342
 <tr>
336
-<td class="org-left"><a href="#org20694ec">How do I create email processing rules?</a></td>
343
+<td class="org-left"><a href="#org249cb8e">How do I create email processing rules?</a></td>
337 344
 </tr>
338 345
 
339 346
 <tr>
340
-<td class="org-left"><a href="#orgf194d33">Why isn't dynamic DNS working?</a></td>
347
+<td class="org-left"><a href="#org0026d12">Why isn't dynamic DNS working?</a></td>
341 348
 </tr>
342 349
 
343 350
 <tr>
344
-<td class="org-left"><a href="#org04c8e6a">How do I change my encryption settings?</a></td>
351
+<td class="org-left"><a href="#orgcf9314c">How do I change my encryption settings?</a></td>
345 352
 </tr>
346 353
 
347 354
 <tr>
348
-<td class="org-left"><a href="#org4756925">How do I get a domain name?</a></td>
355
+<td class="org-left"><a href="#org623845a">How do I get a domain name?</a></td>
349 356
 </tr>
350 357
 
351 358
 <tr>
352
-<td class="org-left"><a href="#org0580486">How do I get a "real" SSL/TLS/HTTPS certificate?</a></td>
359
+<td class="org-left"><a href="#org80ee241">How do I get a "real" SSL/TLS/HTTPS certificate?</a></td>
353 360
 </tr>
354 361
 
355 362
 <tr>
356
-<td class="org-left"><a href="#org689608f">How do I renew a Let's Encrypt certificate?</a></td>
363
+<td class="org-left"><a href="#org8b85e62">How do I renew a Let's Encrypt certificate?</a></td>
357 364
 </tr>
358 365
 
359 366
 <tr>
360
-<td class="org-left"><a href="#org00c9fac">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</a></td>
367
+<td class="org-left"><a href="#org6aba810">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</a></td>
361 368
 </tr>
362 369
 
363 370
 <tr>
364
-<td class="org-left"><a href="#org7f1159a">Why not use the services of $company instead? They took the Seppuku pledge</a></td>
371
+<td class="org-left"><a href="#orgc65717c">Why not use the services of $company instead? They took the Seppuku pledge</a></td>
365 372
 </tr>
366 373
 
367 374
 <tr>
368
-<td class="org-left"><a href="#org5459287">Why does my email keep getting rejected as spam by Gmail/etc?</a></td>
375
+<td class="org-left"><a href="#org76affcf">Why does my email keep getting rejected as spam by Gmail/etc?</a></td>
369 376
 </tr>
370 377
 
371 378
 <tr>
372
-<td class="org-left"><a href="#org108fab6">Tor is censored/blocked in my area. What can I do?</a></td>
379
+<td class="org-left"><a href="#org93992f5">Tor is censored/blocked in my area. What can I do?</a></td>
373 380
 </tr>
374 381
 
375 382
 <tr>
376
-<td class="org-left"><a href="#orgaeeac02">I want to block a particular domain from getting its content into my social network sites</a></td>
383
+<td class="org-left"><a href="#org92ebfd1">I want to block a particular domain from getting its content into my social network sites</a></td>
377 384
 </tr>
378 385
 
379 386
 <tr>
380
-<td class="org-left"><a href="#orgfefb387">The mesh system doesn't boot from USB drive</a></td>
387
+<td class="org-left"><a href="#orgd38ad08">The mesh system doesn't boot from USB drive</a></td>
381 388
 </tr>
382 389
 </tbody>
383 390
 </table>
384 391
 </div>
385 392
 
386
-<div id="outline-container-orgbbb3441" class="outline-2">
387
-<h2 id="orgbbb3441">What applications are supported?</h2>
388
-<div class="outline-text-2" id="text-orgbbb3441">
393
+<div id="outline-container-orgf3ee5ce" class="outline-2">
394
+<h2 id="orgf3ee5ce">What applications are supported?</h2>
395
+<div class="outline-text-2" id="text-orgf3ee5ce">
389 396
 <p>
390 397
 <a href="./apps.html">See here</a> for the complete list of apps. In addition to those as part of the base install you get an email server.
391 398
 </p>
392 399
 </div>
393 400
 </div>
394
-<div id="outline-container-orgd634a7c" class="outline-2">
395
-<h2 id="orgd634a7c">I don't have a static IP address. Can I still install this system?</h2>
396
-<div class="outline-text-2" id="text-orgd634a7c">
401
+<div id="outline-container-orgec76339" class="outline-2">
402
+<h2 id="orgec76339">I don't have a static IP address. Can I still install this system?</h2>
403
+<div class="outline-text-2" id="text-orgec76339">
397 404
 <p>
398 405
 Yes. The minimum requirements are to have some hardware that you can install Debian onto and also that you have administrator access to your internet router so that you can forward ports to the system which has Freedombone installed.
399 406
 </p>
@@ -403,17 +410,17 @@ The lack of a static IP address can be worked around by using a dynamic DNS serv
403 410
 </p>
404 411
 </div>
405 412
 </div>
406
-<div id="outline-container-org88331dc" class="outline-2">
407
-<h2 id="org88331dc">Why Freedombone and not FreedomBox?</h2>
408
-<div class="outline-text-2" id="text-org88331dc">
413
+<div id="outline-container-org2da13bd" class="outline-2">
414
+<h2 id="org2da13bd">Why Freedombone and not FreedomBox?</h2>
415
+<div class="outline-text-2" id="text-org2da13bd">
409 416
 <p>
410 417
 When the project began in late 2013 the FreedomBox project seemed to be going nowhere, and was only designed to work with the DreamPlug hardware. There was some new hardware out - the Beaglebone Black - which could run Debian and was also a free hardware design so seemed more appropriate. Hence the name "Freedombone", being like FreedomBox but on a Beaglebone. There are some similarities and differences between the two projects:
411 418
 </p>
412 419
 </div>
413 420
 
414
-<div id="outline-container-org2f730a6" class="outline-3">
415
-<h3 id="org2f730a6">Similarities</h3>
416
-<div class="outline-text-3" id="text-org2f730a6">
421
+<div id="outline-container-orgfb1ae01" class="outline-3">
422
+<h3 id="orgfb1ae01">Similarities</h3>
423
+<div class="outline-text-3" id="text-orgfb1ae01">
417 424
 <ul class="org-ul">
418 425
 <li>Uses freedom-maker and vmdebootstrap to build debian images</li>
419 426
 <li>Supports the use of Tor onion addresses to access websites</li>
@@ -427,9 +434,9 @@ When the project began in late 2013 the FreedomBox project seemed to be going no
427 434
 </ul>
428 435
 </div>
429 436
 </div>
430
-<div id="outline-container-org54e066a" class="outline-3">
431
-<h3 id="org54e066a">Differences</h3>
432
-<div class="outline-text-3" id="text-org54e066a">
437
+<div id="outline-container-orgea61850" class="outline-3">
438
+<h3 id="orgea61850">Differences</h3>
439
+<div class="outline-text-3" id="text-orgea61850">
433 440
 <ul class="org-ul">
434 441
 <li>FreedomBox is a Debian pure blend. Freedombone is not</li>
435 442
 <li>Freedombone only supports Free Software. FreedomBox includes some closed binary boot blobs for certain ARM boards</li>
@@ -444,9 +451,9 @@ When the project began in late 2013 the FreedomBox project seemed to be going no
444 451
 </div>
445 452
 </div>
446 453
 </div>
447
-<div id="outline-container-orgc55c3a9" class="outline-2">
448
-<h2 id="orgc55c3a9">Why not support building images for Raspberry Pi?</h2>
449
-<div class="outline-text-2" id="text-orgc55c3a9">
454
+<div id="outline-container-orgd530659" class="outline-2">
455
+<h2 id="orgd530659">Why not support building images for Raspberry Pi?</h2>
456
+<div class="outline-text-2" id="text-orgd530659">
450 457
 <p>
451 458
 The FreedomBox project supports Raspberry Pi builds, and the image build system for Freedombone is based on the same system. However, although the Raspberry Pi can run a version of Debian it requires a closed proprietary blob in order to boot the hardware. Who knows what that blob might contain or what exploits it could facilitate. From an adversarial point of view if you were trying to deliver "bulk equipment interference" then it doesn't get any better than piggybacking on something which has control of the boot process, and hence all subsequently run processes.
452 459
 </p>
@@ -456,9 +463,9 @@ So although the Raspberry Pi is cheap and hugely popular it's not supported by t
456 463
 </p>
457 464
 </div>
458 465
 </div>
459
-<div id="outline-container-orga017b02" class="outline-2">
460
-<h2 id="orga017b02">Why use Tor? I've heard it's used by bad people</h2>
461
-<div class="outline-text-2" id="text-orga017b02">
466
+<div id="outline-container-org4bb2842" class="outline-2">
467
+<h2 id="org4bb2842">Why use Tor? I've heard it's used by bad people</h2>
468
+<div class="outline-text-2" id="text-org4bb2842">
462 469
 <p>
463 470
 Before you run screaming for the hills based upon whatever scare story you may have just read in the mainstream media there are a few things worthy of consideration. Tor is installed by default on Freedombone, <i>but not as a relay or exit node</i>. It's only used to provide onion addresses so that this gives you or the viewers of your sites some choice about how they access the information. It also allows you to subscribe to and read RSS feeds privately.
464 471
 </p>
@@ -476,9 +483,9 @@ The media may also have sold you torrid tales about individual Tor project devel
476 483
 </p>
477 484
 </div>
478 485
 </div>
479
-<div id="outline-container-org249c744" class="outline-2">
480
-<h2 id="org249c744">How is Tor integrated with Freedombone?</h2>
481
-<div class="outline-text-2" id="text-org249c744">
486
+<div id="outline-container-org8f15beb" class="outline-2">
487
+<h2 id="org8f15beb">How is Tor integrated with Freedombone?</h2>
488
+<div class="outline-text-2" id="text-org8f15beb">
482 489
 <p>
483 490
 Within this project Tor is used more to provide <i>accessibility</i> than the <i>anonymity</i> factor for which Tor is better known. The onion address system provides a way of being able to access sites even if you don't own a conventional domain name or don't have administrator access to your local internet router to be able to do port forwarding.
484 491
 </p>
@@ -496,17 +503,17 @@ Even if you're running the "onion only" build, this only means that sites are ac
496 503
 </p>
497 504
 </div>
498 505
 </div>
499
-<div id="outline-container-org7cecca6" class="outline-2">
500
-<h2 id="org7cecca6">Can I add a clearnet domain to an onion build?</h2>
501
-<div class="outline-text-2" id="text-org7cecca6">
506
+<div id="outline-container-orgd33d165" class="outline-2">
507
+<h2 id="orgd33d165">Can I add a clearnet domain to an onion build?</h2>
508
+<div class="outline-text-2" id="text-orgd33d165">
502 509
 <p>
503 510
 You could if you manually edited the relevant nginx configuration files and installed some dynamic DNS system yourself. If you already have sysadmin knowledge then that's probably not too hard. But the builds created with the <b>onion-addresses-only</b> option aren't really intended to support access via clearnet domains.
504 511
 </p>
505 512
 </div>
506 513
 </div>
507
-<div id="outline-container-org851c64e" class="outline-2">
508
-<h2 id="org851c64e">Why use Github?</h2>
509
-<div class="outline-text-2" id="text-org851c64e">
514
+<div id="outline-container-org8e4a27d" class="outline-2">
515
+<h2 id="org8e4a27d">Why use Github?</h2>
516
+<div class="outline-text-2" id="text-org8e4a27d">
510 517
 <p>
511 518
 Github is paradoxically a centralized, closed and proprietary system which happens to mostly host free and open source projects. Up until now it has been relatively benign, but at some point in the name of "growth" it will likely start becoming more evil, or just become like SourceForge - which was also once much loved by FOSS developers, but turned into a den of malvertizing.
512 519
 </p>
@@ -524,9 +531,9 @@ Currently many of the repositories used for applications which are not yet packa
524 531
 </p>
525 532
 </div>
526 533
 </div>
527
-<div id="outline-container-orgf317597" class="outline-2">
528
-<h2 id="orgf317597">Keys and emails should not be stored on servers. Why do you do that?</h2>
529
-<div class="outline-text-2" id="text-orgf317597">
534
+<div id="outline-container-org3cd5f2c" class="outline-2">
535
+<h2 id="org3cd5f2c">Keys and emails should not be stored on servers. Why do you do that?</h2>
536
+<div class="outline-text-2" id="text-org3cd5f2c">
530 537
 <p>
531 538
 Ordinarily this is good advice. However, the threat model for a device in your home is different from the one for a generic server in a massive warehouse. Compare and contrast:
532 539
 </p>
@@ -584,9 +591,9 @@ In the home environment a box with a good firewall and no GUI components install
584 591
 </div>
585 592
 </div>
586 593
 
587
-<div id="outline-container-org01f5e64" class="outline-2">
588
-<h2 id="org01f5e64">Why can't I access my .onion site with a Tor browser?</h2>
589
-<div class="outline-text-2" id="text-org01f5e64">
594
+<div id="outline-container-org97f01de" class="outline-2">
595
+<h2 id="org97f01de">Why can't I access my .onion site with a Tor browser?</h2>
596
+<div class="outline-text-2" id="text-org97f01de">
590 597
 <p>
591 598
 Probably you need to add the site to the NoScript whitelist. Typically click/press on the noscript icon (or select from the menu on mobile) then select <i>whitelist</i> and add the site URL. You may also need to disable HTTPS Everywhere when using onion addresses, which don't use https.
592 599
 </p>
@@ -596,9 +603,9 @@ Another factor to be aware of is that it can take a while for the onion address
596 603
 </p>
597 604
 </div>
598 605
 </div>
599
-<div id="outline-container-org38cbf46" class="outline-2">
600
-<h2 id="org38cbf46">What is the best hardware to run this system on?</h2>
601
-<div class="outline-text-2" id="text-org38cbf46">
606
+<div id="outline-container-org49504c7" class="outline-2">
607
+<h2 id="org49504c7">What is the best hardware to run this system on?</h2>
608
+<div class="outline-text-2" id="text-org49504c7">
602 609
 <p>
603 610
 It was originally designed to run on the Beaglebone Black, but that should be regarded as the most minimal system, because it's single core and has by today's standards a small amount of memory. Obviously the more powerful the hardware is the faster things like web pages (blog, social networking, etc) will be served but the more electricity such a system will require if you're running it 24/7. A good compromise between performance and energy consumption is something like an old netbook. The battery of an old netbook or laptop even gives you <a href="https://en.wikipedia.org/wiki/Uninterruptible_power_supply">UPS capability</a> to keep the system going during brief power outages or cable re-arrangements, and that means using full disk encryption on the server also becomes more practical.
604 611
 </p>
@@ -608,16 +615,16 @@ It was originally designed to run on the Beaglebone Black, but that should be re
608 615
 </p>
609 616
 </div>
610 617
 </div>
611
-<div id="outline-container-orgcce0278" class="outline-2">
612
-<h2 id="orgcce0278">Can I add more users to the system?</h2>
613
-<div class="outline-text-2" id="text-orgcce0278">
618
+<div id="outline-container-orgf3e781c" class="outline-2">
619
+<h2 id="orgf3e781c">Can I add more users to the system?</h2>
620
+<div class="outline-text-2" id="text-orgf3e781c">
614 621
 <p>
615 622
 Yes. Freedombone can support a small number of users, for a "<i>friends and family</i>" type of home installation. This gives them access to an email account, XMPP, SIP phone and the blog (depending on whether the variant which you installed includes those).
616 623
 </p>
617 624
 
618 625
 <div class="org-src-container">
619
-<pre><code class="src src-bash">ssh username@mydomainname -p 2222
620
-</code></pre>
626
+<pre class="src src-bash">ssh username@mydomainname -p 2222
627
+</pre>
621 628
 </div>
622 629
 
623 630
 <p>
@@ -633,9 +640,9 @@ Another point is that Freedombone installations are not intended to support many
633 640
 </p>
634 641
 </div>
635 642
 </div>
636
-<div id="outline-container-org101140b" class="outline-2">
637
-<h2 id="org101140b">Why not use Signal for mobile chat?</h2>
638
-<div class="outline-text-2" id="text-org101140b">
643
+<div id="outline-container-orgb408729" class="outline-2">
644
+<h2 id="orgb408729">Why not use Signal for mobile chat?</h2>
645
+<div class="outline-text-2" id="text-orgb408729">
639 646
 <p>
640 647
 Celebrities recommend Signal. It's Free Software so it must be good, right?
641 648
 </p>
@@ -658,9 +665,9 @@ To give credit where it's due Signal is good, but it could be a lot better. The
658 665
 </p>
659 666
 </div>
660 667
 </div>
661
-<div id="outline-container-org8b50dde" class="outline-2">
662
-<h2 id="org8b50dde">What is the most secure chat app to use on mobile?</h2>
663
-<div class="outline-text-2" id="text-org8b50dde">
668
+<div id="outline-container-orgd117b08" class="outline-2">
669
+<h2 id="orgd117b08">What is the most secure chat app to use on mobile?</h2>
670
+<div class="outline-text-2" id="text-orgd117b08">
664 671
 <p>
665 672
 On mobile there are various options. The apps which are likely to be most secure are ones which have end-to-end encryption enabled by default and which can also be onion routed via Orbot. End-to-end encryption secures the content of the message and onion routing obscures the metadata, making it hard for a passive adversary to know who is communicating with who.
666 673
 </p>
@@ -670,20 +677,20 @@ The current safest way to chat is to use <a href="https://conversations.im">Conv
670 677
 </p>
671 678
 
672 679
 <p>
673
-There are many <a href="#org101140b">other fashionable chat apps</a> with end-to-end security, but often they are closed source, have a single central server or can't be onion routed. It's also important to remember that closed source chat apps should be assumed to be untrustworthy, since their security cannot be independently verified.
680
+There are many <a href="#orgb408729">other fashionable chat apps</a> with end-to-end security, but often they are closed source, have a single central server or can't be onion routed. It's also important to remember that closed source chat apps should be assumed to be untrustworthy, since their security cannot be independently verified.
674 681
 </p>
675 682
 </div>
676 683
 </div>
677
-<div id="outline-container-org20eaffc" class="outline-2">
678
-<h2 id="org20eaffc">How do I remove a user from the system?</h2>
679
-<div class="outline-text-2" id="text-org20eaffc">
684
+<div id="outline-container-orgb5b2126" class="outline-2">
685
+<h2 id="orgb5b2126">How do I remove a user from the system?</h2>
686
+<div class="outline-text-2" id="text-orgb5b2126">
680 687
 <p>
681 688
 To remove a user:
682 689
 </p>
683 690
 
684 691
 <div class="org-src-container">
685
-<pre><code class="src src-bash">ssh username@mydomainname -p 2222
686
-</code></pre>
692
+<pre class="src src-bash">ssh username@mydomainname -p 2222
693
+</pre>
687 694
 </div>
688 695
 
689 696
 <p>
@@ -691,9 +698,9 @@ Select <i>Administrator controls</i> then <i>Manage Users</i> and then <i>Delete
691 698
 </p>
692 699
 </div>
693 700
 </div>
694
-<div id="outline-container-org209f0d6" class="outline-2">
695
-<h2 id="org209f0d6">Why is logging for web sites turned off by default?</h2>
696
-<div class="outline-text-2" id="text-org209f0d6">
701
+<div id="outline-container-org1ab944e" class="outline-2">
702
+<h2 id="org1ab944e">Why is logging for web sites turned off by default?</h2>
703
+<div class="outline-text-2" id="text-org1ab944e">
697 704
 <p>
698 705
 If you're making profits out of the logs by running large server warehouses and then data mining what users click on - as is the business model of well known internet companies - then logging everything makes total sense. However, if you're running a home server then logging really only makes sense if you're trying to diagnose some specific problem with the system, and outside of that context logging everything becomes more of a liability than an asset.
699 706
 </p>
@@ -707,16 +714,16 @@ On the Freedombone system web logs containing IP addresses are turned off by def
707 714
 </p>
708 715
 </div>
709 716
 </div>
710
-<div id="outline-container-orga16e12a" class="outline-2">
711
-<h2 id="orga16e12a">How do I reset the tripwire?</h2>
712
-<div class="outline-text-2" id="text-orga16e12a">
717
+<div id="outline-container-org576c1da" class="outline-2">
718
+<h2 id="org576c1da">How do I reset the tripwire?</h2>
719
+<div class="outline-text-2" id="text-org576c1da">
713 720
 <p>
714 721
 The tripwire will be automatically reset once per week. If you want to reset it earlier then do the following:
715 722
 </p>
716 723
 
717 724
 <div class="org-src-container">
718
-<pre><code class="src src-bash">ssh username@mydomain -p 2222
719
-</code></pre>
725
+<pre class="src src-bash">ssh username@mydomain -p 2222
726
+</pre>
720 727
 </div>
721 728
 
722 729
 <p>
@@ -724,9 +731,9 @@ Select <i>Administrator controls</i> then "reset tripwire" using cursors and spa
724 731
 </p>
725 732
 </div>
726 733
 </div>
727
-<div id="outline-container-orgf085eb1" class="outline-2">
728
-<h2 id="orgf085eb1">Is metadata protected?</h2>
729
-<div class="outline-text-2" id="text-orgf085eb1">
734
+<div id="outline-container-org575438d" class="outline-2">
735
+<h2 id="org575438d">Is metadata protected?</h2>
736
+<div class="outline-text-2" id="text-org575438d">
730 737
 <blockquote>
731 738
 <p>
732 739
 "<i>We kill people based on metadata</i>"
@@ -742,12 +749,12 @@ Even when using Freedombone metadata analysis by third parties is still possible
742 749
 </p>
743 750
 </div>
744 751
 </div>
745
-<div id="outline-container-org20694ec" class="outline-2">
746
-<h2 id="org20694ec">How do I create email processing rules?</h2>
747
-<div class="outline-text-2" id="text-org20694ec">
752
+<div id="outline-container-org249cb8e" class="outline-2">
753
+<h2 id="org249cb8e">How do I create email processing rules?</h2>
754
+<div class="outline-text-2" id="text-org249cb8e">
748 755
 <div class="org-src-container">
749
-<pre><code class="src src-bash">ssh username@domainname -p 2222
750
-</code></pre>
756
+<pre class="src src-bash">ssh username@domainname -p 2222
757
+</pre>
751 758
 </div>
752 759
 
753 760
 <p>
@@ -800,16 +807,16 @@ Spamassassin is also available and within Mutt you can use the S (shift+s) key t
800 807
 </p>
801 808
 </div>
802 809
 </div>
803
-<div id="outline-container-orgf194d33" class="outline-2">
804
-<h2 id="orgf194d33">Why isn't dynamic DNS working?</h2>
805
-<div class="outline-text-2" id="text-orgf194d33">
810
+<div id="outline-container-org0026d12" class="outline-2">
811
+<h2 id="org0026d12">Why isn't dynamic DNS working?</h2>
812
+<div class="outline-text-2" id="text-org0026d12">
806 813
 <p>
807 814
 If you run the command:
808 815
 </p>
809 816
 
810 817
 <div class="org-src-container">
811
-<pre><code class="src src-bash">systemctl status inadyn
812
-</code></pre>
818
+<pre class="src src-bash">systemctl status inadyn
819
+</pre>
813 820
 </div>
814 821
 
815 822
 <p>
@@ -817,24 +824,24 @@ And see some error related to checking for changes in the IP address then you ca
817 824
 </p>
818 825
 
819 826
 <div class="org-src-container">
820
-<pre><code class="src src-text">https://check.torproject.org/
827
+<pre class="src src-text">https://check.torproject.org/
821 828
 https://www.whatsmydns.net/whats-my-ip-address.html
822 829
 https://www.privateinternetaccess.com/pages/whats-my-ip/
823
-</code></pre>
830
+</pre>
824 831
 </div>
825 832
 </div>
826 833
 </div>
827 834
 
828
-<div id="outline-container-org04c8e6a" class="outline-2">
829
-<h2 id="org04c8e6a">How do I change my encryption settings?</h2>
830
-<div class="outline-text-2" id="text-org04c8e6a">
835
+<div id="outline-container-orgcf9314c" class="outline-2">
836
+<h2 id="orgcf9314c">How do I change my encryption settings?</h2>
837
+<div class="outline-text-2" id="text-orgcf9314c">
831 838
 <p>
832 839
 Suppose that some new encryption vulnerability has been announced and that you need to change your encryption settings. Maybe an algorithm thought to be secure is now no longer so and you need to remove it. You can change your settings by doing the following:
833 840
 </p>
834 841
 
835 842
 <div class="org-src-container">
836
-<pre><code class="src src-bash">ssh myusername@mydomain -p 2222
837
-</code></pre>
843
+<pre class="src src-bash">ssh myusername@mydomain -p 2222
844
+</pre>
838 845
 </div>
839 846
 
840 847
 <p>
@@ -842,9 +849,9 @@ Select <i>Administrator controls</i> then select <i>Security Settings</i>. You w
842 849
 </p>
843 850
 </div>
844 851
 </div>
845
-<div id="outline-container-org4756925" class="outline-2">
846
-<h2 id="org4756925">How do I get a domain name?</h2>
847
-<div class="outline-text-2" id="text-org4756925">
852
+<div id="outline-container-org623845a" class="outline-2">
853
+<h2 id="org623845a">How do I get a domain name?</h2>
854
+<div class="outline-text-2" id="text-org623845a">
848 855
 <p>
849 856
 Suppose that you have bought a domain name (rather than using a free subdomain on freedns) and you want to use that instead.
850 857
 </p>
@@ -854,11 +861,11 @@ Remove any existing nameservers for your domain (or select "custom" nameservers)
854 861
 </p>
855 862
 
856 863
 <div class="org-src-container">
857
-<pre><code class="src src-text">NS1.AFRAID.ORG
864
+<pre class="src src-text">NS1.AFRAID.ORG
858 865
 NS2.AFRAID.ORG
859 866
 NS3.AFRAID.ORG
860 867
 NS4.AFRAID.ORG
861
-</code></pre>
868
+</pre>
862 869
 </div>
863 870
 
864 871
 <p>
@@ -874,8 +881,8 @@ To route email to one of your freedns domains:
874 881
 </p>
875 882
 
876 883
 <div class="org-src-container">
877
-<pre><code class="src src-bash">editor /etc/mailname
878
-</code></pre>
884
+<pre class="src src-bash">editor /etc/mailname
885
+</pre>
879 886
 </div>
880 887
 
881 888
 <p>
@@ -883,8 +890,8 @@ Add any extra domains which you own, then save and exit.
883 890
 </p>
884 891
 
885 892
 <div class="org-src-container">
886
-<pre><code class="src src-bash">editor /etc/exim4/update-exim4.conf.conf
887
-</code></pre>
893
+<pre class="src src-bash">editor /etc/exim4/update-exim4.conf.conf
894
+</pre>
888 895
 </div>
889 896
 
890 897
 <p>
@@ -896,10 +903,10 @@ Save and exit, then restart exim.
896 903
 </p>
897 904
 
898 905
 <div class="org-src-container">
899
-<pre><code class="src src-bash">update-exim4.conf.template -r
906
+<pre class="src src-bash">update-exim4.conf.template -r
900 907
 update-exim4.conf
901 908
 service exim4 restart
902
-</code></pre>
909
+</pre>
903 910
 </div>
904 911
 
905 912
 <p>
@@ -908,16 +915,16 @@ You should now be able to send an email from <i>postmaster@mynewdomainname</i> a
908 915
 </div>
909 916
 </div>
910 917
 
911
-<div id="outline-container-org0580486" class="outline-2">
912
-<h2 id="org0580486">How do I get a "real" SSL/TLS/HTTPS certificate?</h2>
913
-<div class="outline-text-2" id="text-org0580486">
918
+<div id="outline-container-org80ee241" class="outline-2">
919
+<h2 id="org80ee241">How do I get a "real" SSL/TLS/HTTPS certificate?</h2>
920
+<div class="outline-text-2" id="text-org80ee241">
914 921
 <p>
915 922
 If you did the full install or selected the social variant then the system will have tried to obtain a Let's Encrypt certificate automatically during the install process. If this failed for any reason, or if you have created a new site which you need a certificate for then do the following:
916 923
 </p>
917 924
 
918 925
 <div class="org-src-container">
919
-<pre><code class="src src-bash">ssh username@mydomainname -p 2222
920
-</code></pre>
926
+<pre class="src src-bash">ssh username@mydomainname -p 2222
927
+</pre>
921 928
 </div>
922 929
 
923 930
 <p>
@@ -929,9 +936,9 @@ One thing to be aware of is that Let's Encrypt doesn't support many dynamic DNS
929 936
 </p>
930 937
 </div>
931 938
 </div>
932
-<div id="outline-container-org689608f" class="outline-2">
933
-<h2 id="org689608f">How do I renew a Let's Encrypt certificate?</h2>
934
-<div class="outline-text-2" id="text-org689608f">
939
+<div id="outline-container-org8b85e62" class="outline-2">
940
+<h2 id="org8b85e62">How do I renew a Let's Encrypt certificate?</h2>
941
+<div class="outline-text-2" id="text-org8b85e62">
935 942
 <p>
936 943
 Normally certificates will be automatically renewed once per month, so you don't need to be concerned about it. If anything goes wrong with the automatic renewal then you should receive a warning email.
937 944
 </p>
@@ -941,8 +948,8 @@ If you need to manually renew a certificate:
941 948
 </p>
942 949
 
943 950
 <div class="org-src-container">
944
-<pre><code class="src src-bash">ssh username@mydomainname -p 2222
945
-</code></pre>
951
+<pre class="src src-bash">ssh username@mydomainname -p 2222
952
+</pre>
946 953
 </div>
947 954
 
948 955
 <p>
@@ -950,16 +957,16 @@ Select <i>Administrator controls</i> then <b>Security settings</b> then <b>Renew
950 957
 </p>
951 958
 </div>
952 959
 </div>
953
-<div id="outline-container-org00c9fac" class="outline-2">
954
-<h2 id="org00c9fac">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</h2>
955
-<div class="outline-text-2" id="text-org00c9fac">
960
+<div id="outline-container-org6aba810" class="outline-2">
961
+<h2 id="org6aba810">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</h2>
962
+<div class="outline-text-2" id="text-org6aba810">
956 963
 <p>
957 964
 Most likely it's because Let's Encrypt doesn't support your particular domain or subdomain. Currently free subdomains tend not to work. You'll need to buy a domain name, link it to your dynamic DNS account and then do:
958 965
 </p>
959 966
 
960 967
 <div class="org-src-container">
961
-<pre><code class="src src-bash">ssh username@mydomainname -p 2222
962
-</code></pre>
968
+<pre class="src src-bash">ssh username@mydomainname -p 2222
969
+</pre>
963 970
 </div>
964 971
 
965 972
 <p>
@@ -967,17 +974,17 @@ Select <i>Administrator controls</i> then <b>Security settings</b> then <b>Creat
967 974
 </p>
968 975
 </div>
969 976
 </div>
970
-<div id="outline-container-org7f1159a" class="outline-2">
971
-<h2 id="org7f1159a">Why not use the services of $company instead? They took the Seppuku pledge</h2>
972
-<div class="outline-text-2" id="text-org7f1159a">
977
+<div id="outline-container-orgc65717c" class="outline-2">
978
+<h2 id="orgc65717c">Why not use the services of $company instead? They took the Seppuku pledge</h2>
979
+<div class="outline-text-2" id="text-orgc65717c">
973 980
 <p>
974 981
 <a href="https://cryptostorm.org/viewtopic.php?f=63&amp;t=2954&amp;sid=7de2d1e699cfde2f574e6a7f6ea5a173">That pledge</a> is utterly worthless. Years ago people trusted Google in the same sort of way, because they promised not be be evil and because a lot of the engineers working for them seemed like honest types who were "<i>on our side</i>". Post-<a href="https://en.wikipedia.org/wiki/Nymwars">nymwars</a> and post-<a href="https://en.wikipedia.org/wiki/PRISM_(surveillance_program)">PRISM</a> we know exactly how much Google cared about the privacy and security of its users. But Google is only one particular example. In general don't trust pledges made by companies, even if the people running them seem really sincere.
975 982
 </p>
976 983
 </div>
977 984
 </div>
978
-<div id="outline-container-org5459287" class="outline-2">
979
-<h2 id="org5459287">Why does my email keep getting rejected as spam by Gmail/etc?</h2>
980
-<div class="outline-text-2" id="text-org5459287">
985
+<div id="outline-container-org76affcf" class="outline-2">
986
+<h2 id="org76affcf">Why does my email keep getting rejected as spam by Gmail/etc?</h2>
987
+<div class="outline-text-2" id="text-org76affcf">
981 988
 <p>
982 989
 Welcome to the world of email. Email is really the archetypal decentralized service, developed during the early days of the internet. In principle anyone can run an email server, and that's exactly what you're doing with Freedombone. Email is very useful, but it has a big problem, and that's that the protocols are totally insecure. That made it easy for spammers to do their thing, and in response highly elaborate spam filtering and blocking systems were developed. Chances are that your emails are being blocked in this way. Sometimes the blocking is so indisciminate that entire countries are excluded. What can you do about it? Unless you control the block list at the receiving end you may not be able to do much unless you can find an email proxy server which is trusted by the receiving server.
983 990
 </p>
@@ -987,8 +994,8 @@ Often ISPs will run their own SMTP mail server which you can use for proxying, t
987 994
 </p>
988 995
 
989 996
 <div class="org-src-container">
990
-<pre><code class="src src-bash">ssh username@mydomainname -p 2222
991
-</code></pre>
997
+<pre class="src src-bash">ssh username@mydomainname -p 2222
998
+</pre>
992 999
 </div>
993 1000
 
994 1001
 <p>
@@ -1008,9 +1015,9 @@ So the situation with email presently is pretty bad, and there's a clear selecti
1008 1015
 </p>
1009 1016
 </div>
1010 1017
 </div>
1011
-<div id="outline-container-org108fab6" class="outline-2">
1012
-<h2 id="org108fab6">Tor is censored/blocked in my area. What can I do?</h2>
1013
-<div class="outline-text-2" id="text-org108fab6">
1018
+<div id="outline-container-org93992f5" class="outline-2">
1019
+<h2 id="org93992f5">Tor is censored/blocked in my area. What can I do?</h2>
1020
+<div class="outline-text-2" id="text-org93992f5">
1014 1021
 <p>
1015 1022
 If you can find some details for an obfs4 Tor bridge (its IP address, port number and key or nickname) then you can set up the system to use it to connect to the Tor network. Unlike relay nodes the IP addresses for bridges are not public information and so can't be easily known and added to block lists by authoritarian regimes or over-zealous ISPs.
1016 1023
 </p>
@@ -1041,9 +1048,9 @@ Return to the <a href="index.html">home page</a>
1041 1048
 </div>
1042 1049
 </div>
1043 1050
 
1044
-<div id="outline-container-orgaeeac02" class="outline-2">
1045
-<h2 id="orgaeeac02">I want to block a particular domain from getting its content into my social network sites</h2>
1046
-<div class="outline-text-2" id="text-orgaeeac02">
1051
+<div id="outline-container-org92ebfd1" class="outline-2">
1052
+<h2 id="org92ebfd1">I want to block a particular domain from getting its content into my social network sites</h2>
1053
+<div class="outline-text-2" id="text-org92ebfd1">
1047 1054
 <p>
1048 1055
 If you're being pestered by some domain which contains bad/illegal/harrassing content or irritating users you can block domains at the firewall level. Go to the administrator control panel and select <i>domain blocking</i>. You can then block, unblock and view the list of blocked domains.
1049 1056
 </p>
@@ -1058,9 +1065,9 @@ Select <i>Administrator controls</i> then <i>Domain blocking</i>.
1058 1065
 </div>
1059 1066
 </div>
1060 1067
 
1061
-<div id="outline-container-orgfefb387" class="outline-2">
1062
-<h2 id="orgfefb387">The mesh system doesn't boot from USB drive</h2>
1063
-<div class="outline-text-2" id="text-orgfefb387">
1068
+<div id="outline-container-orgd38ad08" class="outline-2">
1069
+<h2 id="orgd38ad08">The mesh system doesn't boot from USB drive</h2>
1070
+<div class="outline-text-2" id="text-orgd38ad08">
1064 1071
 <p>
1065 1072
 If the system doesn't boot and reports an error which includes <b>/dev/mapper/loop0p1</b> then reboot with <b>Ctrl-Alt-Del</b> and when you see the grub menu press <b>e</b> and manually change <b>/dev/mapper/loop0p1</b> to <b>/dev/sdb1</b>, then press <b>Ctrl-x</b>. If that doesn't work then reboot and try <b>/dev/sdc1</b> instead.
1066 1073
 </p>