Browse Source

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

Bob Mottram 7 years ago
parent
commit
be948f2396

+ 1
- 1
README.md View File

2
 
2
 
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
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
 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.
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 View File

10
 [[file:images/logo.png]]
10
 [[file:images/logo.png]]
11
 #+END_CENTER
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
 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.
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 View File

17
 #+END_EXPORT
17
 #+END_EXPORT
18
 
18
 
19
 #+BEGIN_CENTER
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
 #+ATTR_HTML: :border -1
25
 #+ATTR_HTML: :border -1
21
 | [[What applications are supported?]]                                                          |
26
 | [[What applications are supported?]]                                                          |
22
 | [[I don't have a static IP address. Can I still install this system?]]                        |
27
 | [[I don't have a static IP address. Can I still install this system?]]                        |

BIN
img/pleroma-logo.png View File


BIN
img/surveillanceoptions.jpg View File


+ 102
- 5
src/freedombone-app-pleroma View File

386
     pleroma_recompile
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
 function configure_interactive_pleroma {
482
 function configure_interactive_pleroma {
390
     read_config_param PLEROMA_EXPIRE_MONTHS
483
     read_config_param PLEROMA_EXPIRE_MONTHS
391
     while true
484
     while true
394
         trap "rm -f $data" 0 1 2 5 15
487
         trap "rm -f $data" 0 1 2 5 15
395
         dialog --backtitle $"Freedombone Control Panel" \
488
         dialog --backtitle $"Freedombone Control Panel" \
396
                --title $"Pleroma" \
489
                --title $"Pleroma" \
397
-               --radiolist $"Choose an operation:" 14 70 5 \
490
+               --radiolist $"Choose an operation:" 15 70 6 \
398
                1 $"Set a background image" off \
491
                1 $"Set a background image" off \
399
                2 $"Set the title" off \
492
                2 $"Set the title" off \
400
                3 $"Disable new account registrations" off \
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
         sel=$?
497
         sel=$?
404
         case $sel in
498
         case $sel in
405
             1) return;;
499
             1) return;;
409
             1) pleroma_set_background_image;;
503
             1) pleroma_set_background_image;;
410
             2) pleroma_set_title;;
504
             2) pleroma_set_title;;
411
             3) pleroma_disable_registrations;;
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
         esac
509
         esac
415
         rm $data
510
         rm $data
416
     done
511
     done
606
         ONION_ONLY='no'
701
         ONION_ONLY='no'
607
     fi
702
     fi
608
 
703
 
704
+    apt-get -yq install wget imagemagick
705
+
609
     # We need elixir 1.4+ here, so the debian repo package won't do
706
     # We need elixir 1.4+ here, so the debian repo package won't do
610
     install_elixir
707
     install_elixir
611
 
708
 

+ 0
- 1
src/freedombone-utils-postgresql View File

120
     database_name=$1
120
     database_name=$1
121
     database_query=$2
121
     database_query=$2
122
     output=$(sudo -u postgres psql -d $database_name -c << EOF
122
     output=$(sudo -u postgres psql -d $database_name -c << EOF
123
-use $database_name;
124
 $database_query
123
 $database_query
125
 EOF
124
 EOF
126
 )
125
 )

+ 14
- 10
website/EN/app_pleroma.html View 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
-<!-- 2017-11-08 Wed 14:34 -->
6
+<!-- 2017-11-10 Fri 17:42 -->
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>&lrm;</title>
9
 <title>&lrm;</title>
244
 </div>
244
 </div>
245
 </div>
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
 <p>
255
 <p>
252
 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.
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
 </div>
264
 </div>
261
 </div>
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
 <p>
270
 <p>
267
 Log into your system with:
271
 Log into your system with:
268
 </p>
272
 </p>
282
 </div>
286
 </div>
283
 </div>
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
 <p>
292
 <p>
289
 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.
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
 </p>
294
 </p>

+ 166
- 159
website/EN/faq.html View 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
-<!-- 2017-09-15 Fri 10:29 -->
6
+<!-- 2017-11-11 Sat 18:24 -->
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>&lrm;</title>
10
 <meta name="generator" content="Org mode" />
10
 <meta name="generator" content="Org mode" />
11
 <meta name="author" content="Bob Mottram" />
11
 <meta name="author" content="Bob Mottram" />
12
 <meta name="description" content="Frequently asked questions"
12
 <meta name="description" content="Frequently asked questions"
249
 </center>
249
 </center>
250
 
250
 
251
 <div class="org-center">
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
 <table border="-1" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
259
 <table border="-1" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
253
 
260
 
254
 
261
 
257
 </colgroup>
264
 </colgroup>
258
 <tbody>
265
 <tbody>
259
 <tr>
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
 </tr>
268
 </tr>
262
 
269
 
263
 <tr>
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
 </tr>
272
 </tr>
266
 
273
 
267
 <tr>
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
 </tr>
276
 </tr>
270
 
277
 
271
 <tr>
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
 </tr>
280
 </tr>
274
 
281
 
275
 <tr>
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
 </tr>
284
 </tr>
278
 
285
 
279
 <tr>
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
 </tr>
288
 </tr>
282
 
289
 
283
 <tr>
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
 </tr>
292
 </tr>
286
 
293
 
287
 <tr>
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
 </tr>
296
 </tr>
290
 
297
 
291
 <tr>
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
 </tr>
300
 </tr>
294
 
301
 
295
 <tr>
302
 <tr>
297
 </tr>
304
 </tr>
298
 
305
 
299
 <tr>
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
 </tr>
308
 </tr>
302
 
309
 
303
 <tr>
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
 </tr>
312
 </tr>
306
 
313
 
307
 <tr>
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
 </tr>
316
 </tr>
310
 
317
 
311
 <tr>
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
 </tr>
320
 </tr>
314
 
321
 
315
 <tr>
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
 </tr>
324
 </tr>
318
 
325
 
319
 <tr>
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
 </tr>
328
 </tr>
322
 
329
 
323
 <tr>
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
 </tr>
332
 </tr>
326
 
333
 
327
 <tr>
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
 </tr>
336
 </tr>
330
 
337
 
331
 <tr>
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
 </tr>
340
 </tr>
334
 
341
 
335
 <tr>
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
 </tr>
344
 </tr>
338
 
345
 
339
 <tr>
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
 </tr>
348
 </tr>
342
 
349
 
343
 <tr>
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
 </tr>
352
 </tr>
346
 
353
 
347
 <tr>
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
 </tr>
356
 </tr>
350
 
357
 
351
 <tr>
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
 </tr>
360
 </tr>
354
 
361
 
355
 <tr>
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
 </tr>
364
 </tr>
358
 
365
 
359
 <tr>
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
 </tr>
368
 </tr>
362
 
369
 
363
 <tr>
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
 </tr>
372
 </tr>
366
 
373
 
367
 <tr>
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
 </tr>
376
 </tr>
370
 
377
 
371
 <tr>
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
 </tr>
380
 </tr>
374
 
381
 
375
 <tr>
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
 </tr>
384
 </tr>
378
 
385
 
379
 <tr>
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
 </tr>
388
 </tr>
382
 </tbody>
389
 </tbody>
383
 </table>
390
 </table>
384
 </div>
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
 <p>
396
 <p>
390
 <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.
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
 </p>
398
 </p>
392
 </div>
399
 </div>
393
 </div>
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
 <p>
404
 <p>
398
 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.
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
 </p>
406
 </p>
403
 </p>
410
 </p>
404
 </div>
411
 </div>
405
 </div>
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
 <p>
416
 <p>
410
 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:
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
 </p>
418
 </p>
412
 </div>
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
 <ul class="org-ul">
424
 <ul class="org-ul">
418
 <li>Uses freedom-maker and vmdebootstrap to build debian images</li>
425
 <li>Uses freedom-maker and vmdebootstrap to build debian images</li>
419
 <li>Supports the use of Tor onion addresses to access websites</li>
426
 <li>Supports the use of Tor onion addresses to access websites</li>
427
 </ul>
434
 </ul>
428
 </div>
435
 </div>
429
 </div>
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
 <ul class="org-ul">
440
 <ul class="org-ul">
434
 <li>FreedomBox is a Debian pure blend. Freedombone is not</li>
441
 <li>FreedomBox is a Debian pure blend. Freedombone is not</li>
435
 <li>Freedombone only supports Free Software. FreedomBox includes some closed binary boot blobs for certain ARM boards</li>
442
 <li>Freedombone only supports Free Software. FreedomBox includes some closed binary boot blobs for certain ARM boards</li>
444
 </div>
451
 </div>
445
 </div>
452
 </div>
446
 </div>
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
 <p>
457
 <p>
451
 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.
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
 </p>
459
 </p>
456
 </p>
463
 </p>
457
 </div>
464
 </div>
458
 </div>
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
 <p>
469
 <p>
463
 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.
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
 </p>
471
 </p>
476
 </p>
483
 </p>
477
 </div>
484
 </div>
478
 </div>
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
 <p>
489
 <p>
483
 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.
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
 </p>
491
 </p>
496
 </p>
503
 </p>
497
 </div>
504
 </div>
498
 </div>
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
 <p>
509
 <p>
503
 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.
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
 </p>
511
 </p>
505
 </div>
512
 </div>
506
 </div>
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
 <p>
517
 <p>
511
 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.
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
 </p>
519
 </p>
524
 </p>
531
 </p>
525
 </div>
532
 </div>
526
 </div>
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
 <p>
537
 <p>
531
 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:
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
 </p>
539
 </p>
584
 </div>
591
 </div>
585
 </div>
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
 <p>
597
 <p>
591
 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.
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
 </p>
599
 </p>
596
 </p>
603
 </p>
597
 </div>
604
 </div>
598
 </div>
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
 <p>
609
 <p>
603
 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.
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
 </p>
611
 </p>
608
 </p>
615
 </p>
609
 </div>
616
 </div>
610
 </div>
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
 <p>
621
 <p>
615
 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).
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
 </p>
623
 </p>
617
 
624
 
618
 <div class="org-src-container">
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
 </div>
628
 </div>
622
 
629
 
623
 <p>
630
 <p>
633
 </p>
640
 </p>
634
 </div>
641
 </div>
635
 </div>
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
 <p>
646
 <p>
640
 Celebrities recommend Signal. It's Free Software so it must be good, right?
647
 Celebrities recommend Signal. It's Free Software so it must be good, right?
641
 </p>
648
 </p>
658
 </p>
665
 </p>
659
 </div>
666
 </div>
660
 </div>
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
 <p>
671
 <p>
665
 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.
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
 </p>
673
 </p>
670
 </p>
677
 </p>
671
 
678
 
672
 <p>
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
 </p>
681
 </p>
675
 </div>
682
 </div>
676
 </div>
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
 <p>
687
 <p>
681
 To remove a user:
688
 To remove a user:
682
 </p>
689
 </p>
683
 
690
 
684
 <div class="org-src-container">
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
 </div>
694
 </div>
688
 
695
 
689
 <p>
696
 <p>
691
 </p>
698
 </p>
692
 </div>
699
 </div>
693
 </div>
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
 <p>
704
 <p>
698
 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.
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
 </p>
706
 </p>
707
 </p>
714
 </p>
708
 </div>
715
 </div>
709
 </div>
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
 <p>
720
 <p>
714
 The tripwire will be automatically reset once per week. If you want to reset it earlier then do the following:
721
 The tripwire will be automatically reset once per week. If you want to reset it earlier then do the following:
715
 </p>
722
 </p>
716
 
723
 
717
 <div class="org-src-container">
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
 </div>
727
 </div>
721
 
728
 
722
 <p>
729
 <p>
724
 </p>
731
 </p>
725
 </div>
732
 </div>
726
 </div>
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
 <blockquote>
737
 <blockquote>
731
 <p>
738
 <p>
732
 "<i>We kill people based on metadata</i>"
739
 "<i>We kill people based on metadata</i>"
742
 </p>
749
 </p>
743
 </div>
750
 </div>
744
 </div>
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
 <div class="org-src-container">
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
 </div>
758
 </div>
752
 
759
 
753
 <p>
760
 <p>
800
 </p>
807
 </p>
801
 </div>
808
 </div>
802
 </div>
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
 <p>
813
 <p>
807
 If you run the command:
814
 If you run the command:
808
 </p>
815
 </p>
809
 
816
 
810
 <div class="org-src-container">
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
 </div>
820
 </div>
814
 
821
 
815
 <p>
822
 <p>
817
 </p>
824
 </p>
818
 
825
 
819
 <div class="org-src-container">
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
 https://www.whatsmydns.net/whats-my-ip-address.html
828
 https://www.whatsmydns.net/whats-my-ip-address.html
822
 https://www.privateinternetaccess.com/pages/whats-my-ip/
829
 https://www.privateinternetaccess.com/pages/whats-my-ip/
823
-</code></pre>
830
+</pre>
824
 </div>
831
 </div>
825
 </div>
832
 </div>
826
 </div>
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
 <p>
838
 <p>
832
 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:
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
 </p>
840
 </p>
834
 
841
 
835
 <div class="org-src-container">
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
 </div>
845
 </div>
839
 
846
 
840
 <p>
847
 <p>
842
 </p>
849
 </p>
843
 </div>
850
 </div>
844
 </div>
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
 <p>
855
 <p>
849
 Suppose that you have bought a domain name (rather than using a free subdomain on freedns) and you want to use that instead.
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
 </p>
857
 </p>
854
 </p>
861
 </p>
855
 
862
 
856
 <div class="org-src-container">
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
 NS2.AFRAID.ORG
865
 NS2.AFRAID.ORG
859
 NS3.AFRAID.ORG
866
 NS3.AFRAID.ORG
860
 NS4.AFRAID.ORG
867
 NS4.AFRAID.ORG
861
-</code></pre>
868
+</pre>
862
 </div>
869
 </div>
863
 
870
 
864
 <p>
871
 <p>
874
 </p>
881
 </p>
875
 
882
 
876
 <div class="org-src-container">
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
 </div>
886
 </div>
880
 
887
 
881
 <p>
888
 <p>
883
 </p>
890
 </p>
884
 
891
 
885
 <div class="org-src-container">
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
 </div>
895
 </div>
889
 
896
 
890
 <p>
897
 <p>
896
 </p>
903
 </p>
897
 
904
 
898
 <div class="org-src-container">
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
 update-exim4.conf
907
 update-exim4.conf
901
 service exim4 restart
908
 service exim4 restart
902
-</code></pre>
909
+</pre>
903
 </div>
910
 </div>
904
 
911
 
905
 <p>
912
 <p>
908
 </div>
915
 </div>
909
 </div>
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
 <p>
921
 <p>
915
 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:
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
 </p>
923
 </p>
917
 
924
 
918
 <div class="org-src-container">
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
 </div>
928
 </div>
922
 
929
 
923
 <p>
930
 <p>
929
 </p>
936
 </p>
930
 </div>
937
 </div>
931
 </div>
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
 <p>
942
 <p>
936
 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.
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
 </p>
944
 </p>
941
 </p>
948
 </p>
942
 
949
 
943
 <div class="org-src-container">
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
 </div>
953
 </div>
947
 
954
 
948
 <p>
955
 <p>
950
 </p>
957
 </p>
951
 </div>
958
 </div>
952
 </div>
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
 <p>
963
 <p>
957
 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:
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
 </p>
965
 </p>
959
 
966
 
960
 <div class="org-src-container">
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
 </div>
970
 </div>
964
 
971
 
965
 <p>
972
 <p>
967
 </p>
974
 </p>
968
 </div>
975
 </div>
969
 </div>
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
 <p>
980
 <p>
974
 <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.
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
 </p>
982
 </p>
976
 </div>
983
 </div>
977
 </div>
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
 <p>
988
 <p>
982
 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.
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
 </p>
990
 </p>
987
 </p>
994
 </p>
988
 
995
 
989
 <div class="org-src-container">
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
 </div>
999
 </div>
993
 
1000
 
994
 <p>
1001
 <p>
1008
 </p>
1015
 </p>
1009
 </div>
1016
 </div>
1010
 </div>
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
 <p>
1021
 <p>
1015
 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.
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
 </p>
1023
 </p>
1041
 </div>
1048
 </div>
1042
 </div>
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
 <p>
1054
 <p>
1048
 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.
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
 </p>
1056
 </p>
1058
 </div>
1065
 </div>
1059
 </div>
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
 <p>
1071
 <p>
1065
 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.
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
 </p>
1073
 </p>