diff --git a/doc/EN/faq.org b/doc/EN/faq.org index b34bbc97..8ec5e556 100644 --- a/doc/EN/faq.org +++ b/doc/EN/faq.org @@ -27,6 +27,7 @@ | [[How is Tor integrated with Freedombone?]] | | [[Can I add a clearnet domain to an onion build?]] | | [[Why use Github?]] | +| [[What are the data protection implications of running this system?]] | | [[After using nmap or other scanning tool I can no longer log in]] | | [[Should I upload my GPG keys to keybase.io?]] | | [[Keys and emails should not be stored on servers. Why do you do that?]] | @@ -135,6 +136,16 @@ At present Github is useful just because of the sheer number of eyeballs and the The source code for this project is experimentally independently hosted, and it is expected that in future the main development will shift over to an independent site, maybe with mirrors on Github if it still exists in a viable form. Currently many of the repositories used for applications which are not yet packaged for Debian are on Github, and to provide some degree of resilliance against depending too much upon that copies of them also exist within disk images. +* What are the data protection implications of running this system? +Data protection laws such as [[https://en.wikipedia.org/wiki/General_Data_Protection_Regulation][GDPR]] in the EU or the [[https://en.wikipedia.org/wiki/Data_Protection_Act_1998][Data Protection Act]] in the UK usually only apply to formal organizations which are recognized as being legal entities. So you have to be running a business or a charity or some other formal organization in order for the storage of what's known as /personally identifying information/ to potentially become a legal issue. Laws like this usually include: + + * A right to obtain your information + * A right to be forgotten (i.e. to have your data permanently deleted) + * Ensuring that stored personal data remains accurate + +If you're self-hosting then in the language of data protection law the "/data controller/" and the "/data subject/" are one and the same, so there isn't any power differential of that sort. Freedombone is only intended for small numbers of users, so if you are hosting more than one person chances are that you know the others quite well and can arrange to update their data or delete their account if that's needed. Even if data protection laws are later extended to include home server type scenarios it's unlikely that this will become a problem. + +For the mesh version similar applies. Each peer stores their own personal data and it never gets aggregated and stored in any centralized way. * After using nmap or other scanning tool I can no longer log in This system tries to block port scanners. Any other system trying to scan for open ports will have their IP address added to a temporary block list for 24 hours. * Should I upload my GPG keys to keybase.io? diff --git a/src/freedombone-app-postactiv b/src/freedombone-app-postactiv index 0f328777..dc98d3ce 100755 --- a/src/freedombone-app-postactiv +++ b/src/freedombone-app-postactiv @@ -65,11 +65,11 @@ function postactiv_customise_logo { domain_name=$1 if [ -f "/var/www/${domain_name}/htdocs/static/logo.png" ]; then - if [ -f ~/freedombone/img/postactiv.png ]; then - cp ~/freedombone/img/postactiv.png "/var/www/${domain_name}/htdocs/static/logo.png" + if [ -f "$HOME/${PROJECT_NAME}/img/postactiv.png" ]; then + cp "$HOME/${PROJECT_NAME}/img/postactiv.png" "/var/www/${domain_name}/htdocs/static/logo.png" else - if [ -f "/home/$MY_USERNAME/freedombone/img/postactiv.png" ]; then - cp "/home/$MY_USERNAME/freedombone/img/postactiv.png" "/var/www/${domain_name}/htdocs/static/logo.png" + if [ -f "/home/$MY_USERNAME/${PROJECT_NAME}/img/postactiv.png" ]; then + cp "/home/$MY_USERNAME/${PROJECT_NAME}/img/postactiv.png" "/var/www/${domain_name}/htdocs/static/logo.png" fi fi fi diff --git a/src/freedombone-app-searx b/src/freedombone-app-searx index 66fc4aaa..1f1c615c 100755 --- a/src/freedombone-app-searx +++ b/src/freedombone-app-searx @@ -56,12 +56,12 @@ function logging_off_searx { } function searx_set_default_background { - if [ -f ~/freedombone/img/backgrounds/searx.jpg ]; then - cp ~/freedombone/img/backgrounds/searx.jpg /etc/searx/searx/static/themes/courgette/img/bg-body-index.jpg + if [ -f "$HOME/${PROJECT_NAME}/img/backgrounds/searx.jpg" ]; then + cp "$HOME/${PROJECT_NAME}/img/backgrounds/searx.jpg" /etc/searx/searx/static/themes/courgette/img/bg-body-index.jpg chown -R searx:searx ${SEARX_PATH}/searx else - if [ -f "/home/$MY_USERNAME/freedombone/img/backgrounds/searx.jpg" ]; then - cp "/home/$MY_USERNAME/freedombone/img/backgrounds/searx.jpg" "/etc/searx/searx/static/themes/courgette/img/bg-body-index.jpg" + if [ -f "/home/$MY_USERNAME/${PROJECT_NAME}/img/backgrounds/searx.jpg" ]; then + cp "/home/$MY_USERNAME/${PROJECT_NAME}/img/backgrounds/searx.jpg" "/etc/searx/searx/static/themes/courgette/img/bg-body-index.jpg" chown -R searx:searx ${SEARX_PATH}/searx fi fi diff --git a/src/freedombone-app-xmpp b/src/freedombone-app-xmpp index 71358c94..aef7fb30 100755 --- a/src/freedombone-app-xmpp +++ b/src/freedombone-app-xmpp @@ -377,11 +377,11 @@ function update_prosody_modules { if [ ! -f "$INSTALL_DIR/$prosody_modules_filename" ]; then # Obtain the modules - if [ -f ~/freedombone/image_build/$prosody_modules_filename ]; then - cp ~/freedombone/image_build/$prosody_modules_filename "$INSTALL_DIR" + if [ -f "$HOME/${PROJECT_NAME}/image_build/$prosody_modules_filename" ]; then + cp "$HOME/${PROJECT_NAME}/image_build/$prosody_modules_filename" "$INSTALL_DIR" else - if [ -f "/home/$MY_USERNAME/freedombone/image_build/$prosody_modules_filename" ]; then - cp "/home/$MY_USERNAME/freedombone/image_build/$prosody_modules_filename" "$INSTALL_DIR" + if [ -f "/home/$MY_USERNAME/${PROJECT_NAME}/image_build/$prosody_modules_filename" ]; then + cp "/home/$MY_USERNAME/${PROJECT_NAME}/image_build/$prosody_modules_filename" "$INSTALL_DIR" fi fi diff --git a/src/freedombone-config b/src/freedombone-config index 5a079828..f9b9aa9a 100755 --- a/src/freedombone-config +++ b/src/freedombone-config @@ -138,7 +138,7 @@ function show_help { echo '' echo '' echo $' -h --help Show help' - echo $' -f --filename Configuration file (usually freedombone.cfg)' + echo $" -f --filename Configuration file (usually ${PROJECT_NAME}.cfg)" echo $' -m --min Minimum password length (characters)' echo $' -w --www Freedombone web site' echo $' -o --onion [yes|no] Whether to only create .onion sites' diff --git a/src/freedombone-image b/src/freedombone-image index 04c96075..18dad4a2 100755 --- a/src/freedombone-image +++ b/src/freedombone-image @@ -244,7 +244,7 @@ function image_setup { cd "$USERHOME/develop/multipath-tools" || exit 27462454 makepkg --force --noconfirm makepkg -i --force --noconfirm - sudo wget "https://raw.githubusercontent.com/bashrc/freedombone/master/image_build/debootstrap/scripts/${DEBIAN_VERSION}" -O /usr/share/debootstrap/scripts/debscript + sudo wget "https://raw.githubusercontent.com/bashrc/${PROJECT_NAME}/master/image_build/debootstrap/scripts/${DEBIAN_VERSION}" -O /usr/share/debootstrap/scripts/debscript sudo cp -f "/usr/share/debootstrap/scripts/debscript" "/usr/share/debootstrap/scripts/${DEBIAN_VERSION}" if [ ! -f "/usr/share/debootstrap/scripts/${DEBIAN_VERSION}" ]; then echo $"No debian debootstrap script was found for $DEBIAN_VERSION" diff --git a/src/freedombone-image-customise b/src/freedombone-image-customise index 8753bdcb..42923393 100755 --- a/src/freedombone-image-customise +++ b/src/freedombone-image-customise @@ -441,7 +441,7 @@ EOF echo " echo 'User=root' >> /etc/systemd/system/wifistart.service"; echo " echo 'Group=root' >> /etc/systemd/system/wifistart.service"; echo " echo 'WorkingDirectory=/root' >> /etc/systemd/system/wifistart.service"; - echo " echo 'ExecStart=/usr/local/bin/freedombone-wifi --wait 5 2> /dev/null' >> /etc/systemd/system/wifistart.service"; + echo " echo 'ExecStart=/usr/local/bin/${PROJECT_NAME}-wifi --wait 5 2> /dev/null' >> /etc/systemd/system/wifistart.service"; echo " echo '' >> /etc/systemd/system/wifistart.service"; echo " echo '[Install]' >> /etc/systemd/system/wifistart.service"; echo " echo 'WantedBy=multi-user.target' >> /etc/systemd/system/wifistart.service"; @@ -487,7 +487,7 @@ continue_installation() { } atheros_wifi() { - chroot "$rootdir" dpkg -i /root/freedombone/drivers/firmware-ath9k-htc.deb + chroot "$rootdir" dpkg -i /root/${PROJECT_NAME}/drivers/firmware-ath9k-htc.deb chroot "$rootdir" apt-get -yq install firmware-linux-free } @@ -1530,7 +1530,7 @@ if [ \$no_of_users -gt 0 ]; then echo 'Comment[it]=Crea un invito per patchwork' >> /home/$MY_USERNAME/Desktop/invite.desktop echo 'Comment[ru]= ' >> /home/$MY_USERNAME/Desktop/invite.desktop echo 'Comment[zh]=' >> /home/$MY_USERNAME/Desktop/invite.desktop - echo 'Exec=mate-terminal -e freedombone-mesh-invite' >> /home/$MY_USERNAME/Desktop/invite.desktop + echo 'Exec=mate-terminal -e ${PROJECT_NAME}-mesh-invite' >> /home/$MY_USERNAME/Desktop/invite.desktop echo 'Icon=/usr/share/$PROJECT_NAME/avatars/icon_invite.png' >> /home/$MY_USERNAME/Desktop/invite.desktop echo 'Terminal=false' >> /home/$MY_USERNAME/Desktop/invite.desktop echo 'Categories=Application;' >> /home/$MY_USERNAME/Desktop/invite.desktop diff --git a/src/freedombone-image-vmdebootstrap b/src/freedombone-image-vmdebootstrap index ebd0eed5..6f46a3e8 100755 --- a/src/freedombone-image-vmdebootstrap +++ b/src/freedombone-image-vmdebootstrap @@ -30,7 +30,7 @@ export TEXTDOMAIN=${PROJECT_NAME}-image-vmdebootstrap export TEXTDOMAINDIR="/usr/share/locale" VMDEBOOTSTRAP_REPO="https://github.com/bashrc/vmdebootstrap" -VMDEBOOTSTRAP_BRANCH='bashrc/freedombone' +VMDEBOOTSTRAP_BRANCH="bashrc/${PROJECT_NAME}" mkdir -p vendor if [ -d vendor/vmdebootstrap ] ; then diff --git a/src/freedombone-mesh-blog b/src/freedombone-mesh-blog index cf5a7f9d..d95d01c8 100755 --- a/src/freedombone-mesh-blog +++ b/src/freedombone-mesh-blog @@ -88,7 +88,7 @@ function regenerate_blog { } function view_blog { - freedombone-mesh-visit-site '/Blog' + ${PROJECT_NAME}-mesh-visit-site '/Blog' exit 0 } diff --git a/src/freedombone-prepare-scripts b/src/freedombone-prepare-scripts index cbcaf37a..6f9d841b 100755 --- a/src/freedombone-prepare-scripts +++ b/src/freedombone-prepare-scripts @@ -30,9 +30,9 @@ PROJECT_NAME='freedombone' cat /usr/local/bin/${PROJECT_NAME}-vars /usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-* /usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-* > /tmp/includescripts -cat /tmp/includescripts /usr/local/bin/freedombone-controlpanel > /usr/local/bin/control -cat /tmp/includescripts /usr/local/bin/freedombone-controlpanel-user > /usr/local/bin/controluser -cat /tmp/includescripts /usr/local/bin/freedombone-addremove > /usr/local/bin/addremove +cat /tmp/includescripts /usr/local/bin/${PROJECT_NAME}-controlpanel > /usr/local/bin/control +cat /tmp/includescripts /usr/local/bin/${PROJECT_NAME}-controlpanel-user > /usr/local/bin/controluser +cat /tmp/includescripts /usr/local/bin/${PROJECT_NAME}-addremove > /usr/local/bin/addremove sed -i '/# Start including files/,/# End including files/d' /usr/local/bin/control sed -i '/# Start including files/,/# End including files/d' /usr/local/bin/controluser diff --git a/src/freedombone-upgrade b/src/freedombone-upgrade index ccea64ea..2c851154 100755 --- a/src/freedombone-upgrade +++ b/src/freedombone-upgrade @@ -64,7 +64,7 @@ fi if [ -f /usr/bin/backupdatabases ]; then if grep -q "cat /root/dbpass" /usr/bin/backupdatabases; then # update to using the password manager - sed -i "s|cat /root/dbpass|freedombone-pass -u root -a mariadb|g" /usr/bin/backupdatabases + sed -i "s|cat /root/dbpass|${PROJECT_NAME}-pass -u root -a mariadb|g" /usr/bin/backupdatabases fi fi diff --git a/src/freedombone-utils-dns b/src/freedombone-utils-dns index cadf1000..16a9279f 100755 --- a/src/freedombone-utils-dns +++ b/src/freedombone-utils-dns @@ -119,9 +119,9 @@ function create_freedns_updater { fi # add the update command to cron - if ! grep -q "/usr/local/bin/freedombone-freedns" /etc/crontab; then + if ! grep -q "/usr/local/bin/${PROJECT_NAME}-freedns" /etc/crontab; then function_check cron_add_mins - cron_add_mins 3 '/usr/local/bin/freedombone-freedns' + cron_add_mins 3 "/usr/local/bin/${PROJECT_NAME}-freedns" systemctl restart cron fi diff --git a/src/freedombone-utils-gnusocialtools b/src/freedombone-utils-gnusocialtools index 983db501..1b7d72a3 100755 --- a/src/freedombone-utils-gnusocialtools +++ b/src/freedombone-utils-gnusocialtools @@ -484,7 +484,7 @@ function gnusocial_block_user_script { echo "database_name=\$1"; echo "remove_user=\$2"; echo "domain_name=\$3"; - echo "MARIADB_PASSWORD=\$(freedombone-pass -u root -a mariadb)"; + echo "MARIADB_PASSWORD=\$(${PROJECT_NAME}-pass -u root -a mariadb)"; echo ''; echo "if [ \${#remove_user} -lt 2 ]; then"; echo ' echo $"No user was specified"'; diff --git a/src/freedombone-utils-mesh b/src/freedombone-utils-mesh index 67d52450..12df2085 100755 --- a/src/freedombone-utils-mesh +++ b/src/freedombone-utils-mesh @@ -182,8 +182,8 @@ function mesh_create_app_downloads_page { if [ ! -f /var/www/html/images/trifa.png ]; then cp "/root/$PROJECT_NAME/img/trifa.png" /var/www/html/images/trifa.png fi - if [ ! -f /var/www/html/freedombone.css ]; then - cp "/root/$PROJECT_NAME/website/freedombone.css" /var/www/html/freedombone.css + if [ ! -f "/var/www/html/${PROJECT_NAME}.css" ]; then + cp "/root/$PROJECT_NAME/website/${PROJECT_NAME}.css" "/var/www/html/${PROJECT_NAME}.css" fi chown -R www-data:www-data /var/www/html/* } diff --git a/src/freedombone-utils-wifi b/src/freedombone-utils-wifi index 588ad7bc..451eb882 100755 --- a/src/freedombone-utils-wifi +++ b/src/freedombone-utils-wifi @@ -88,10 +88,10 @@ function setup_wifi_atheros { atheros_drivers_file=drivers/firmware-ath9k-htc.deb if [ ! -f $atheros_drivers_file ]; then - if [ ! -f ~/freedombone/$atheros_drivers_file ]; then + if [ ! -f "$HOME/${PROJECT_NAME}/$atheros_drivers_file" ]; then return else - atheros_drivers_file=~/freedombone/$atheros_drivers_file + atheros_drivers_file="$HOME/${PROJECT_NAME}/$atheros_drivers_file" fi else atheros_drivers_file=$(pwd)/$atheros_drivers_file diff --git a/website/EN/faq.html b/website/EN/faq.html index 93a60fa0..909bb99f 100644 --- a/website/EN/faq.html +++ b/website/EN/faq.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- +See here for the complete list of apps. In addition to those as part of the base install you get an email server.
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.
@@ -424,17 +428,17 @@ The lack of a static IP address can be worked around by using a dynamic DNS servThere can be big differences in the performance of microSD cards, and the cheaper ones are almost invariably terrible and/or unusable. Sandisk and Samsung currently appear to be the better brands. You can find some performance benchmarks here. However, benchmarks like this only give a very rough idea of performance and they can vary significantly between individual cards even within the same brand.
Some single board computers, such as Cubieboards or OLinuxino, have a SATA socket on them which enables an external drive to be connected. This is usually intended for extra file storage, but it is also possible to run the operating system from an external drive. This can have the advantage of significantly increasing the read/write performance and your apps will appear to run more quickly.
@@ -465,17 +469,17 @@ When the image is created then use the dd command to copy it both to a microSD cWhen 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:
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.
@@ -518,9 +522,9 @@ So although the Raspberry Pi is cheap and hugely popular it's not supported by tYears 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.
@@ -541,9 +545,9 @@ On the negative side it's a complex system which is not fully decentralized.Within this project Tor is used more to provide accessibility than the anonymity 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.
@@ -561,17 +565,17 @@ Even if you're running the "onion only" build, this only means that sites are acYou 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 onion-addresses-only option aren't really intended to support access via clearnet domains.
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.
@@ -589,17 +593,39 @@ Currently many of the repositories used for applications which are not yet packa+Data protection laws such as GDPR in the EU or the Data Protection Act in the UK usually only apply to formal organizations which are recognized as being legal entities. So you have to be running a business or a charity or some other formal organization in order for the storage of what's known as personally identifying information to potentially become a legal issue. Laws like this usually include: +
+ ++If you're self-hosting then in the language of data protection law the "data controller" and the "data subject" are one and the same, so there isn't any power differential of that sort. Freedombone is only intended for small numbers of users, so if you are hosting more than one person chances are that you know the others quite well and can arrange to update their data or delete their account if that's needed. Even if data protection laws are later extended to include home server type scenarios it's unlikely that this will become a problem. +
+ ++For the mesh version similar applies. Each peer stores their own personal data and it never gets aggregated and stored in any centralized way. +
+This system tries to block port scanners. Any other system trying to scan for open ports will have their IP address added to a temporary block list for 24 hours.
It's not recommended unless there exists some compelling reason for you to be on there. That site asks users to upload the private keys, 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.
@@ -609,9 +635,9 @@ Saying something resembling "only noobs will use crackable private key passphOrdinarily 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:
@@ -669,9 +695,9 @@ In the home environment a box with a good firewall and no GUI components installProbably 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 whitelist and add the site URL. You may also need to disable HTTPS Everywhere when using onion addresses, which don't use https.
@@ -681,9 +707,9 @@ Another factor to be aware of is that it can take a while for the onion addressIt 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 UPS capability 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.
@@ -693,9 +719,9 @@ It was originally designed to run on the Beaglebone Black, but that should be reYes. Freedombone can support a small number of users, for a "friends and family" 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).
@@ -718,9 +744,9 @@ Another point is that Freedombone installations are not intended to support manyCelebrities recommend Signal. It's Free Software so it must be good, right?
@@ -743,9 +769,9 @@ To give credit where it's due Signal is good, but it could be a lot better. TheOn 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.
@@ -755,13 +781,13 @@ The current safest way to chat is to use Conv-There are many other fashionable chat apps 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 other fashionable chat apps 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.
To remove a user:
@@ -776,9 +802,9 @@ Select Administrator controls then Manage Users and then DeleteIf 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.
@@ -792,9 +818,9 @@ On the Freedombone system web logs containing IP addresses are turned off by defThe tripwire will be automatically reset once per week. If you want to reset it earlier then do the following:
@@ -809,9 +835,9 @@ Select Administrator controls then "reset tripwire" using cursors and spa"We kill people based on metadata" @@ -827,9 +853,9 @@ Even when using Freedombone metadata analysis by third parties is still possible
ssh username@domainname -p 2222@@ -885,9 +911,9 @@ Spamassassin is also available and within Mutt you can use the S (shift+s) key t
If you run the command:
@@ -910,9 +936,9 @@ https://www.privateinternetaccess.com/pages/whats-my-ip/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:
@@ -927,9 +953,9 @@ Select Administrator controls then select Security Settings. You wSuppose that you have bought a domain name (rather than using a free subdomain on freedns) and you want to use that instead.
@@ -993,9 +1019,9 @@ You should now be able to send an email from postmaster@mynewdomainname aIf 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:
@@ -1014,9 +1040,9 @@ One thing to be aware of is that Let's Encrypt doesn't support many dynamic DNSNormally 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.
@@ -1035,9 +1061,9 @@ Select Administrator controls then Security settings then RenewMost 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:
@@ -1052,17 +1078,17 @@ Select Administrator controls then Security settings then CreatThat pledge 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 "on our side". Post-nymwars and post-PRISM 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.
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.
@@ -1093,9 +1119,9 @@ So the situation with email presently is pretty bad, and there's a clear selectiIf 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.
@@ -1120,9 +1146,9 @@ You can also set your system to act as a Tor bridge, although this is not recommIf 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.
@@ -1137,9 +1163,9 @@ 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.
@@ -1150,9 +1176,9 @@ After the system has booted successfully the problem should resolve itself on suSometimes after boot the mesh system won't connect to other peers on the network. If this happens select the network restart icon and enter the password, which by default is just "freedombone". Wait for a few minutes to see if it connects.