This commit is contained in:
Bob Mottram 2018-02-04 21:11:39 +00:00
commit b9050b9b2f
15 changed files with 257 additions and 188 deletions

View File

@ -17,6 +17,8 @@ After installation it's possible that you might want some advice on how to run y
* [Apps available on the system](https://freedombone.net/apps.html)
* [General usage](https://freedombone.net/usage.html)
* [Frequently Asked Questions](https://freedombone.net/faq.html)
* [Advice on setting up on a mobile phone](https://freedombone.net/mobile.html)
* [I like this project. How can I help to support it?](https://freedombone.net/support.html)
If you find bugs, or want to add a new app to this system see the [Developers Guide](https://freedombone.net/devguide.html).

View File

@ -28,4 +28,8 @@ ssh myusername@mydomain.com -p 2222
Select *Administrator controls* then *App Settings* then *edith*. Enter a subdomain name, such as /notes.mydomain.com/, and optionally a freedns code. When the installation is complete you can then look up the password for the site within the *Passwords* section of the *Administrator control panel*, then navigate to the subdomain. Log in, then enter something like /notes.mydomain.com/testnote/ and start typing.
#+BEGIN_CENTER
[[file:images/edith_notes.jpg]]
#+END_CENTER
It is possible to turn off the login via *App Settings/edith* if you wish, but this will enable anyone on the internet to view or edit notes on your system, which could have obvious privacy or stability implications. From *App settings/edith* it's also possible to browse through your notes files.

View File

@ -60,7 +60,7 @@ Under *Sending Mail* select *local* or if you need to proxy outgoing email throu
[[file:images/mailpile_setup.jpg]]
#+END_CENTER
Under *Receiving files* select *IMAP*, the domain as *localhost*, port *143*, your username and password, then click *Next*. Astute readers may well be concerned that IMAP over port 143 is not encrypted, but since this is only via localhost communication between the Mail Transport Agent and Mailpile doesn't travel over the internet and port 143 is not opened on the firewall so it's not possible to accidentally connect an external mail client insecurely.
Under *Receiving files* select *IMAP*, the domain as *localhost*, port *143* and your username, then click *Next*. Astute readers may well be concerned that IMAP over port 143 is not encrypted, but since this is only via localhost communication between the Mail Transport Agent and Mailpile doesn't travel over the internet and port 143 is not opened on the firewall so it's not possible to accidentally connect an external mail client insecurely.
#+BEGIN_CENTER
[[file:images/mailpile_setup_keys.jpg]]
@ -68,4 +68,6 @@ Under *Receiving files* select *IMAP*, the domain as *localhost*, port *143*, yo
Under *Security and Privacy* either select your existing encryption key or if you only get the option to create a new one then do so, then click *Add* or *Save*.
You will then be asked for a password. Confusingly, this won't be the password you gave initially when setting up Mailpile. It's the original *ssh password* which you used to set up the Freedombone system.
The process of importing your email should then occur, and can take some time.

View File

@ -343,12 +343,6 @@ Any bridges that you add will also show up on the About screen of the administra
You can also set your system to act as a Tor bridge, although this is not recommended since in most cases you will have a dynamic external IP address. If you need to help someone get around local censorship temporarily though this could be an option.
#+BEGIN_EXPORT html
<center>
Return to the <a href="index.html">home page</a>
</center>
#+END_EXPORT
* I want to block a particular domain from getting its content into my social network sites
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 /domain blocking/. You can then block, unblock and view the list of blocked domains.
@ -362,3 +356,10 @@ Select /Administrator controls/ then /Domain blocking/.
If the system doesn't boot and reports an error which includes */dev/mapper/loop0p1* then reboot with *Ctrl-Alt-Del* and when you see the grub menu press *e* and manually change */dev/mapper/loop0p1* to */dev/sdb1*, then press *Ctrl-x*. If that doesn't work then reboot and try */dev/sdc1* instead.
After the system has booted successfully the problem should resolve itself on subsequent reboots.
#+BEGIN_EXPORT html
<center>
Return to the <a href="index.html">home page</a>
</center>
#+END_EXPORT

View File

@ -36,6 +36,7 @@ After installation it's possible that you might want some advice on how to run y
* [[./usage.html][General usage]]
* [[./faq.html][Frequently Asked Questions]]
* [[./mobile.html][Advice on setting up a mobile phone]]
* [[./support.html][I like this project. How can I help to support it?]]
If you find bugs, or want to add a new app to this system see the [[./devguide.html][Developers Guide]] and [[./codeofconduct.html][Code of Conduct]]. There is a Matrix chat room available at *#fbone:matrix.freedombone.net*.

View File

@ -26,6 +26,8 @@ This site can also be accessed via a Tor browser at *http://yjxlc3imv7obva4grjae
*XMPP:* bob@freedombone.net with OMEMO or OTR
*Matrix:* #fbone:matrix.freedombone.net
*Tox:* 82DD53788AB400843BC75EA96B62DD6C76D2B13E476B995B13C49920A3C8FD32E5365A82FA83
* Things which would be nice to have

BIN
img/edith_notes.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -47,6 +47,33 @@ edith_variables=(MY_USERNAME
EDITH_CODE
DEFAULT_LANGUAGE)
function remove_bad_links_edith {
read_config_param EDITH_DOMAIN_NAME
edith_dir=/var/www/$EDITH_DOMAIN_NAME/htdocs
# copy jquery locally
jquery_version='1.12.4'
if [ ! -f $edith_dir/jquery-${jquery_version}.js ]; then
cd $edith_dir
wget https://code.jquery.com/jquery-${jquery_version}.js
if [ -f $edith_dir/jquery-${jquery_version}.js ]; then
jquery_hash=$(sha256sum $edith_dir/jquery-${jquery_version}.js | awk -F ' ' '{print $1}')
if [[ "$jquery_hash" != '430f36f9b5f21aae8cc9dca6a81c4d3d84da5175eaedcf2fdc2c226302cb3575' ]]; then
echo $'Unexpected jquery hash value'
exit 6783653856
fi
else
echo $"Unable to download https://code.jquery.com/jquery-${jquery_version}.js"
exit 7384673583
fi
fi
sed -i "s|//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js|jquery-${jquery_version}.js|g" $edith_dir/templates/default.php
sed -i '/googleapi/d' $edith_dir/templates/remark.php
sed -i "s|//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js|jquery-${jquery_version}.js|g" $edith_dir/templates/html.php
}
function change_password_edith {
curr_username="$1"
new_user_password="$2"
@ -140,6 +167,7 @@ function upgrade_edith {
function_check set_repo_commit
set_repo_commit /var/www/$EDITH_DOMAIN_NAME/htdocs "edith commit" "$EDITH_COMMIT" $EDITH_REPO
remove_bad_links_edith
chown -R www-data:www-data /var/www/$EDITH_DOMAIN_NAME/htdocs
chmod a+w /var/www/$EDITH_DOMAIN_NAME/htdocs/data
}
@ -414,6 +442,9 @@ function install_edith {
set_completion_param "edith domain" "$EDITH_DOMAIN_NAME"
set_completion_param "edith onion domain" "$EDITH_ONION_HOSTNAME"
remove_bad_links_edith
chown -R www-data:www-data /var/www/$EDITH_DOMAIN_NAME/htdocs
chmod a+w /var/www/$EDITH_DOMAIN_NAME/htdocs/data
nginx_ensite $EDITH_DAEMON_NAME

View File

@ -37,7 +37,7 @@ MAILPILE_DOMAIN_NAME=
MAILPILE_CODE=
MAILPILE_ONION_PORT=8103
MAILPILE_REPO="https://github.com/mailpile/Mailpile"
MAILPILE_COMMIT='88ae8e5831dddc628c827c44224166dbdbed91f1'
MAILPILE_COMMIT='f82074d2ab5ccd65d14a6b3c6cd65aeb132831d7'
MAILPILE_PORT=33411
mailpile_variables=(MAILPILE_REPO
@ -348,10 +348,17 @@ function install_mailpile {
sed -i 's|ssl =.*|ssl = no|g' /etc/dovecot/conf.d/10-ssl.conf
# set ssl certs, just in case we want to use them later
sed -i "s|#ssl_cert =.*|ssl_cert = </etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.crt|g" /etc/dovecot/conf.d/10-ssl.conf
sed -i "s|ssl_cert =.*|ssl_cert = </etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.crt|g" /etc/dovecot/conf.d/10-ssl.conf
sed -i "s|#ssl_key =.*|ssl_key = </etc/ssl/private/${DEFAULT_DOMAIN_NAME}.key|g" /etc/dovecot/conf.d/10-ssl.conf
sed -i "s|ssl_key =.*|ssl_key = </etc/ssl/private/${DEFAULT_DOMAIN_NAME}.key|g" /etc/dovecot/conf.d/10-ssl.conf
if [[ $ONION_ONLY == "no" ]]; then
if [ -f /etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/fullchain.pem ]; then
sed -i "s|#ssl_cert =.*|ssl_cert = </etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/fullchain.pem|g" /etc/dovecot/conf.d/10-ssl.conf
sed -i "s|ssl_cert =.*|ssl_cert = </etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/fullchain.pem|g" /etc/dovecot/conf.d/10-ssl.conf
sed -i "s|#ssl_key =.*|ssl_key = </etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/privkey.pem|g" /etc/dovecot/conf.d/10-ssl.conf
sed -i "s|ssl_key =.*|ssl_key = </etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/privkey.pem|g" /etc/dovecot/conf.d/10-ssl.conf
fi
groupadd ssl-cert
usermod -a -G ssl-cert dovecot
fi
systemctl restart dovecot
systemctl enable mailpile

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2018-02-02 Fri 14:45 -->
<!-- 2018-02-02 Fri 20:47 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>&lrm;</title>
@ -269,6 +269,14 @@ ssh into the system with:
Select <b>Administrator controls</b> then <b>App Settings</b> then <b>edith</b>. Enter a subdomain name, such as <i>notes.mydomain.com</i>, and optionally a freedns code. When the installation is complete you can then look up the password for the site within the <b>Passwords</b> section of the <b>Administrator control panel</b>, then navigate to the subdomain. Log in, then enter something like <i>notes.mydomain.com/testnote</i> and start typing.
</p>
<div class="org-center">
<div class="figure">
<p><img src="images/edith_notes.jpg" alt="edith_notes.jpg" />
</p>
</div>
</div>
<p>
It is possible to turn off the login via <b>App Settings/edith</b> if you wish, but this will enable anyone on the internet to view or edit notes on your system, which could have obvious privacy or stability implications. From <b>App settings/edith</b> it's also possible to browse through your notes files.
</p>

View File

@ -3,10 +3,10 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2016-11-20 Sun 18:57 -->
<!-- 2018-02-03 Sat 20:20 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<title>&lrm;</title>
<meta name="generator" content="Org mode" />
<meta name="author" content="Bob Mottram" />
<meta name="description" content="How to use Mailpile"
@ -71,6 +71,7 @@
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-hledger:before { content: 'hledger'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
@ -188,7 +189,7 @@
@licstart The following is the entire license notice for the
JavaScript code in this tag.
Copyright (C) 2012-2013 Free Software Foundation, Inc.
Copyright (C) 2012-2017 Free Software Foundation, Inc.
The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
@ -259,9 +260,9 @@ An advantage of this type of webmail is that <i>it keeps your GPG keys off of an
One down side is that this appears to be a single user system, so if you have multiple users on your Freedombone server only the administrator will actually be able to use mailpile.
</p>
<div id="outline-container-org09a9cff" class="outline-2">
<h2 id="org09a9cff">Installation</h2>
<div class="outline-text-2" id="text-org09a9cff">
<div id="outline-container-orge51f287" class="outline-2">
<h2 id="orge51f287">Installation</h2>
<div class="outline-text-2" id="text-orge51f287">
<p>
Log into your system with:
</p>
@ -285,9 +286,9 @@ After the install has completed go to <b>Security settings</b> and select <b>Cre
</div>
</div>
<div id="outline-container-org43501a6" class="outline-2">
<h2 id="org43501a6">Initial setup</h2>
<div class="outline-text-2" id="text-org43501a6">
<div id="outline-container-org18e2129" class="outline-2">
<h2 id="org18e2129">Initial setup</h2>
<div class="outline-text-2" id="text-org18e2129">
<p>
If you have just obtained a Lets Encrypt certificate as above then go to <b>About</b> on the administrator control panel and you should see your Mailpile domain listed there along with an onion address. You can then navigate to your site in a browser.
</p>
@ -337,7 +338,7 @@ Under <b>Sending Mail</b> select <b>local</b> or if you need to proxy outgoing e
</div>
<p>
Under <b>Receiving files</b> select <b>IMAP</b>, the domain as <b>localhost</b>, port <b>143</b>, your username and password, then click <b>Next</b>. Astute readers may well be concerned that IMAP over port 143 is not encrypted, but since this is only via localhost communication between the Mail Transport Agent and Mailpile doesn't travel over the internet and port 143 is not opened on the firewall so it's not possible to accidentally connect an external mail client insecurely.
Under <b>Receiving files</b> select <b>IMAP</b>, the domain as <b>localhost</b>, port <b>143</b> and your username, then click <b>Next</b>. Astute readers may well be concerned that IMAP over port 143 is not encrypted, but since this is only via localhost communication between the Mail Transport Agent and Mailpile doesn't travel over the internet and port 143 is not opened on the firewall so it's not possible to accidentally connect an external mail client insecurely.
</p>
<div class="org-center">
@ -352,6 +353,10 @@ Under <b>Receiving files</b> select <b>IMAP</b>, the domain as <b>localhost</b>,
Under <b>Security and Privacy</b> either select your existing encryption key or if you only get the option to create a new one then do so, then click <b>Add</b> or <b>Save</b>.
</p>
<p>
You will then be asked for a password. Confusingly, this won't be the password you gave initially when setting up Mailpile. It's the original <b>ssh password</b> which you used to set up the Freedombone system.
</p>
<p>
The process of importing your email should then occur, and can take some time.
</p>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2018-01-11 Thu 20:57 -->
<!-- 2018-02-04 Sun 21:11 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>&lrm;</title>
@ -264,143 +264,143 @@ for the JavaScript code in this tag.
</colgroup>
<tbody>
<tr>
<td class="org-left"><a href="#org3b9d551">What applications are supported?</a></td>
<td class="org-left"><a href="#org5e1690c">What applications are supported?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orgdcdffc6">I don't have a static IP address. Can I still install this system?</a></td>
<td class="org-left"><a href="#orga48f0fb">I don't have a static IP address. Can I still install this system?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org04dca90">Why Freedombone and not FreedomBox?</a></td>
<td class="org-left"><a href="#orgf4dd8a7">Why Freedombone and not FreedomBox?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org250c12d">Why not support building images for Raspberry Pi?</a></td>
<td class="org-left"><a href="#org5ee52c6">Why not support building images for Raspberry Pi?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orgd5c1184">Why use Tor? I've heard it's used by bad people</a></td>
<td class="org-left"><a href="#org41c4de0">Why use Tor? I've heard it's used by bad people</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org9591a28">How is Tor integrated with Freedombone?</a></td>
<td class="org-left"><a href="#org7b1c58e">How is Tor integrated with Freedombone?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orgda2b251">Can I add a clearnet domain to an onion build?</a></td>
<td class="org-left"><a href="#org7938d6a">Can I add a clearnet domain to an onion build?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org2fcade7">Why use Github?</a></td>
<td class="org-left"><a href="#orgdb25e75">Why use Github?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orgc5b7d76">Should I upload my GPG keys to keybase.io?</a></td>
<td class="org-left"><a href="#orga2c951b">Should I upload my GPG keys to keybase.io?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org1b54432">Keys and emails should not be stored on servers. Why do you do that?</a></td>
<td class="org-left"><a href="#org637eaf9">Keys and emails should not be stored on servers. Why do you do that?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orgd51af85">Why can't I access my .onion site with a Tor browser?</a></td>
<td class="org-left"><a href="#orge446066">Why can't I access my .onion site with a Tor browser?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org4585a4a">What is the best hardware to run this system on?</a></td>
<td class="org-left"><a href="#orgee92e8d">What is the best hardware to run this system on?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org12ce8ec">Can I add more users to the system?</a></td>
<td class="org-left"><a href="#org69a37d0">Can I add more users to the system?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org6e6f0bd">Why not use Signal for mobile chat?</a></td>
<td class="org-left"><a href="#org2cf9868">Why not use Signal for mobile chat?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orgb8a6086">What is the most secure chat app to use on mobile?</a></td>
<td class="org-left"><a href="#orgdcc1837">What is the most secure chat app to use on mobile?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orgd46fade">How do I remove a user from the system?</a></td>
<td class="org-left"><a href="#org663ac7a">How do I remove a user from the system?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org7fc4d88">Why is logging for web sites turned off by default?</a></td>
<td class="org-left"><a href="#orgb37d231">Why is logging for web sites turned off by default?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orge1a3788">How do I reset the tripwire?</a></td>
<td class="org-left"><a href="#org9d48040">How do I reset the tripwire?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org572f545">Is metadata protected?</a></td>
<td class="org-left"><a href="#orgdbc9954">Is metadata protected?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org733a91b">How do I create email processing rules?</a></td>
<td class="org-left"><a href="#org202318a">How do I create email processing rules?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org78eef24">Why isn't dynamic DNS working?</a></td>
<td class="org-left"><a href="#org5aa3ee6">Why isn't dynamic DNS working?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org2c06ab3">How do I change my encryption settings?</a></td>
<td class="org-left"><a href="#org7c9475d">How do I change my encryption settings?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org5afac46">How do I get a domain name?</a></td>
<td class="org-left"><a href="#org6abf1fd">How do I get a domain name?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org438f36d">How do I get a "real" SSL/TLS/HTTPS certificate?</a></td>
<td class="org-left"><a href="#org7342a10">How do I get a "real" SSL/TLS/HTTPS certificate?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orge32e913">How do I renew a Let's Encrypt certificate?</a></td>
<td class="org-left"><a href="#orgb7c163c">How do I renew a Let's Encrypt certificate?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org44f909f">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</a></td>
<td class="org-left"><a href="#orgb89b3f5">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org27439c3">Why not use the services of $company instead? They took the Seppuku pledge</a></td>
<td class="org-left"><a href="#org1983e96">Why not use the services of $company instead? They took the Seppuku pledge</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org00d41d3">Why does my email keep getting rejected as spam by Gmail/etc?</a></td>
<td class="org-left"><a href="#orgd36fd8f">Why does my email keep getting rejected as spam by Gmail/etc?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org7ab9062">Tor is censored/blocked in my area. What can I do?</a></td>
<td class="org-left"><a href="#orgda2be97">Tor is censored/blocked in my area. What can I do?</a></td>
</tr>
<tr>
<td class="org-left"><a href="#org5cd6bab">I want to block a particular domain from getting its content into my social network sites</a></td>
<td class="org-left"><a href="#org11e6e2f">I want to block a particular domain from getting its content into my social network sites</a></td>
</tr>
<tr>
<td class="org-left"><a href="#orgafedf35">The mesh system doesn't boot from USB drive</a></td>
<td class="org-left"><a href="#org6189535">The mesh system doesn't boot from USB drive</a></td>
</tr>
</tbody>
</table>
</div>
<div id="outline-container-org3b9d551" class="outline-2">
<h2 id="org3b9d551">What applications are supported?</h2>
<div class="outline-text-2" id="text-org3b9d551">
<div id="outline-container-org5e1690c" class="outline-2">
<h2 id="org5e1690c">What applications are supported?</h2>
<div class="outline-text-2" id="text-org5e1690c">
<p>
<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.
</p>
</div>
</div>
<div id="outline-container-orgdcdffc6" class="outline-2">
<h2 id="orgdcdffc6">I don't have a static IP address. Can I still install this system?</h2>
<div class="outline-text-2" id="text-orgdcdffc6">
<div id="outline-container-orga48f0fb" class="outline-2">
<h2 id="orga48f0fb">I don't have a static IP address. Can I still install this system?</h2>
<div class="outline-text-2" id="text-orga48f0fb">
<p>
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.
</p>
@ -410,17 +410,17 @@ The lack of a static IP address can be worked around by using a dynamic DNS serv
</p>
</div>
</div>
<div id="outline-container-org04dca90" class="outline-2">
<h2 id="org04dca90">Why Freedombone and not FreedomBox?</h2>
<div class="outline-text-2" id="text-org04dca90">
<div id="outline-container-orgf4dd8a7" class="outline-2">
<h2 id="orgf4dd8a7">Why Freedombone and not FreedomBox?</h2>
<div class="outline-text-2" id="text-orgf4dd8a7">
<p>
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:
</p>
</div>
<div id="outline-container-org306add8" class="outline-3">
<h3 id="org306add8">Similarities</h3>
<div class="outline-text-3" id="text-org306add8">
<div id="outline-container-org0af1c5d" class="outline-3">
<h3 id="org0af1c5d">Similarities</h3>
<div class="outline-text-3" id="text-org0af1c5d">
<ul class="org-ul">
<li>Uses freedom-maker and vmdebootstrap to build debian images</li>
<li>Supports the use of Tor onion addresses to access websites</li>
@ -434,9 +434,9 @@ When the project began in late 2013 the FreedomBox project seemed to be going no
</ul>
</div>
</div>
<div id="outline-container-orge8d4938" class="outline-3">
<h3 id="orge8d4938">Differences</h3>
<div class="outline-text-3" id="text-orge8d4938">
<div id="outline-container-org791d2d7" class="outline-3">
<h3 id="org791d2d7">Differences</h3>
<div class="outline-text-3" id="text-org791d2d7">
<ul class="org-ul">
<li>FreedomBox is a Debian pure blend. Freedombone is not</li>
<li>Freedombone only supports Free Software. FreedomBox includes some closed binary boot blobs for certain ARM boards</li>
@ -451,9 +451,9 @@ When the project began in late 2013 the FreedomBox project seemed to be going no
</div>
</div>
</div>
<div id="outline-container-org250c12d" class="outline-2">
<h2 id="org250c12d">Why not support building images for Raspberry Pi?</h2>
<div class="outline-text-2" id="text-org250c12d">
<div id="outline-container-org5ee52c6" class="outline-2">
<h2 id="org5ee52c6">Why not support building images for Raspberry Pi?</h2>
<div class="outline-text-2" id="text-org5ee52c6">
<p>
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.
</p>
@ -463,9 +463,9 @@ So although the Raspberry Pi is cheap and hugely popular it's not supported by t
</p>
</div>
</div>
<div id="outline-container-orgd5c1184" class="outline-2">
<h2 id="orgd5c1184">Why use Tor? I've heard it's used by bad people</h2>
<div class="outline-text-2" id="text-orgd5c1184">
<div id="outline-container-org41c4de0" class="outline-2">
<h2 id="org41c4de0">Why use Tor? I've heard it's used by bad people</h2>
<div class="outline-text-2" id="text-org41c4de0">
<p>
Years ago Tor was usually depicted in the mainstream media as something scary inhabited by cyberterrorists and other bad cybers, but today to a large extent Tor is accepted as just another way of routing data in a network. Depending upon where you live there may still be some amount of fearmongering about Tor, but it now seems clear that the trajectory is towards general acceptance.
</p>
@ -486,9 +486,9 @@ On the negative side it's a complex system which is not fully decentralized.
</p>
</div>
</div>
<div id="outline-container-org9591a28" class="outline-2">
<h2 id="org9591a28">How is Tor integrated with Freedombone?</h2>
<div class="outline-text-2" id="text-org9591a28">
<div id="outline-container-org7b1c58e" class="outline-2">
<h2 id="org7b1c58e">How is Tor integrated with Freedombone?</h2>
<div class="outline-text-2" id="text-org7b1c58e">
<p>
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.
</p>
@ -506,17 +506,17 @@ Even if you're running the "onion only" build, this only means that sites are ac
</p>
</div>
</div>
<div id="outline-container-orgda2b251" class="outline-2">
<h2 id="orgda2b251">Can I add a clearnet domain to an onion build?</h2>
<div class="outline-text-2" id="text-orgda2b251">
<div id="outline-container-org7938d6a" class="outline-2">
<h2 id="org7938d6a">Can I add a clearnet domain to an onion build?</h2>
<div class="outline-text-2" id="text-org7938d6a">
<p>
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.
</p>
</div>
</div>
<div id="outline-container-org2fcade7" class="outline-2">
<h2 id="org2fcade7">Why use Github?</h2>
<div class="outline-text-2" id="text-org2fcade7">
<div id="outline-container-orgdb25e75" class="outline-2">
<h2 id="orgdb25e75">Why use Github?</h2>
<div class="outline-text-2" id="text-orgdb25e75">
<p>
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.
</p>
@ -534,9 +534,9 @@ Currently many of the repositories used for applications which are not yet packa
</p>
</div>
</div>
<div id="outline-container-orgc5b7d76" class="outline-2">
<h2 id="orgc5b7d76">Should I upload my GPG keys to keybase.io?</h2>
<div class="outline-text-2" id="text-orgc5b7d76">
<div id="outline-container-orga2c951b" class="outline-2">
<h2 id="orga2c951b">Should I upload my GPG keys to keybase.io?</h2>
<div class="outline-text-2" id="text-orga2c951b">
<p>
It's not recommended unless there exists some compelling reason for you to be on there. That site asks users to upload the <b>private keys</b>, and even if the keys are client side encrypted with a passphrase there's always the chance that there will be a data leak in future and letter agencies will then have a full time opportunity to crack the passphrases.
</p>
@ -546,9 +546,9 @@ Saying something resembling <i>"only noobs will use crackable private key passph
</p>
</div>
</div>
<div id="outline-container-org1b54432" class="outline-2">
<h2 id="org1b54432">Keys and emails should not be stored on servers. Why do you do that?</h2>
<div class="outline-text-2" id="text-org1b54432">
<div id="outline-container-org637eaf9" class="outline-2">
<h2 id="org637eaf9">Keys and emails should not be stored on servers. Why do you do that?</h2>
<div class="outline-text-2" id="text-org637eaf9">
<p>
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:
</p>
@ -606,9 +606,9 @@ In the home environment a box with a good firewall and no GUI components install
</div>
</div>
<div id="outline-container-orgd51af85" class="outline-2">
<h2 id="orgd51af85">Why can't I access my .onion site with a Tor browser?</h2>
<div class="outline-text-2" id="text-orgd51af85">
<div id="outline-container-orge446066" class="outline-2">
<h2 id="orge446066">Why can't I access my .onion site with a Tor browser?</h2>
<div class="outline-text-2" id="text-orge446066">
<p>
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.
</p>
@ -618,9 +618,9 @@ Another factor to be aware of is that it can take a while for the onion address
</p>
</div>
</div>
<div id="outline-container-org4585a4a" class="outline-2">
<h2 id="org4585a4a">What is the best hardware to run this system on?</h2>
<div class="outline-text-2" id="text-org4585a4a">
<div id="outline-container-orgee92e8d" class="outline-2">
<h2 id="orgee92e8d">What is the best hardware to run this system on?</h2>
<div class="outline-text-2" id="text-orgee92e8d">
<p>
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.
</p>
@ -630,9 +630,9 @@ It was originally designed to run on the Beaglebone Black, but that should be re
</p>
</div>
</div>
<div id="outline-container-org12ce8ec" class="outline-2">
<h2 id="org12ce8ec">Can I add more users to the system?</h2>
<div class="outline-text-2" id="text-org12ce8ec">
<div id="outline-container-org69a37d0" class="outline-2">
<h2 id="org69a37d0">Can I add more users to the system?</h2>
<div class="outline-text-2" id="text-org69a37d0">
<p>
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).
</p>
@ -655,9 +655,9 @@ Another point is that Freedombone installations are not intended to support many
</p>
</div>
</div>
<div id="outline-container-org6e6f0bd" class="outline-2">
<h2 id="org6e6f0bd">Why not use Signal for mobile chat?</h2>
<div class="outline-text-2" id="text-org6e6f0bd">
<div id="outline-container-org2cf9868" class="outline-2">
<h2 id="org2cf9868">Why not use Signal for mobile chat?</h2>
<div class="outline-text-2" id="text-org2cf9868">
<p>
Celebrities recommend Signal. It's Free Software so it must be good, right?
</p>
@ -680,9 +680,9 @@ To give credit where it's due Signal is good, but it could be a lot better. The
</p>
</div>
</div>
<div id="outline-container-orgb8a6086" class="outline-2">
<h2 id="orgb8a6086">What is the most secure chat app to use on mobile?</h2>
<div class="outline-text-2" id="text-orgb8a6086">
<div id="outline-container-orgdcc1837" class="outline-2">
<h2 id="orgdcc1837">What is the most secure chat app to use on mobile?</h2>
<div class="outline-text-2" id="text-orgdcc1837">
<p>
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.
</p>
@ -692,13 +692,13 @@ The current safest way to chat is to use <a href="https://conversations.im">Conv
</p>
<p>
There are many <a href="#org6e6f0bd">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.
There are many <a href="#org2cf9868">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.
</p>
</div>
</div>
<div id="outline-container-orgd46fade" class="outline-2">
<h2 id="orgd46fade">How do I remove a user from the system?</h2>
<div class="outline-text-2" id="text-orgd46fade">
<div id="outline-container-org663ac7a" class="outline-2">
<h2 id="org663ac7a">How do I remove a user from the system?</h2>
<div class="outline-text-2" id="text-org663ac7a">
<p>
To remove a user:
</p>
@ -713,9 +713,9 @@ Select <i>Administrator controls</i> then <i>Manage Users</i> and then <i>Delete
</p>
</div>
</div>
<div id="outline-container-org7fc4d88" class="outline-2">
<h2 id="org7fc4d88">Why is logging for web sites turned off by default?</h2>
<div class="outline-text-2" id="text-org7fc4d88">
<div id="outline-container-orgb37d231" class="outline-2">
<h2 id="orgb37d231">Why is logging for web sites turned off by default?</h2>
<div class="outline-text-2" id="text-orgb37d231">
<p>
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.
</p>
@ -729,9 +729,9 @@ On the Freedombone system web logs containing IP addresses are turned off by def
</p>
</div>
</div>
<div id="outline-container-orge1a3788" class="outline-2">
<h2 id="orge1a3788">How do I reset the tripwire?</h2>
<div class="outline-text-2" id="text-orge1a3788">
<div id="outline-container-org9d48040" class="outline-2">
<h2 id="org9d48040">How do I reset the tripwire?</h2>
<div class="outline-text-2" id="text-org9d48040">
<p>
The tripwire will be automatically reset once per week. If you want to reset it earlier then do the following:
</p>
@ -746,9 +746,9 @@ Select <i>Administrator controls</i> then "reset tripwire" using cursors and spa
</p>
</div>
</div>
<div id="outline-container-org572f545" class="outline-2">
<h2 id="org572f545">Is metadata protected?</h2>
<div class="outline-text-2" id="text-org572f545">
<div id="outline-container-orgdbc9954" class="outline-2">
<h2 id="orgdbc9954">Is metadata protected?</h2>
<div class="outline-text-2" id="text-orgdbc9954">
<blockquote>
<p>
"<i>We kill people based on metadata</i>"
@ -764,9 +764,9 @@ Even when using Freedombone metadata analysis by third parties is still possible
</p>
</div>
</div>
<div id="outline-container-org733a91b" class="outline-2">
<h2 id="org733a91b">How do I create email processing rules?</h2>
<div class="outline-text-2" id="text-org733a91b">
<div id="outline-container-org202318a" class="outline-2">
<h2 id="org202318a">How do I create email processing rules?</h2>
<div class="outline-text-2" id="text-org202318a">
<div class="org-src-container">
<pre class="src src-bash">ssh username@domainname -p 2222
</pre>
@ -822,9 +822,9 @@ Spamassassin is also available and within Mutt you can use the S (shift+s) key t
</p>
</div>
</div>
<div id="outline-container-org78eef24" class="outline-2">
<h2 id="org78eef24">Why isn't dynamic DNS working?</h2>
<div class="outline-text-2" id="text-org78eef24">
<div id="outline-container-org5aa3ee6" class="outline-2">
<h2 id="org5aa3ee6">Why isn't dynamic DNS working?</h2>
<div class="outline-text-2" id="text-org5aa3ee6">
<p>
If you run the command:
</p>
@ -847,9 +847,9 @@ https://www.privateinternetaccess.com/pages/whats-my-ip/
</div>
</div>
<div id="outline-container-org2c06ab3" class="outline-2">
<h2 id="org2c06ab3">How do I change my encryption settings?</h2>
<div class="outline-text-2" id="text-org2c06ab3">
<div id="outline-container-org7c9475d" class="outline-2">
<h2 id="org7c9475d">How do I change my encryption settings?</h2>
<div class="outline-text-2" id="text-org7c9475d">
<p>
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:
</p>
@ -864,9 +864,9 @@ Select <i>Administrator controls</i> then select <i>Security Settings</i>. You w
</p>
</div>
</div>
<div id="outline-container-org5afac46" class="outline-2">
<h2 id="org5afac46">How do I get a domain name?</h2>
<div class="outline-text-2" id="text-org5afac46">
<div id="outline-container-org6abf1fd" class="outline-2">
<h2 id="org6abf1fd">How do I get a domain name?</h2>
<div class="outline-text-2" id="text-org6abf1fd">
<p>
Suppose that you have bought a domain name (rather than using a free subdomain on freedns) and you want to use that instead.
</p>
@ -930,9 +930,9 @@ You should now be able to send an email from <i>postmaster@mynewdomainname</i> a
</div>
</div>
<div id="outline-container-org438f36d" class="outline-2">
<h2 id="org438f36d">How do I get a "real" SSL/TLS/HTTPS certificate?</h2>
<div class="outline-text-2" id="text-org438f36d">
<div id="outline-container-org7342a10" class="outline-2">
<h2 id="org7342a10">How do I get a "real" SSL/TLS/HTTPS certificate?</h2>
<div class="outline-text-2" id="text-org7342a10">
<p>
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:
</p>
@ -951,9 +951,9 @@ One thing to be aware of is that Let's Encrypt doesn't support many dynamic DNS
</p>
</div>
</div>
<div id="outline-container-orge32e913" class="outline-2">
<h2 id="orge32e913">How do I renew a Let's Encrypt certificate?</h2>
<div class="outline-text-2" id="text-orge32e913">
<div id="outline-container-orgb7c163c" class="outline-2">
<h2 id="orgb7c163c">How do I renew a Let's Encrypt certificate?</h2>
<div class="outline-text-2" id="text-orgb7c163c">
<p>
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.
</p>
@ -972,9 +972,9 @@ Select <i>Administrator controls</i> then <b>Security settings</b> then <b>Renew
</p>
</div>
</div>
<div id="outline-container-org44f909f" class="outline-2">
<h2 id="org44f909f">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</h2>
<div class="outline-text-2" id="text-org44f909f">
<div id="outline-container-orgb89b3f5" class="outline-2">
<h2 id="orgb89b3f5">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</h2>
<div class="outline-text-2" id="text-orgb89b3f5">
<p>
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:
</p>
@ -989,17 +989,17 @@ Select <i>Administrator controls</i> then <b>Security settings</b> then <b>Creat
</p>
</div>
</div>
<div id="outline-container-org27439c3" class="outline-2">
<h2 id="org27439c3">Why not use the services of $company instead? They took the Seppuku pledge</h2>
<div class="outline-text-2" id="text-org27439c3">
<div id="outline-container-org1983e96" class="outline-2">
<h2 id="org1983e96">Why not use the services of $company instead? They took the Seppuku pledge</h2>
<div class="outline-text-2" id="text-org1983e96">
<p>
<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.
</p>
</div>
</div>
<div id="outline-container-org00d41d3" class="outline-2">
<h2 id="org00d41d3">Why does my email keep getting rejected as spam by Gmail/etc?</h2>
<div class="outline-text-2" id="text-org00d41d3">
<div id="outline-container-orgd36fd8f" class="outline-2">
<h2 id="orgd36fd8f">Why does my email keep getting rejected as spam by Gmail/etc?</h2>
<div class="outline-text-2" id="text-orgd36fd8f">
<p>
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.
</p>
@ -1030,9 +1030,9 @@ So the situation with email presently is pretty bad, and there's a clear selecti
</p>
</div>
</div>
<div id="outline-container-org7ab9062" class="outline-2">
<h2 id="org7ab9062">Tor is censored/blocked in my area. What can I do?</h2>
<div class="outline-text-2" id="text-org7ab9062">
<div id="outline-container-orgda2be97" class="outline-2">
<h2 id="orgda2be97">Tor is censored/blocked in my area. What can I do?</h2>
<div class="outline-text-2" id="text-orgda2be97">
<p>
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.
</p>
@ -1056,16 +1056,12 @@ Any bridges that you add will also show up on the About screen of the administra
<p>
You can also set your system to act as a Tor bridge, although this is not recommended since in most cases you will have a dynamic external IP address. If you need to help someone get around local censorship temporarily though this could be an option.
</p>
<center>
Return to the <a href="index.html">home page</a>
</center>
</div>
</div>
<div id="outline-container-org5cd6bab" class="outline-2">
<h2 id="org5cd6bab">I want to block a particular domain from getting its content into my social network sites</h2>
<div class="outline-text-2" id="text-org5cd6bab">
<div id="outline-container-org11e6e2f" class="outline-2">
<h2 id="org11e6e2f">I want to block a particular domain from getting its content into my social network sites</h2>
<div class="outline-text-2" id="text-org11e6e2f">
<p>
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.
</p>
@ -1080,9 +1076,9 @@ Select <i>Administrator controls</i> then <i>Domain blocking</i>.
</div>
</div>
<div id="outline-container-orgafedf35" class="outline-2">
<h2 id="orgafedf35">The mesh system doesn't boot from USB drive</h2>
<div class="outline-text-2" id="text-orgafedf35">
<div id="outline-container-org6189535" class="outline-2">
<h2 id="org6189535">The mesh system doesn't boot from USB drive</h2>
<div class="outline-text-2" id="text-org6189535">
<p>
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.
</p>
@ -1090,6 +1086,11 @@ If the system doesn't boot and reports an error which includes <b>/dev/mapper/lo
<p>
After the system has booted successfully the problem should resolve itself on subsequent reboots.
</p>
<center>
Return to the <a href="index.html">home page</a>
</center>
</div>
</div>
</div>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2018-01-29 Mon 10:18 -->
<!-- 2018-02-04 Sun 21:09 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>&lrm;</title>
@ -287,6 +287,7 @@ After installation it's possible that you might want some advice on how to run y
<li><a href="./usage.html">General usage</a></li>
<li><a href="./faq.html">Frequently Asked Questions</a></li>
<li><a href="./mobile.html">Advice on setting up a mobile phone</a></li>
<li><a href="./support.html">I like this project. How can I help to support it?</a></li>
</ul>
<p>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2018-01-29 Mon 10:18 -->
<!-- 2018-02-04 Sun 21:06 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>&lrm;</title>
@ -248,9 +248,9 @@ for the JavaScript code in this tag.
<h1>Support</h1>
</center>
<div id="outline-container-org4dbc811" class="outline-2">
<h2 id="org4dbc811">Contact details</h2>
<div class="outline-text-2" id="text-org4dbc811">
<div id="outline-container-org0e0937c" class="outline-2">
<h2 id="org0e0937c">Contact details</h2>
<div class="outline-text-2" id="text-org0e0937c">
<p>
This site can also be accessed via a Tor browser at <b><a href="http://yjxlc3imv7obva4grjae6u3qw527koaytrgjgdp364hmthrst3jodiid.onion">http://yjxlc3imv7obva4grjae6u3qw527koaytrgjgdp364hmthrst3jodiid.onion</a></b>
</p>
@ -267,28 +267,32 @@ This site can also be accessed via a Tor browser at <b><a href="http://yjxlc3imv
<b>XMPP:</b> bob@freedombone.net with OMEMO or OTR
</p>
<p>
<b>Matrix:</b> #fbone:matrix.freedombone.net
</p>
<p>
<b>Tox:</b> 82DD53788AB400843BC75EA96B62DD6C76D2B13E476B995B13C49920A3C8FD32E5365A82FA83
</p>
</div>
</div>
<div id="outline-container-org0d8934f" class="outline-2">
<h2 id="org0d8934f">Things which would be nice to have</h2>
<div class="outline-text-2" id="text-org0d8934f">
<div id="outline-container-orgf895e81" class="outline-2">
<h2 id="orgf895e81">Things which would be nice to have</h2>
<div class="outline-text-2" id="text-orgf895e81">
</div>
<div id="outline-container-orgb1770b0" class="outline-3">
<h3 id="orgb1770b0">Ideas</h3>
<div class="outline-text-3" id="text-orgb1770b0">
<div id="outline-container-orge5cd1e4" class="outline-3">
<h3 id="orge5cd1e4">Ideas</h3>
<div class="outline-text-3" id="text-orge5cd1e4">
<p>
Know of some fabulous web system which could run on Freedombone, but currently doesn't? Contact the above, and be prepared to make a compelling argument for why it should be included.
</p>
</div>
</div>
<div id="outline-container-orge46d165" class="outline-3">
<h3 id="orge46d165">Money</h3>
<div class="outline-text-3" id="text-orge46d165">
<div id="outline-container-orgb9b2919" class="outline-3">
<h3 id="orgb9b2919">Money</h3>
<div class="outline-text-3" id="text-orgb9b2919">
<p>
At the present time this project is not seeking any funding. There is no crowdfunding campaign and no slick marketing video. Those aren't ruled out as future possibilities, but for now they're just not needed.
</p>
@ -299,27 +303,27 @@ If you find this project useful then you may wish to consider donating to <a hre
</div>
</div>
<div id="outline-container-orgde98a22" class="outline-3">
<h3 id="orgde98a22">Testing and reporting bugs</h3>
<div class="outline-text-3" id="text-orgde98a22">
<div id="outline-container-org08545d9" class="outline-3">
<h3 id="org08545d9">Testing and reporting bugs</h3>
<div class="outline-text-3" id="text-org08545d9">
<p>
Testing of the install on different hardware. Also pentesting on test installations to find vulnerabilities.
</p>
</div>
</div>
<div id="outline-container-org81b0012" class="outline-3">
<h3 id="org81b0012">Web design and artwork</h3>
<div class="outline-text-3" id="text-org81b0012">
<div id="outline-container-org06ca887" class="outline-3">
<h3 id="org06ca887">Web design and artwork</h3>
<div class="outline-text-3" id="text-org06ca887">
<p>
A better design for this website would be nice to have. Photos, icons or other artwork are all welcome. I've always liked the cartoon artwork of the <a href="https://www.mediagoblin.org/">Mediagoblin</a> project, and attractive graphics can help to get people initially interested.
</p>
</div>
</div>
<div id="outline-container-orgbf8be41" class="outline-3">
<h3 id="orgbf8be41">More education and promotion</h3>
<div class="outline-text-3" id="text-orgbf8be41">
<div id="outline-container-orgc33f01d" class="outline-3">
<h3 id="orgc33f01d">More education and promotion</h3>
<div class="outline-text-3" id="text-orgc33f01d">
<div class="org-center">
<div class="figure">
@ -337,18 +341,18 @@ Raising awareness beyond the near zero current level, overcoming fear and parano
</div>
</div>
<div id="outline-container-orgfe4b6e1" class="outline-3">
<h3 id="orgfe4b6e1">Translations</h3>
<div class="outline-text-3" id="text-orgfe4b6e1">
<div id="outline-container-org447ca33" class="outline-3">
<h3 id="org447ca33">Translations</h3>
<div class="outline-text-3" id="text-org447ca33">
<p>
To add translations modify the json files within the <b>locale</b> subdirectory. Then make a pull request on the <a href="https://github.com/bashrc/freedombone">Github site</a>.
</p>
</div>
</div>
<div id="outline-container-org5e6b66f" class="outline-3">
<h3 id="org5e6b66f">Packaging</h3>
<div class="outline-text-3" id="text-org5e6b66f">
<div id="outline-container-orgd789c28" class="outline-3">
<h3 id="orgd789c28">Packaging</h3>
<div class="outline-text-3" id="text-orgd789c28">
<p>
Helping to package GNU Social and Hubzilla for Debian would be beneficial.
</p>