Browse Source

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

Bob Mottram 7 years ago
parent
commit
22c6cf43cf

+ 3
- 0
doc/EN/app_matrix.org View File

53
 #+end_src
53
 #+end_src
54
 
54
 
55
 You may also want to make another entry with the same settings but replacing *tcp* with *udp*.
55
 You may also want to make another entry with the same settings but replacing *tcp* with *udp*.
56
+
57
+* Mobile app
58
+If you're using the Riot mobile app to access your Matrix homeserver then you can significantly improve battery performance by going to the settings and changing *Sync request timeout* to 30 seconds and *Delay between two sync requests* to 600 seconds.

+ 7
- 0
doc/EN/app_pleroma.org View File

35
 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.
35
 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.
36
 
36
 
37
 Once you have done that then you can disable further registrations from the *Administrator control panel* by going to *App Settings* then *pleroma* then *Disable new account registrations*. This may take a while because the app gets recompiled afterwards.
37
 Once you have done that then you can disable further registrations from the *Administrator control panel* by going to *App Settings* then *pleroma* then *Disable new account registrations*. This may take a while because the app gets recompiled afterwards.
38
+
39
+* Mastodon user interface
40
+If you prefer a Tweetdeck-style user interface, similar to Mastodon, then once you have registered an account navigate to */yourpleromadomainname/web* and log in.
41
+
42
+#+BEGIN_CENTER
43
+[[file:images/pleromamastodon.jpg]]
44
+#+END_CENTER

+ 1
- 1
doc/EN/meshindex.org View File

23
  <table style="width:80%; border:0">
23
  <table style="width:80%; border:0">
24
   <tr>
24
   <tr>
25
     <td><center><b><a href="ssb.apk"><img src="images/ssb.png"/></a></b><br><a href="ssb.apk">Secure Scuttlebutt</a></center></td>
25
     <td><center><b><a href="ssb.apk"><img src="images/ssb.png"/></a></b><br><a href="ssb.apk">Secure Scuttlebutt</a></center></td>
26
-    <td><center><b><h3></h3></b><br></center></td>
26
+    <td><center><b><a href="trifa.apk"><img src="images/trifa.png"/></a></b><br><a href="trifa.apk">Tox</a></center></td>
27
   </tr>
27
   </tr>
28
 </table>
28
 </table>
29
 </center>
29
 </center>

+ 2
- 0
doc/EN/mobile.org View File

82
 
82
 
83
 If you have Syncthing installed then change the settings so that it only syncs when charging and when on wifi. Avoid any apps which might be continuously polling and preventing the device from going into sleep mode when it's not used.
83
 If you have Syncthing installed then change the settings so that it only syncs when charging and when on wifi. Avoid any apps which might be continuously polling and preventing the device from going into sleep mode when it's not used.
84
 
84
 
85
+If you're using the Riot mobile app to access a Matrix homeserver then you can significantly improve battery performance by going to the settings and changing *Sync request timeout* to 30 seconds and *Delay between two sync requests* to 600 seconds.
86
+
85
 * Blocking bad domains
87
 * Blocking bad domains
86
 You can block known bad domains by editing the */system/etc/hosts* file on your device. It is possible to use extensive ad-blocking hosts files used by other ad-blocking systems such as pi-hole, but merely blocking Facebook and Google Analytics will protect you against much of the corporate surveillance which goes on. Even if you don't have a Facebook account this may still be useful since they will still try to create a "ghost profile" of you, so the less data they have the better.
88
 You can block known bad domains by editing the */system/etc/hosts* file on your device. It is possible to use extensive ad-blocking hosts files used by other ad-blocking systems such as pi-hole, but merely blocking Facebook and Google Analytics will protect you against much of the corporate surveillance which goes on. Even if you don't have a Facebook account this may still be useful since they will still try to create a "ghost profile" of you, so the less data they have the better.
87
 
89
 

BIN
image_build/mesh_apps/trifa.apk View File


BIN
img/icon_patchwork.png View File


BIN
img/pleromamastodon.jpg View File


BIN
img/trifa.png View File


+ 1
- 1
src/freedombone-addcert View File

218
     fi
218
     fi
219
 
219
 
220
     if [ ! -f /usr/bin/certbot ]; then
220
     if [ ! -f /usr/bin/certbot ]; then
221
-        apt-get -yq install certbot
221
+        apt-get -yq -t stretch-backports install certbot
222
         groupadd ssl-cert
222
         groupadd ssl-cert
223
         if [ ! -f /usr/bin/certbot ]; then
223
         if [ ! -f /usr/bin/certbot ]; then
224
             echo $'LetsEncrypt certbot failed to install'
224
             echo $'LetsEncrypt certbot failed to install'

+ 3
- 1
src/freedombone-app-matrix View File

51
 MATRIX_FEDERATION_ONION_PORT=8111
51
 MATRIX_FEDERATION_ONION_PORT=8111
52
 MATRIX_ONION_PORT=8109
52
 MATRIX_ONION_PORT=8109
53
 MATRIX_REPO="https://github.com/matrix-org/synapse"
53
 MATRIX_REPO="https://github.com/matrix-org/synapse"
54
-MATRIX_COMMIT='77ea8cbdd7202d75538623c79b3d33119221d02b'
54
+MATRIX_COMMIT='552f123bea1014680ab798b7e34cd1b23424a189'
55
 REPORT_STATS="no"
55
 REPORT_STATS="no"
56
 MATRIX_SECRET=
56
 MATRIX_SECRET=
57
 MATRIX_EXPIRE_MONTHS=1
57
 MATRIX_EXPIRE_MONTHS=1
409
     chown -R matrix:matrix $MATRIX_DATA_DIR
409
     chown -R matrix:matrix $MATRIX_DATA_DIR
410
 
410
 
411
     pip install --upgrade --force "pynacl==0.3.0"
411
     pip install --upgrade --force "pynacl==0.3.0"
412
+    pip install --upgrade --force "phonenumbers>=8.2.0"
412
 
413
 
413
     if [ -f /etc/ssl/certs/${MATRIX_DOMAIN_NAME}.dhparam ]; then
414
     if [ -f /etc/ssl/certs/${MATRIX_DOMAIN_NAME}.dhparam ]; then
414
         chmod 755 /etc/ssl/certs/${MATRIX_DOMAIN_NAME}.dhparam
415
         chmod 755 /etc/ssl/certs/${MATRIX_DOMAIN_NAME}.dhparam
755
     pip install --upgrade pip
756
     pip install --upgrade pip
756
     pip install --upgrade python-ldap
757
     pip install --upgrade python-ldap
757
     pip install --upgrade lxml
758
     pip install --upgrade lxml
759
+    pip install --upgrade --force "phonenumbers>=8.2.0"
758
 
760
 
759
     function_check matrix_nginx
761
     function_check matrix_nginx
760
     matrix_nginx
762
     matrix_nginx

+ 19
- 3
src/freedombone-app-pleroma View File

39
 PLEROMA_PORT=4000
39
 PLEROMA_PORT=4000
40
 PLEROMA_ONION_PORT=8011
40
 PLEROMA_ONION_PORT=8011
41
 PLEROMA_REPO="https://git.pleroma.social/pleroma/pleroma.git"
41
 PLEROMA_REPO="https://git.pleroma.social/pleroma/pleroma.git"
42
-PLEROMA_COMMIT='7252f6b054dfdfac1f9bac77c442c5a1ebd898af'
42
+PLEROMA_COMMIT='5fc6e9d467f69af155627cccaa27616fe7ffc61f'
43
 PLEROMA_ADMIN_PASSWORD=
43
 PLEROMA_ADMIN_PASSWORD=
44
 PLEROMA_DIR=/etc/pleroma
44
 PLEROMA_DIR=/etc/pleroma
45
 PLEROMA_SECRET_KEY=""
45
 PLEROMA_SECRET_KEY=""
64
 
64
 
65
 function pleroma_recompile {
65
 function pleroma_recompile {
66
     # necessary after parameter changes
66
     # necessary after parameter changes
67
+    chown -R pleroma:pleroma $PLEROMA_DIR
67
     sudo -u pleroma mix clean
68
     sudo -u pleroma mix clean
68
     sudo -u pleroma mix deps.compile
69
     sudo -u pleroma mix deps.compile
69
     sudo -u pleroma mix compile
70
     sudo -u pleroma mix compile
208
     run_system_query_postgresql "GRANT ALL ON ALL tables IN SCHEMA public TO pleroma;"
209
     run_system_query_postgresql "GRANT ALL ON ALL tables IN SCHEMA public TO pleroma;"
209
     run_system_query_postgresql "GRANT ALL ON ALL sequences IN SCHEMA public TO pleroma;"
210
     run_system_query_postgresql "GRANT ALL ON ALL sequences IN SCHEMA public TO pleroma;"
210
     run_system_query_postgresql "CREATE EXTENSION citext;"
211
     run_system_query_postgresql "CREATE EXTENSION citext;"
211
-    run_system_query_postgresql "set statement_timeout to 20000;"
212
+    run_system_query_postgresql "set statement_timeout to 40000;"
212
 
213
 
213
     read_config_param "PLEROMA_SECRET_KEY"
214
     read_config_param "PLEROMA_SECRET_KEY"
214
     if [ ${#PLEROMA_SECRET_KEY} -lt 64 ]; then
215
     if [ ${#PLEROMA_SECRET_KEY} -lt 64 ]; then
520
     function_check set_repo_commit
521
     function_check set_repo_commit
521
     set_repo_commit $PLEROMA_DIR "pleroma commit" "$PLEROMA_COMMIT" $PLEROMA_REPO
522
     set_repo_commit $PLEROMA_DIR "pleroma commit" "$PLEROMA_COMMIT" $PLEROMA_REPO
522
     chown -R pleroma:pleroma $PLEROMA_DIR
523
     chown -R pleroma:pleroma $PLEROMA_DIR
524
+
525
+    sudo -u pleroma mix deps.get
523
     pleroma_recompile
526
     pleroma_recompile
524
 }
527
 }
525
 
528
 
639
     rm /etc/systemd/system/pleroma.service
642
     rm /etc/systemd/system/pleroma.service
640
 
643
 
641
     userdel pleroma
644
     userdel pleroma
642
-    apt-get -yq remove esl-erlang elixir erlang-xmerl erlang-dev erlang-parsetools
645
+    #apt-get -yq remove esl-erlang elixir erlang-xmerl erlang-dev erlang-parsetools
643
 
646
 
644
     function_check remove_nodejs
647
     function_check remove_nodejs
645
     remove_nodejs pleroma-backend
648
     remove_nodejs pleroma-backend
865
 
868
 
866
     set_completion_param "pleroma domain" "$PLEROMA_DOMAIN_NAME"
869
     set_completion_param "pleroma domain" "$PLEROMA_DOMAIN_NAME"
867
 
870
 
871
+    # We need to set up the url option again because it somehow gets
872
+    # lost during mix compile
873
+    pleroma_secret=$PLEROMA_DIR/config/dev.secret.exs
874
+    if ! grep -q 'watchers: [],' $pleroma_secret; then
875
+        sed -i 's|watchers: []|watchers: [],|g' $pleroma_secret
876
+    fi
877
+    if ! grep -q 'url:' $pleroma_secret; then
878
+        if [[ $ONION_ONLY == 'no' ]]; then
879
+            sed -i "/watchers: []/a url: [host: \"$PLEROMA_DOMAIN_NAME\", scheme: \"https\", port: 443]" $pleroma_secret
880
+        else
881
+            sed -i "/watchers: []/a url: [host: \"$PLEROMA_ONION_HOSTNAME\", scheme: \"http\", port: 80]" $pleroma_secret
882
+        fi
883
+    fi
868
 
884
 
869
     # daemon
885
     # daemon
870
     echo '[Unit]' > /etc/systemd/system/pleroma.service
886
     echo '[Unit]' > /etc/systemd/system/pleroma.service

+ 2
- 2
src/freedombone-app-riot View File

33
 IN_DEFAULT_INSTALL=0
33
 IN_DEFAULT_INSTALL=0
34
 SHOW_ON_ABOUT=1
34
 SHOW_ON_ABOUT=1
35
 
35
 
36
-RIOT_VERSION='0.12.2'
36
+RIOT_VERSION='0.13.0'
37
 RIOT_FILENAME="riot-v${RIOT_VERSION}"
37
 RIOT_FILENAME="riot-v${RIOT_VERSION}"
38
-RIOT_HASH='d0de730cb3e688040ba5c23680a676dabc94386830582842a4728767ed6dcd7f'
38
+RIOT_HASH='b65535c4c3bfe6407b491f55df238847884ab83a9d5cbdd1f8b4d6e31cbb5870'
39
 RIOT_DOWNLOAD_URL="https://github.com/vector-im/riot-web/releases/download/v${RIOT_VERSION}"
39
 RIOT_DOWNLOAD_URL="https://github.com/vector-im/riot-web/releases/download/v${RIOT_VERSION}"
40
 RIOT_ONION_PORT=8115
40
 RIOT_ONION_PORT=8115
41
 RIOT_ONION_HOSTNAME=
41
 RIOT_ONION_HOSTNAME=

+ 376
- 0
src/freedombone-app-smilodon View File

1
+#!/bin/bash
2
+#
3
+# .---.                  .              .
4
+# |                      |              |
5
+# |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
6
+# |    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-'
7
+# '    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'
8
+#
9
+#                    Freedom in the Cloud
10
+#
11
+# Smilodon ActivityPub app
12
+#
13
+# License
14
+# =======
15
+#
16
+# Copyright (C) 2017 Bob Mottram <bob@freedombone.net>
17
+#
18
+# This program is free software: you can redistribute it and/or modify
19
+# it under the terms of the GNU Affero General Public License as published by
20
+# the Free Software Foundation, either version 3 of the License, or
21
+# (at your option) any later version.
22
+#
23
+# This program is distributed in the hope that it will be useful,
24
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
25
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26
+# GNU Affero General Public License for more details.
27
+#
28
+# You should have received a copy of the GNU Affero General Public License
29
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
30
+
31
+VARIANTS='full full-vim social'
32
+
33
+IN_DEFAULT_INSTALL=0
34
+SHOW_ON_ABOUT=1
35
+SHOW_ICANN_ADDRESS_ON_ABOUT=0
36
+
37
+SMILODON_REPO="https://github.com/bashrc/smilodon"
38
+SMILODON_COMMIT='e17dad10f9d4c00516b9c93a587e4298b3639af3'
39
+SMILODON_ADMIN_PASSWORD=
40
+SMILODON_ONION_PORT=8054
41
+SMILODON_PATH=/etc/smilodon
42
+SMILODON_SECRET_KEY=
43
+
44
+smilodon_variables=(SMILODON_REPO
45
+                    SMILODON_ADMIN_PASSWORD
46
+                    USB_MOUNT
47
+                    SMILODON_SECRET_KEY
48
+                    MY_EMAIL_ADDRESS
49
+                    MY_USERNAME)
50
+
51
+function logging_on_smilodon {
52
+    echo -n ''
53
+}
54
+
55
+function logging_off_smilodon {
56
+    echo -n ''
57
+}
58
+
59
+function remove_user_smilodon {
60
+    remove_username="$1"
61
+}
62
+
63
+function add_user_smilodon {
64
+    new_username="$1"
65
+    new_user_password="$2"
66
+    echo '0'
67
+}
68
+
69
+function install_interactive_smilodon {
70
+    echo -n ''
71
+    APP_INSTALLED=1
72
+}
73
+
74
+function change_password_smilodon {
75
+    curr_username="$1"
76
+    new_user_password="$2"
77
+
78
+    #${PROJECT_NAME}-pass -u "$curr_username" -a smilodon -p "$new_user_password"
79
+}
80
+
81
+function smilodon_create_database {
82
+    if [ ! $SMILODON_ADMIN_PASSWORD ]; then
83
+        return
84
+    fi
85
+
86
+    function_check create_database_mongodb
87
+    create_database_mongodb smilodon "$SMILODON_ADMIN_PASSWORD" smilodon
88
+}
89
+
90
+function reconfigure_smilodon {
91
+    echo -n ''
92
+}
93
+
94
+function upgrade_smilodon {
95
+    CURR_SMILODON_COMMIT=$(get_completion_param "smilodon commit")
96
+    if [[ "$CURR_SMILODON_COMMIT" == "$SMILODON_COMMIT" ]]; then
97
+        return
98
+    fi
99
+
100
+    if [[ $(app_is_installed smilodon) == "1" ]]; then
101
+        systemctl stop smilodon
102
+        function_check set_repo_commit
103
+        set_repo_commit $SMILODON_PATH "smilodon commit" "$SMILODON_COMMIT" $SMILODON_REPO
104
+        chown -R smilodon:smilodon $SMILODON_PATH
105
+        systemctl start smilodon
106
+    fi
107
+
108
+}
109
+
110
+function backup_local_smilodon {
111
+    if [ -d $SMILODON_PATH ]; then
112
+        systemctl stop smilodon
113
+
114
+        USE_MONGODB=1
115
+        function_check backup_database_to_usb
116
+        backup_database_to_usb smilodon
117
+
118
+        backup_directory_to_usb $SMILODON_PATH smilodon
119
+
120
+        systemctl start smilodon
121
+    fi
122
+}
123
+
124
+function restore_local_smilodon {
125
+    temp_restore_dir=/root/tempsmilodon
126
+
127
+    systemctl stop smilodon
128
+
129
+    function_check smilodon_create_database
130
+    smilodon_create_database
131
+
132
+    USE_MONGODB=1
133
+    restore_database smilodon
134
+
135
+    if [ -d ${SMILODON_PATH} ]; then
136
+        if [ -d $temp_restore_dir${SMILODON_PATH} ]; then
137
+            if [ -d $temp_restore_dir${SMILODON_PATH} ]; then
138
+                rm -rf ${SMILODON_PATH}
139
+                mv $temp_restore_dir$SMILODON_PATH ${SMILODON_PATH}/
140
+            else
141
+                cp -r $temp_restore_dir/* ${SMILODON_PATH}/
142
+            fi
143
+            if [ ! "$?" = "0" ]; then
144
+                function_check backup_unmount_drive
145
+                backup_unmount_drive
146
+                systemctl start smilodon
147
+                exit 528823
148
+            fi
149
+            chown -R smilodon:smilodon ${SMILODON_PATH}
150
+        fi
151
+    fi
152
+
153
+    if [ -d $USB_MOUNT/backup/smilodon ]; then
154
+        chown -R smilodon:smilodon ${SMILODON_PATH}
155
+        if [ -d $temp_restore_dir ]; then
156
+            rm -rf $temp_restore_dir
157
+        fi
158
+    fi
159
+
160
+    systemctl start smilodon
161
+}
162
+
163
+function backup_remote_smilodon {
164
+    if [ -d $SMILODON_PATH ]; then
165
+        function_check suspend_site
166
+        suspend_site smilodon
167
+
168
+        systemctl stop smilodon
169
+
170
+        USE_MONGODB=1
171
+        function_check backup_database_to_friend
172
+        backup_database_to_friend smilodon
173
+
174
+        function_check backup_directory_to_friend
175
+        backup_directory_to_friend $SMILODON_PATH smilodon
176
+
177
+        systemctl start smilodon
178
+
179
+        function_check restart_site
180
+        restart_site
181
+    else
182
+        echo $"Smilodon domain specified but not found in $SMILODON_PATH"
183
+    fi
184
+}
185
+
186
+function restore_remote_smilodon {
187
+    temp_restore_dir=/root/tempsmilodon
188
+    if grep -q "smilodon domain" $COMPLETION_FILE; then
189
+        echo $"Restoring smilodon"
190
+        systemctl stop smilodon
191
+
192
+        function_check restore_database_from_friend
193
+
194
+        function_check smilodon_create_database
195
+        smilodon_create_database
196
+
197
+        USE_MONGODB=1
198
+        restore_database_from_friend smilodon
199
+
200
+        if [ -d $SMILODON_PATH ]; then
201
+            if [ -d $temp_restore_dir$SMILODON_PATH ]; then
202
+                rm -rf $SMILODON_PATH
203
+                mv $temp_restore_dir$SMILODON_PATH ${SMILODON_PATH}/
204
+            else
205
+                cp -r $temp_restore_dir/* ${SMILODON_PATH}/
206
+            fi
207
+            if [ ! "$?" = "0" ]; then
208
+                systemctl start smilodon
209
+                exit 6391643
210
+            fi
211
+        fi
212
+
213
+        if [ -d $SERVER_DIRECTORY/backup/smilodon ]; then
214
+            chown -R smilodon:smilodon ${SMILODON_PATH}
215
+        fi
216
+        if [ -d /root/tempsmilodon ]; then
217
+            rm -rf /root/tempsmilodon
218
+        fi
219
+
220
+        systemctl start smilodon
221
+
222
+        echo $"Restore of smilodon complete"
223
+    fi
224
+}
225
+
226
+function remove_smilodon {
227
+    nginx_dissite smilodon
228
+
229
+    systemctl stop smilodon
230
+    systemctl disable smilodon
231
+    rm /etc/systemd/system/smilodon.service
232
+
233
+    function_check remove_onion_service
234
+    remove_onion_service smilodon ${SMILODON_ONION_PORT}
235
+    if [ -f /etc/nginx/sites-available/smilodon ]; then
236
+        rm /etc/nginx/sites-available/smilodon
237
+    fi
238
+
239
+    groupdel -f smilodon
240
+    userdel -r smilodon
241
+
242
+    if [ -d $SMILODON_PATH ]; then
243
+        rm -rf $SMILODON_PATH
244
+    fi
245
+
246
+    function_check remove_mongodb_user
247
+    remove_mongodb_user smilodon
248
+
249
+    function_check drop_database_mongodb
250
+    drop_database_mongodb smilodon
251
+
252
+    function_check remove_mongodb
253
+    remove_mongodb smilodon
254
+
255
+    remove_completion_param install_smilodon
256
+    sed -i '/smilodon/d' $COMPLETION_FILE
257
+}
258
+
259
+function install_smilodon {
260
+    apt-get -yq install python3-pip
261
+
262
+    if [ -d $SMILODON_PATH ]; then
263
+        rm -rf $SMILODON_PATH
264
+    fi
265
+
266
+    if [ -d /repos/smilodon ]; then
267
+        mkdir $SMILODON_PATH
268
+        cp -r -p /repos/smilodon/. $SMILODON_PATH
269
+        cd $SMILODON_PATH
270
+        git pull
271
+    else
272
+        function_check git_clone
273
+        git_clone $SMILODON_REPO $SMILODON_PATH
274
+    fi
275
+
276
+    if [ ! -d $SMILODON_PATH ]; then
277
+        echo $'Could not clone smilodon repo'
278
+        exit 6784783
279
+    fi
280
+    cd $SMILODON_PATH
281
+    git checkout $SMILODON_COMMIT -b $SMILODON_COMMIT
282
+    set_completion_param "smilodon commit" "$SMILODON_COMMIT"
283
+
284
+    groupadd smilodon
285
+    useradd -c "Smilodon system account" -d $SMILODON_PATH -m -r -g smilodon smilodon
286
+
287
+    SMILODON_ONION_HOSTNAME=$(add_onion_service smilodon 80 ${SMILODON_ONION_PORT})
288
+
289
+    if [ ! $SMILODON_SECRET_KEY ]; then
290
+        SMILODON_SECRET_KEY="$(create_password 30)$(create_password 30)$(create_password 30)$(create_password 30)"
291
+    fi
292
+
293
+    if [ -f $IMAGE_PASSWORD_FILE ]; then
294
+        SMILODON_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
295
+    else
296
+        if [ ! $SMILODON_ADMIN_PASSWORD ]; then
297
+            SMILODON_ADMIN_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
298
+        fi
299
+    fi
300
+
301
+    export smilodon_domain_name=$SMILODON_ONION_HOSTNAME
302
+    export secret_key="$SMILODON_SECRET_KEY"
303
+    export mongodb_username='smilodon'
304
+    export mongodb_password="$SMILODON_ADMIN_PASSWORD"
305
+    export smilodon_admin_address=$MY_EMAIL_ADDRESS
306
+    export MAIL_SERVER='localhost'
307
+    export MAIL_PORT=25
308
+
309
+    function_check install_mongodb
310
+    install_mongodb smilodon
311
+
312
+    smilodon_create_database
313
+
314
+    pip3 install -r requirements.txt
315
+    if [ ! "$?" = "0" ]; then
316
+        echo $'Unable to install smilodon dependencies'
317
+        exit 87352835
318
+    fi
319
+
320
+    echo 'server {' > /etc/nginx/sites-available/smilodon
321
+    echo "  listen 127.0.0.1:${SMILODON_ONION_PORT} default_server;" >> /etc/nginx/sites-available/smilodon
322
+    echo "  server_name $SMILODON_ONION_HOSTNAME;" >> /etc/nginx/sites-available/smilodon
323
+    echo '' >> /etc/nginx/sites-available/smilodon
324
+    echo '  access_log /dev/null;' >> /etc/nginx/sites-available/smilodon
325
+    echo '  error_log /dev/null;' >> /etc/nginx/sites-available/smilodon
326
+    echo '' >> /etc/nginx/sites-available/smilodon
327
+    echo '  location / {' >> /etc/nginx/sites-available/smilodon
328
+    echo '      proxy_pass http://localhost:5000;' >> /etc/nginx/sites-available/smilodon
329
+    echo '  }' >> /etc/nginx/sites-available/smilodon
330
+    echo '}' >> /etc/nginx/sites-available/smilodon
331
+
332
+    nginx_ensite smilodon
333
+    systemctl enable mongodb
334
+    systemctl restart mongodb
335
+
336
+    chown -R smilodon:smilodon ${SMILODON_PATH}
337
+
338
+    echo '#!/bin/bash' > ${SMILODON_PATH}/run_smilodon.sh
339
+    echo "cd ${SMILODON_PATH}" >> ${SMILODON_PATH}/run_smilodon.sh
340
+    echo "export smilodon_domain_name=$SMILODON_ONION_HOSTNAME" >> ${SMILODON_PATH}/run_smilodon.sh
341
+    echo "export secret_key='$SMILODON_SECRET_KEY'" >> ${SMILODON_PATH}/run_smilodon.sh
342
+    echo "export mongodb_username='smilodon'" >> ${SMILODON_PATH}/run_smilodon.sh
343
+    echo "export mongodb_password='$SMILODON_ADMIN_PASSWORD'" >> ${SMILODON_PATH}/run_smilodon.sh
344
+    echo "export smilodon_admin_address=$MY_EMAIL_ADDRESS" >> ${SMILODON_PATH}/run_smilodon.sh
345
+    echo "export MAIL_SERVER='localhost'" >> ${SMILODON_PATH}/run_smilodon.sh
346
+    echo "export MAIL_PORT=25" >> ${SMILODON_PATH}/run_smilodon.sh
347
+    echo "python3 run.py" >> ${SMILODON_PATH}/run_smilodon.sh
348
+    chmod +x ${SMILODON_PATH}/run_smilodon.sh
349
+    chown smilodon:smilodon ${SMILODON_PATH}/run_smilodon.sh
350
+
351
+    echo '[Unit]' > /etc/systemd/system/smilodon.service
352
+    echo 'Description=Smilodon ActivityPub messenger' >> /etc/systemd/system/smilodon.service
353
+    echo 'After=network.target mongodb.service' >> /etc/systemd/system/smilodon.service
354
+    echo 'After=tor.service' >> /etc/systemd/system/smilodon.service
355
+    echo '' >> /etc/systemd/system/smilodon.service
356
+    echo '[Service]' >> /etc/systemd/system/smilodon.service
357
+    echo 'User=smilodon' >> /etc/systemd/system/smilodon.service
358
+    echo 'Group=smilodon' >> /etc/systemd/system/smilodon.service
359
+    echo "WorkingDirectory=${SMILODON_PATH}/" >> /etc/systemd/system/smilodon.service
360
+    echo "ExecStart=${SMILODON_PATH}/run_smilodon.sh" >> /etc/systemd/system/smilodon.service
361
+    echo 'Restart=on-failure' >> /etc/systemd/system/smilodon.service
362
+    echo 'RestartSec=10' >> /etc/systemd/system/smilodon.service
363
+    echo '' >> /etc/systemd/system/smilodon.service
364
+    echo '[Install]' >> /etc/systemd/system/smilodon.service
365
+    echo 'WantedBy=multi-user.target' >> /etc/systemd/system/smilodon.service
366
+    systemctl enable smilodon
367
+    systemctl daemon-reload
368
+    systemctl start smilodon
369
+    systemctl restart nginx
370
+
371
+    ${PROJECT_NAME}-pass -u $MY_USERNAME -a smilodon -p "$SMILODON_ADMIN_PASSWORD"
372
+
373
+    APP_INSTALLED=1
374
+}
375
+
376
+# NOTE: deliberately no exit 0

+ 4
- 0
src/freedombone-backup-local View File

31
 PROJECT_NAME='freedombone'
31
 PROJECT_NAME='freedombone'
32
 COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
32
 COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
33
 CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
33
 CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
34
+MONGODB_APPS_FILE=$HOME/.mongodbapps
34
 BACKUP_EXTRA_DIRECTORIES=/root/backup-extra-dirs.csv
35
 BACKUP_EXTRA_DIRECTORIES=/root/backup-extra-dirs.csv
35
 ENABLE_BACKUP_VERIFICATION="no"
36
 ENABLE_BACKUP_VERIFICATION="no"
36
 
37
 
296
     if [ -f $BACKUP_EXTRA_DIRECTORIES ]; then
297
     if [ -f $BACKUP_EXTRA_DIRECTORIES ]; then
297
         cp -f $BACKUP_EXTRA_DIRECTORIES $temp_backup_dir
298
         cp -f $BACKUP_EXTRA_DIRECTORIES $temp_backup_dir
298
     fi
299
     fi
300
+    if [ -f $MONGODB_APPS_FILE ]; then
301
+        cp -f $MONGODB_APPS_FILE $temp_backup_dir
302
+    fi
299
     # nginx password hashes
303
     # nginx password hashes
300
     if [ -f /etc/nginx/.htpasswd ]; then
304
     if [ -f /etc/nginx/.htpasswd ]; then
301
         cp -f /etc/nginx/.htpasswd $temp_backup_dir/htpasswd
305
         cp -f /etc/nginx/.htpasswd $temp_backup_dir/htpasswd

+ 4
- 0
src/freedombone-backup-remote View File

31
 PROJECT_NAME='freedombone'
31
 PROJECT_NAME='freedombone'
32
 COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
32
 COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
33
 CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
33
 CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
34
+MONGODB_APPS_FILE=$HOME/.mongodbapps
34
 BACKUP_EXTRA_DIRECTORIES=/root/backup-extra-dirs.csv
35
 BACKUP_EXTRA_DIRECTORIES=/root/backup-extra-dirs.csv
35
 ENABLE_VERIFICATION="no"
36
 ENABLE_VERIFICATION="no"
36
 
37
 
142
     if [ -f $BACKUP_EXTRA_DIRECTORIES ]; then
143
     if [ -f $BACKUP_EXTRA_DIRECTORIES ]; then
143
         cp -f $BACKUP_EXTRA_DIRECTORIES $temp_backup_dir
144
         cp -f $BACKUP_EXTRA_DIRECTORIES $temp_backup_dir
144
     fi
145
     fi
146
+    if [ -f $MONGODB_APPS_FILE ]; then
147
+        cp -f $MONGODB_APPS_FILE $temp_backup_dir
148
+    fi
145
     # nginx password hashes
149
     # nginx password hashes
146
     if [ -f /etc/nginx/.htpasswd ]; then
150
     if [ -f /etc/nginx/.htpasswd ]; then
147
         cp -f /etc/nginx/.htpasswd $temp_backup_dir/htpasswd
151
         cp -f /etc/nginx/.htpasswd $temp_backup_dir/htpasswd

+ 4
- 1
src/freedombone-image-customise View File

685
     # install tor as a possible way of routing traffic between internet gateways
685
     # install tor as a possible way of routing traffic between internet gateways
686
     chroot "$rootdir" apt-get -yq install tor
686
     chroot "$rootdir" apt-get -yq install tor
687
 
687
 
688
+    # dhcp daemon for hotspot on secondary wifi adapter
689
+    chroot "$rootdir" apt-get -yq install dnsmasq
690
+
688
     configure_firewall
691
     configure_firewall
689
     install_avahi
692
     install_avahi
690
     install_batman
693
     install_batman
1256
     chroot "$rootdir" /bin/chown -R ${MY_USERNAME}:${MY_USERNAME} /home/${MY_USERNAME}/help
1259
     chroot "$rootdir" /bin/chown -R ${MY_USERNAME}:${MY_USERNAME} /home/${MY_USERNAME}/help
1257
 
1260
 
1258
     # Tox user interface
1261
     # Tox user interface
1259
-    enable_tox_repo
1262
+    #enable_tox_repo
1260
     mesh_tox_qtox
1263
     mesh_tox_qtox
1261
     # copy the default qtox ini file
1264
     # copy the default qtox ini file
1262
     if [ ! -d ${rootdir}/home/${MY_USERNAME}/.config/tox ]; then
1265
     if [ ! -d ${rootdir}/home/${MY_USERNAME}/.config/tox ]; then

+ 70
- 35
src/freedombone-mesh-batman View File

101
 }
101
 }
102
 
102
 
103
 function mesh_hotspot_ip_address {
103
 function mesh_hotspot_ip_address {
104
-    echo $(ip -o -f inet addr show dev "$BRIDGE" | awk '{print $4}' | awk 'END {print}' | awk -F '/' '{print $1}')
104
+    echo $(ip -o -f inet addr show dev "${BRIDGE}" | awk '{print $4}' | awk 'END {print}' | awk -F '/' '{print $1}')
105
 }
105
 }
106
 
106
 
107
 function global_rate_limit {
107
 function global_rate_limit {
122
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
122
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
123
         return
123
         return
124
     fi
124
     fi
125
+
126
+    systemctl stop dnsmasq
127
+    systemctl disable dnsmasq
128
+
125
     if [ "$EIFACE" ]; then
129
     if [ "$EIFACE" ]; then
126
         brctl delif $BRIDGE bat0
130
         brctl delif $BRIDGE bat0
127
         ifconfig $BRIDGE down || true
131
         ifconfig $BRIDGE down || true
280
     if [ ! -f /var/www/html/ssb.apk ]; then
284
     if [ ! -f /var/www/html/ssb.apk ]; then
281
         cp /root/$PROJECT_NAME/image_build/mesh_apps/ssb.apk /var/www/html/ssb.apk
285
         cp /root/$PROJECT_NAME/image_build/mesh_apps/ssb.apk /var/www/html/ssb.apk
282
     fi
286
     fi
287
+    if [ ! -f /var/www/html/trifa.apk ]; then
288
+        cp /root/$PROJECT_NAME/image_build/mesh_apps/trifa.apk /var/www/html/trifa.apk
289
+    fi
283
     if [ ! -d /var/www/html/images ]; then
290
     if [ ! -d /var/www/html/images ]; then
284
         mkdir /var/www/html/images
291
         mkdir /var/www/html/images
285
     fi
292
     fi
289
     if [ ! -f /var/www/html/images/ssb.png ]; then
296
     if [ ! -f /var/www/html/images/ssb.png ]; then
290
         cp /root/$PROJECT_NAME/img/icon_patchwork.png /var/www/html/images/ssb.png
297
         cp /root/$PROJECT_NAME/img/icon_patchwork.png /var/www/html/images/ssb.png
291
     fi
298
     fi
299
+    if [ ! -f /var/www/html/images/trifa.png ]; then
300
+        cp /root/$PROJECT_NAME/img/trifa.png /var/www/html/images/trifa.png
301
+    fi
292
     if [ ! -f /var/www/html/freedombone.css ]; then
302
     if [ ! -f /var/www/html/freedombone.css ]; then
293
         cp /root/$PROJECT_NAME/website/freedombone.css /var/www/html/freedombone.css
303
         cp /root/$PROJECT_NAME/website/freedombone.css /var/www/html/freedombone.css
294
     fi
304
     fi
296
 }
306
 }
297
 
307
 
298
 function start {
308
 function start {
309
+    update_wifi_adaptors
310
+
299
     if [ -z "$IFACE" ] ; then
311
     if [ -z "$IFACE" ] ; then
300
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
312
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
301
         exit 723657
313
         exit 723657
305
     systemctl stop network-manager
317
     systemctl stop network-manager
306
     sleep 5
318
     sleep 5
307
 
319
 
320
+    systemctl stop dnsmasq
321
+    systemctl disable dnsmasq
322
+
308
     # remove an avahi service which isn't used
323
     # remove an avahi service which isn't used
309
     if [ -f /etc/avahi/services/udisks.service ]; then
324
     if [ -f /etc/avahi/services/udisks.service ]; then
310
         sudo rm /etc/avahi/services/udisks.service
325
         sudo rm /etc/avahi/services/udisks.service
340
     brctl addbr $BRIDGE
355
     brctl addbr $BRIDGE
341
     brctl addif $BRIDGE bat0
356
     brctl addif $BRIDGE bat0
342
     ifconfig bat0 0.0.0.0
357
     ifconfig bat0 0.0.0.0
358
+    ethernet_connected='0'
343
     if [ "$EIFACE" ] ; then
359
     if [ "$EIFACE" ] ; then
344
         ethernet_connected=$(cat /sys/class/net/$EIFACE/carrier)
360
         ethernet_connected=$(cat /sys/class/net/$EIFACE/carrier)
345
         if [[ "$ethernet_connected" != "0" ]]; then
361
         if [[ "$ethernet_connected" != "0" ]]; then
358
     if [ $secondary_wifi_available ]; then
374
     if [ $secondary_wifi_available ]; then
359
         sed -i 's|#DAEMON_CONF=.*|DAEMON_CONF="/etc/hostapd/hostapd.conf"|g' /etc/default/hostapd
375
         sed -i 's|#DAEMON_CONF=.*|DAEMON_CONF="/etc/hostapd/hostapd.conf"|g' /etc/default/hostapd
360
 
376
 
361
-        echo "interface=${IFACE_SECONDARY}" > /etc/hostapd/hostapd.conf
362
-        echo "bridge=${BRIDGE}" >> /etc/hostapd/hostapd.conf
363
-        echo 'driver=nl80211' >> /etc/hostapd/hostapd.conf
364
-        echo "country_code=UK" >> /etc/hostapd/hostapd.conf
365
-        echo "ssid=${WIFI_SSID}-$(mesh_hotspot_ip_address)" >> /etc/hostapd/hostapd.conf
366
-        echo 'hw_mode=g' >> /etc/hostapd/hostapd.conf
367
-        echo "channel=${HOTSPOT_CHANNEL}" >> /etc/hostapd/hostapd.conf
368
-        echo 'wpa=2' >> /etc/hostapd/hostapd.conf
369
-        echo "wpa_passphrase=$HOTSPOT_PASSPHRASE" >> /etc/hostapd/hostapd.conf
370
-        echo 'wpa_key_mgmt=WPA-PSK' >> /etc/hostapd/hostapd.conf
371
-        echo 'wpa_pairwise=TKIP' >> /etc/hostapd/hostapd.conf
372
-        echo 'rsn_pairwise=CCMP' >> /etc/hostapd/hostapd.conf
373
-        echo 'auth_algs=1' >> /etc/hostapd/hostapd.conf
374
-        echo 'macaddr_acl=0' >> /etc/hostapd/hostapd.conf
375
-
376
-        systemctl enable hostapd
377
-        systemctl restart hostapd
378
-        mesh_create_app_downloads_page
379
-    else
377
+        mesh_hotspot_address=$(mesh_hotspot_ip_address)
378
+        if [[ "$mesh_hotspot_address" == *'.'* ]]; then
379
+            echo "interface=${IFACE_SECONDARY}" > /etc/hostapd/hostapd.conf
380
+            echo "bridge=${BRIDGE}" >> /etc/hostapd/hostapd.conf
381
+            echo 'driver=nl80211' >> /etc/hostapd/hostapd.conf
382
+            echo "country_code=UK" >> /etc/hostapd/hostapd.conf
383
+            echo "ssid=${WIFI_SSID}-${mesh_hotspot_address}" >> /etc/hostapd/hostapd.conf
384
+            echo 'hw_mode=g' >> /etc/hostapd/hostapd.conf
385
+            echo "channel=${HOTSPOT_CHANNEL}" >> /etc/hostapd/hostapd.conf
386
+            echo 'wpa=2' >> /etc/hostapd/hostapd.conf
387
+            echo "wpa_passphrase=$HOTSPOT_PASSPHRASE" >> /etc/hostapd/hostapd.conf
388
+            echo 'wpa_key_mgmt=WPA-PSK' >> /etc/hostapd/hostapd.conf
389
+            echo 'wpa_pairwise=TKIP' >> /etc/hostapd/hostapd.conf
390
+            echo 'rsn_pairwise=CCMP' >> /etc/hostapd/hostapd.conf
391
+            echo 'auth_algs=1' >> /etc/hostapd/hostapd.conf
392
+            echo 'macaddr_acl=0' >> /etc/hostapd/hostapd.conf
393
+
394
+            sed -i "s|#interface=.*|interface=${IFACE_SECONDARY}|g" /etc/dnsmasq.conf
395
+            sed -i "s|interface=.*|interface=${IFACE_SECONDARY}|g" /etc/dnsmasq.conf
396
+            sed -i "s|listen-address=.*|listen-address=127.0.0.1,$mesh_hotspot_address|g" /etc/dnsmasq.conf
397
+            sed -i 's|#listen-address|listen-address|g' /etc/dnsmasq.conf
398
+            systemctl enable dnsmasq
399
+            systemctl restart dnsmasq
400
+
401
+            systemctl enable hostapd
402
+            systemctl restart hostapd
403
+            mesh_create_app_downloads_page
404
+        else
405
+            secondary_wifi_available=
406
+            echo $'WARNING: No IP address could be obtained for the hotspot'
407
+        fi
408
+    fi
409
+
410
+    if [ ! $secondary_wifi_available ]; then
411
+        systemctl stop hostapd
412
+        systemctl disable hostapd
413
+
380
         # Recreate the cryptpad symlink
414
         # Recreate the cryptpad symlink
381
         if [ -f /etc/nginx/sites-available/cryptpad ]; then
415
         if [ -f /etc/nginx/sites-available/cryptpad ]; then
382
             if [ -L /etc/nginx/sites-enabled/cryptpad ]; then
416
             if [ -L /etc/nginx/sites-enabled/cryptpad ]; then
420
     iptables -A INPUT -p tcp --dport 8008 -j ACCEPT
454
     iptables -A INPUT -p tcp --dport 8008 -j ACCEPT
421
     iptables -A INPUT -p udp --dport 8010 -j ACCEPT
455
     iptables -A INPUT -p udp --dport 8010 -j ACCEPT
422
     iptables -A INPUT -p tcp --dport 8010 -j ACCEPT
456
     iptables -A INPUT -p tcp --dport 8010 -j ACCEPT
423
-    # vpn over the internet
424
-    iptables -A INPUT -p tcp --dport 653 -j ACCEPT
425
-    iptables -A INPUT -p udp --dport 653 -j ACCEPT
426
-    iptables -A INPUT -i ${EIFACE} -m state --state NEW -p tcp --dport 1194 -j ACCEPT
427
-    iptables -A INPUT -i tun+ -j ACCEPT
428
-    iptables -A FORWARD -i tun+ -j ACCEPT
429
-    iptables -A FORWARD -i tun+ -o ${EIFACE} -m state --state RELATED,ESTABLISHED -j ACCEPT
430
-    iptables -A FORWARD -i ${EIFACE} -o tun+ -m state --state RELATED,ESTABLISHED -j ACCEPT
431
-    iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o ${EIFACE} -j MASQUERADE
432
-    iptables -A OUTPUT -o tun+ -j ACCEPT
433
-
434
-    echo 1 > /proc/sys/net/ipv4/ip_forward
435
-    sed -i 's|# net.ipv4.ip_forward|net.ipv4.ip_forward|g' /etc/sysctl.conf
436
-    sed -i 's|#net.ipv4.ip_forward|net.ipv4.ip_forward|g' /etc/sysctl.conf
437
-    sed -i 's|net.ipv4.ip_forward.*|net.ipv4.ip_forward=1|g' /etc/sysctl.conf
457
+    if [[ "$ethernet_connected" != "0" ]]; then
458
+        # vpn over the internet
459
+        iptables -A INPUT -p tcp --dport 653 -j ACCEPT
460
+        iptables -A INPUT -p udp --dport 653 -j ACCEPT
461
+        iptables -A INPUT -i ${EIFACE} -m state --state NEW -p tcp --dport 1194 -j ACCEPT
462
+        iptables -A INPUT -i tun+ -j ACCEPT
463
+        iptables -A FORWARD -i tun+ -j ACCEPT
464
+        iptables -A FORWARD -i tun+ -o ${EIFACE} -m state --state RELATED,ESTABLISHED -j ACCEPT
465
+        iptables -A FORWARD -i ${EIFACE} -o tun+ -m state --state RELATED,ESTABLISHED -j ACCEPT
466
+        iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o ${EIFACE} -j MASQUERADE
467
+        iptables -A OUTPUT -o tun+ -j ACCEPT
468
+        echo 1 > /proc/sys/net/ipv4/ip_forward
469
+        sed -i 's|# net.ipv4.ip_forward|net.ipv4.ip_forward|g' /etc/sysctl.conf
470
+        sed -i 's|#net.ipv4.ip_forward|net.ipv4.ip_forward|g' /etc/sysctl.conf
471
+        sed -i 's|net.ipv4.ip_forward.*|net.ipv4.ip_forward=1|g' /etc/sysctl.conf
472
+    fi
438
 
473
 
439
     systemctl restart avahi-daemon
474
     systemctl restart avahi-daemon
440
 
475
 

+ 11
- 0
src/freedombone-restore-local View File

30
 
30
 
31
 PROJECT_NAME='freedombone'
31
 PROJECT_NAME='freedombone'
32
 COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
32
 COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
33
+MONGODB_APPS_FILE=$HOME/.mongodbapps
33
 CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
34
 CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
34
 BACKUP_EXTRA_DIRECTORIES=/root/backup-extra-dirs.csv
35
 BACKUP_EXTRA_DIRECTORIES=/root/backup-extra-dirs.csv
35
 
36
 
184
         #    fi
185
         #    fi
185
         #fi
186
         #fi
186
 
187
 
188
+        if [ -f $temp_restore_dir$MONGODB_APPS_FILE ]; then
189
+            cp -f $temp_restore_dir$MONGODB_APPS_FILE $MONGODB_APPS_FILE
190
+            if [ ! "$?" = "0" ]; then
191
+                set_user_permissions
192
+                backup_unmount_drive
193
+                rm -rf $temp_restore_dir
194
+                exit 859034853
195
+            fi
196
+        fi
197
+
187
         #if [ -f $CONFIGURATION_FILE ]; then
198
         #if [ -f $CONFIGURATION_FILE ]; then
188
         #    # install according to the config file
199
         #    # install according to the config file
189
         #    freedombone -c $CONFIGURATION_FILE
200
         #    freedombone -c $CONFIGURATION_FILE

+ 10
- 0
src/freedombone-restore-remote View File

31
 PROJECT_NAME='freedombone'
31
 PROJECT_NAME='freedombone'
32
 COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
32
 COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
33
 CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
33
 CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
34
+MONGODB_APPS_FILE=$HOME/.mongodbapps
34
 BACKUP_EXTRA_DIRECTORIES=/root/backup-extra-dirs.csv
35
 BACKUP_EXTRA_DIRECTORIES=/root/backup-extra-dirs.csv
35
 
36
 
36
 export TEXTDOMAIN=${PROJECT_NAME}-restore-remote
37
 export TEXTDOMAIN=${PROJECT_NAME}-restore-remote
172
         #    fi
173
         #    fi
173
         #fi
174
         #fi
174
 
175
 
176
+        if [ -f $temp_restore_dir$MONGODB_APPS_FILE ]; then
177
+            cp -f $temp_restore_dir$MONGODB_APPS_FILE $MONGODB_APPS_FILE
178
+            if [ ! "$?" = "0" ]; then
179
+                unmount_drive
180
+                rm -rf $temp_restore_dir
181
+                exit 7835335
182
+            fi
183
+        fi
184
+
175
         #if [ -f $CONFIGURATION_FILE ]; then
185
         #if [ -f $CONFIGURATION_FILE ]; then
176
         #    # install according to the config file
186
         #    # install according to the config file
177
         #    freedombone -c $CONFIGURATION_FILE
187
         #    freedombone -c $CONFIGURATION_FILE

+ 1
- 0
src/freedombone-upgrade View File

93
             exit 453536
93
             exit 453536
94
         fi
94
         fi
95
 
95
 
96
+        apt-get -yq -t stretch-backports install certbot
96
         email_install_tls
97
         email_install_tls
97
         defrag_filesystem
98
         defrag_filesystem
98
     fi
99
     fi

+ 85
- 29
src/freedombone-utils-backup View File

236
         mkdir -p ${local_database_dir}
236
         mkdir -p ${local_database_dir}
237
     fi
237
     fi
238
     echo $"Obtaining ${1} database backup"
238
     echo $"Obtaining ${1} database backup"
239
+    database_file_extension='sql'
240
+    if [ $USE_MONGODB ]; then
241
+        database_file_extension='mdb'
242
+        USE_POSTGRESQL=
243
+    fi
239
     if [ ! $USE_POSTGRESQL ]; then
244
     if [ ! $USE_POSTGRESQL ]; then
240
-        keep_database_running
241
-        mysqldump --lock-tables --password="$DATABASE_PASSWORD" ${1} > ${local_database_dir}/${1}.sql
245
+        if [ ! $USE_MONGODB ]; then
246
+            USE_MONGODB=
247
+            USE_POSTGRESQL=
248
+            keep_database_running
249
+            mysqldump --lock-tables --password="$DATABASE_PASSWORD" ${1} > ${local_database_dir}/${1}.${database_file_extension}
250
+        else
251
+            USE_MONGODB=
252
+            USE_POSTGRESQL=
253
+            mongodump --db ${1} --archive=${local_database_dir}/${1}.${database_file_extension} --gzip
254
+        fi
242
     else
255
     else
256
+        USE_MONGODB=
243
         USE_POSTGRESQL=
257
         USE_POSTGRESQL=
244
-        sudo -u postgres pg_dump ${1} > ${local_database_dir}/${1}.sql
258
+        sudo -u postgres pg_dump ${1} > ${local_database_dir}/${1}.${database_file_extension}
245
     fi
259
     fi
246
-    if [ -f ${local_database_dir}/${1}.sql ]; then
247
-        if [ ! -s ${local_database_dir}/${1}.sql ]; then
260
+    if [ -f ${local_database_dir}/${1}.${database_file_extension} ]; then
261
+        if [ ! -s ${local_database_dir}/${1}.${database_file_extension} ]; then
248
             echo $"${1} database could not be saved"
262
             echo $"${1} database could not be saved"
249
             shred -zu ${local_database_dir}/*
263
             shred -zu ${local_database_dir}/*
250
             rm -rf ${local_database_dir}
264
             rm -rf ${local_database_dir}
552
     fi
566
     fi
553
 
567
 
554
     echo "Obtaining ${1} database backup"
568
     echo "Obtaining ${1} database backup"
569
+    database_file_extension='sql'
570
+    if [ $USE_MONGODB ]; then
571
+        database_file_extension='mdb'
572
+        USE_POSTGRESQL=
573
+    fi
555
     if [ ! $USE_POSTGRESQL ]; then
574
     if [ ! $USE_POSTGRESQL ]; then
556
-        keep_database_running
557
-        mysqldump --lock-tables --password="$DATABASE_PASSWORD" ${1} > ${local_database_dir}/${1}.sql
575
+        if [ ! $USE_MONGODB ]; then
576
+            USE_MONGODB=
577
+            USE_POSTGRESQL=
578
+            keep_database_running
579
+            mysqldump --lock-tables --password="$DATABASE_PASSWORD" ${1} > ${local_database_dir}/${1}.${database_file_extension}
580
+        else
581
+            USE_MONGODB=
582
+            USE_POSTGRESQL=
583
+            mongodump --db ${1} --archive=${local_database_dir}/${1}.${database_file_extension} --gzip
584
+        fi
558
     else
585
     else
586
+        USE_MONGODB=
559
         USE_POSTGRESQL=
587
         USE_POSTGRESQL=
560
-        sudo -u postgres pg_dump ${1} > ${local_database_dir}/${1}.sql
588
+        sudo -u postgres pg_dump ${1} > ${local_database_dir}/${1}.${database_file_extension}
561
     fi
589
     fi
562
 
590
 
563
-    if [ -f ${local_database_dir}/${1}.sql ]; then
564
-        if [ ! -s ${local_database_dir}/${1}.sql ]; then
591
+    if [ -f ${local_database_dir}/${1}.${database_file_extension} ]; then
592
+        if [ ! -s ${local_database_dir}/${1}.${database_file_extension} ]; then
565
             echo $"${1} database could not be saved"
593
             echo $"${1} database could not be saved"
566
             shred -zu ${local_database_dir}/*
594
             shred -zu ${local_database_dir}/*
567
             rm -rf ${local_database_dir}
595
             rm -rf ${local_database_dir}
569
             echo $"Unable to export ${1} database" | mail -s $"${PROJECT_NAME} backup to friends" $ADMIN_EMAIL_ADDRESS
597
             echo $"Unable to export ${1} database" | mail -s $"${PROJECT_NAME} backup to friends" $ADMIN_EMAIL_ADDRESS
570
             function_check restart_site
598
             function_check restart_site
571
             restart_site
599
             restart_site
572
-            exit 5738
600
+            exit 57386728
573
         fi
601
         fi
574
     else
602
     else
575
         echo $"${1} database could not be dumped"
603
         echo $"${1} database could not be dumped"
578
         echo $"Unable to dump ${1} database" | mail -s $"${PROJECT_NAME} backup to friends" $ADMIN_EMAIL_ADDRESS
606
         echo $"Unable to dump ${1} database" | mail -s $"${PROJECT_NAME} backup to friends" $ADMIN_EMAIL_ADDRESS
579
         function_check restart_site
607
         function_check restart_site
580
         restart_site
608
         restart_site
581
-        exit 3687
609
+        exit 36874289
582
     fi
610
     fi
583
 }
611
 }
584
 
612
 
642
     RESTORE_SUBDIR="root"
670
     RESTORE_SUBDIR="root"
643
 
671
 
644
     if [ -d $SERVER_DIRECTORY/backup/${1} ]; then
672
     if [ -d $SERVER_DIRECTORY/backup/${1} ]; then
673
+        database_file_extension='sql'
674
+        if [ $USE_MONGODB ]; then
675
+            database_file_extension='mdb'
676
+            USE_POSTGRESQL=
677
+        fi
645
         echo $"Restoring ${1} database"
678
         echo $"Restoring ${1} database"
646
         local_database_dir=/root/temp${1}data
679
         local_database_dir=/root/temp${1}data
647
         restore_directory_from_friend ${local_database_dir} ${1}data
680
         restore_directory_from_friend ${local_database_dir} ${1}data
648
-        database_file=${local_database_dir}/${RESTORE_SUBDIR}/temp${restore_app_name}data/${restore_app_name}.sql
681
+        database_file=${local_database_dir}/${RESTORE_SUBDIR}/temp${restore_app_name}data/${restore_app_name}.${database_file_extension}
649
         if [ ! -f $database_file ]; then
682
         if [ ! -f $database_file ]; then
650
-            database_file=${local_database_dir}/${restore_app_name}.sql
683
+            database_file=${local_database_dir}/${restore_app_name}.${database_file_extension}
651
         fi
684
         fi
652
         if [ ! -f $database_file ]; then
685
         if [ ! -f $database_file ]; then
653
             echo $"Unable to restore ${1} database"
686
             echo $"Unable to restore ${1} database"
654
             rm -rf ${local_database_dir}
687
             rm -rf ${local_database_dir}
655
-            exit 503
688
+            exit 5289252
656
         fi
689
         fi
657
         if [ ! $USE_POSTGRESQL ]; then
690
         if [ ! $USE_POSTGRESQL ]; then
658
-            keep_database_running
659
-            mysqlsuccess=$(mysql -u root --password="$DATABASE_PASSWORD" ${1} -o < ${local_database_dir}/${RESTORE_SUBDIR}/temp${1}data/${1}.sql)
691
+            if [ ! $USE_MONGODB ]; then
692
+                USE_MONGODB=
693
+                USE_POSTGRESQL=
694
+                keep_database_running
695
+                mysqlsuccess=$(mysql -u root --password="$DATABASE_PASSWORD" ${restore_app_name} -o < ${database_file})
696
+            else
697
+                USE_MONGODB=
698
+                USE_POSTGRESQL=
699
+                mongorestore --gzip --archive=${database_file} --db ${restore_app_name}
700
+            fi
660
         else
701
         else
702
+            USE_MONGODB=
661
             USE_POSTGRESQL=
703
             USE_POSTGRESQL=
662
-            mysqlsuccess=$(sudo -u postgres pg_restore ${local_database_dir}/${RESTORE_SUBDIR}/temp${1}data/${1}.sql)
704
+            mysqlsuccess=$(sudo -u postgres pg_restore ${database_file})
663
         fi
705
         fi
664
         if [ ! "$?" = "0" ]; then
706
         if [ ! "$?" = "0" ]; then
665
             echo "$mysqlsuccess"
707
             echo "$mysqlsuccess"
666
-            exit 964
708
+            exit 8735271
667
         fi
709
         fi
668
         if [ -d ${local_database_dir}/${RESTORE_SUBDIR}/temp${1}data ]; then
710
         if [ -d ${local_database_dir}/${RESTORE_SUBDIR}/temp${1}data ]; then
669
             shred -zu ${local_database_dir}/${RESTORE_SUBDIR}/temp${1}data/*
711
             shred -zu ${local_database_dir}/${RESTORE_SUBDIR}/temp${1}data/*
670
         else
712
         else
671
-            shred -zu ${local_database_dir}/*.sql
713
+            shred -zu ${local_database_dir}/*.${database_file_extension}
672
         fi
714
         fi
673
         rm -rf ${local_database_dir}
715
         rm -rf ${local_database_dir}
674
         echo $"Restoring ${1} installation"
716
         echo $"Restoring ${1} installation"
695
                         cp -r $restore_from_dir/* /var/www/${2}/htdocs/
737
                         cp -r $restore_from_dir/* /var/www/${2}/htdocs/
696
                     fi
738
                     fi
697
                     if [ ! "$?" = "0" ]; then
739
                     if [ ! "$?" = "0" ]; then
698
-                        exit 683
740
+                        exit 78352682
699
                     fi
741
                     fi
700
                     if [ -d /etc/letsencrypt/live/${2} ]; then
742
                     if [ -d /etc/letsencrypt/live/${2} ]; then
701
                         ln -s /etc/letsencrypt/live/${2}/privkey.pem /etc/ssl/private/${2}.key
743
                         ln -s /etc/letsencrypt/live/${2}/privkey.pem /etc/ssl/private/${2}.key
725
         fi
767
         fi
726
         function_check restore_directory_from_usb
768
         function_check restore_directory_from_usb
727
         restore_directory_from_usb "${local_database_dir}" "${restore_app_name}data"
769
         restore_directory_from_usb "${local_database_dir}" "${restore_app_name}data"
728
-        database_file=${local_database_dir}/${RESTORE_SUBDIR}/temp${restore_app_name}data/${restore_app_name}.sql
770
+        database_file_extension='sql'
771
+        if [ $USE_MONGODB ]; then
772
+            database_file_extension='mdb'
773
+            USE_POSTGRESQL=
774
+        fi
775
+        database_file=${local_database_dir}/${RESTORE_SUBDIR}/temp${restore_app_name}data/${restore_app_name}.${database_file_extension}
729
         if [ ! -f $database_file ]; then
776
         if [ ! -f $database_file ]; then
730
-            database_file=${local_database_dir}/${restore_app_name}.sql
777
+            database_file=${local_database_dir}/${restore_app_name}.${database_file_extension}
731
         fi
778
         fi
732
         if [ ! -f $database_file ]; then
779
         if [ ! -f $database_file ]; then
733
             echo $"Unable to restore ${restore_app_name} database"
780
             echo $"Unable to restore ${restore_app_name} database"
736
             set_user_permissions
783
             set_user_permissions
737
             function_check backup_unmount_drive
784
             function_check backup_unmount_drive
738
             backup_unmount_drive
785
             backup_unmount_drive
739
-            exit 503
786
+            exit 7825235
740
         fi
787
         fi
741
         if [ ! $USE_POSTGRESQL ]; then
788
         if [ ! $USE_POSTGRESQL ]; then
742
-            keep_database_running
743
-            mysqlsuccess=$(mysql -u root --password="$DATABASE_PASSWORD" ${restore_app_name} -o < $database_file)
789
+            if [ ! $USE_MONGODB ]; then
790
+                USE_MONGODB=
791
+                USE_POSTGRESQL=
792
+                keep_database_running
793
+                mysqlsuccess=$(mysql -u root --password="$DATABASE_PASSWORD" ${restore_app_name} -o < $database_file)
794
+            else
795
+                USE_MONGODB=
796
+                USE_POSTGRESQL=
797
+                mongorestore --gzip --archive=$database_file --db ${restore_app_name}
798
+            fi
744
         else
799
         else
800
+            USE_MONGODB=
745
             USE_POSTGRESQL=
801
             USE_POSTGRESQL=
746
             mysqlsuccess=$(sudo -u postgres pg_restore $database_file)
802
             mysqlsuccess=$(sudo -u postgres pg_restore $database_file)
747
         fi
803
         fi
751
             set_user_permissions
807
             set_user_permissions
752
             function_check set_user_permissions
808
             function_check set_user_permissions
753
             backup_unmount_drive
809
             backup_unmount_drive
754
-            exit 964
810
+            exit 482638995
755
         fi
811
         fi
756
         if [ -d ${local_database_dir}/${RESTORE_SUBDIR}/temp${restore_app_name}data ]; then
812
         if [ -d ${local_database_dir}/${RESTORE_SUBDIR}/temp${restore_app_name}data ]; then
757
             shred -zu ${local_database_dir}/${RESTORE_SUBDIR}/temp${restore_app_name}data/*
813
             shred -zu ${local_database_dir}/${RESTORE_SUBDIR}/temp${restore_app_name}data/*
758
         else
814
         else
759
-            shred -zu ${local_database_dir}/*.sql
815
+            shred -zu ${local_database_dir}/*.${database_file_extension}
760
         fi
816
         fi
761
 
817
 
762
         rm -rf ${local_database_dir}
818
         rm -rf ${local_database_dir}
789
                     if [ ! "$?" = "0" ]; then
845
                     if [ ! "$?" = "0" ]; then
790
                         set_user_permissions
846
                         set_user_permissions
791
                         backup_unmount_drive
847
                         backup_unmount_drive
792
-                        exit 683
848
+                        exit 78252429
793
                     fi
849
                     fi
794
                     if [ -d /etc/letsencrypt/live/${restore_app_domain} ]; then
850
                     if [ -d /etc/letsencrypt/live/${restore_app_domain} ]; then
795
                         ln -s /etc/letsencrypt/live/${restore_app_domain}/privkey.pem /etc/ssl/private/${restore_app_domain}.key
851
                         ln -s /etc/letsencrypt/live/${restore_app_domain}/privkey.pem /etc/ssl/private/${restore_app_domain}.key

+ 176
- 0
src/freedombone-utils-mongodb View File

1
+#!/bin/bash
2
+#
3
+# .---.                  .              .
4
+# |                      |              |
5
+# |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
6
+# |    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-'
7
+# '    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'
8
+#
9
+#                    Freedom in the Cloud
10
+#
11
+# mongodb database functions
12
+#
13
+# License
14
+# =======
15
+#
16
+# Copyright (C) 2017 Bob Mottram <bob@freedombone.net>
17
+#
18
+# This program is free software: you can redistribute it and/or modify
19
+# it under the terms of the GNU Affero General Public License as published by
20
+# the Free Software Foundation, either version 3 of the License, or
21
+# (at your option) any later version.
22
+#
23
+# This program is distributed in the hope that it will be useful,
24
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
25
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26
+# GNU Affero General Public License for more details.
27
+#
28
+# You should have received a copy of the GNU Affero General Public License
29
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
30
+
31
+# Set this when calling backup and restore commands
32
+USE_MONGODB=
33
+MONGODB_APPS_FILE=$HOME/.mongodbapps
34
+
35
+function store_original_mongodb_password {
36
+    if [ ! -f /root/.mongodboriginal ]; then
37
+        echo $'Storing original mongodb password'
38
+        ORIGINAL_MONGODB_PASSWORD=$(${PROJECT_NAME}-pass -u root -a mongodb)
39
+        # We can store this in plaintext because it will soon be of historical interest only
40
+        echo -n "$ORIGINAL_MONGODB_PASSWORD" > /root/.mongodboriginal
41
+    fi
42
+}
43
+
44
+function get_mongodb_password {
45
+    MONGODB_PASSWORD=$(${PROJECT_NAME}-pass -u root -a mongodb)
46
+    if [[ "$MONGODB_PASSWORD" == *'failed'* ]]; then
47
+        echo $'Could not obtain mongodb password'
48
+        exit 7835272
49
+    fi
50
+}
51
+
52
+function install_mongodb {
53
+    app_name=$1
54
+
55
+    if [[ "$(uname -a)" == *"armv7"* ]]; then
56
+        echo $'mongodb package is not available for arm 7 architecture'
57
+        exit 7356272
58
+    fi
59
+
60
+    if [[ $(is_completed $FUNCNAME) == "1" ]]; then
61
+        return
62
+    fi
63
+
64
+    function_check get_mongodb_password
65
+    get_mongodb_password
66
+    if [ ! $MONGODB_PASSWORD ]; then
67
+        if [ -f $IMAGE_PASSWORD_FILE ]; then
68
+            MONGODB_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
69
+        else
70
+            MONGODB_PASSWORD="$(openssl rand -base64 32 | cut -c1-${MINIMUM_PASSWORD_LENGTH})"
71
+        fi
72
+    fi
73
+    ${PROJECT_NAME}-pass -u root -a mongodb -p "$MONGODB_PASSWORD"
74
+
75
+    apt-get -yq install mongodb mongo-tools
76
+    apt-get -yq remove --purge apache2-bin*
77
+    if [ -d /etc/apache2 ]; then
78
+        rm -rf /etc/apache2
79
+        echo $'Removed Apache installation after mongodb install'
80
+    fi
81
+
82
+    if [ ! -d /var/lib/mongodb ]; then
83
+        echo $"ERROR: mongodb does not appear to have installed. $CHECK_MESSAGE"
84
+        exit 78352
85
+    fi
86
+
87
+    if [ $app_name ]; then
88
+        if ! grep -q "$app_name" $MONGODB_APPS_FILE; then
89
+           echo "$app_name" >> $MONGODB_APPS_FILE
90
+        fi
91
+    fi
92
+
93
+    mark_completed $FUNCNAME
94
+}
95
+
96
+function remove_mongodb {
97
+    app_name=$1
98
+
99
+    if [ ! $app_name ]; then
100
+        return
101
+    fi
102
+
103
+    removemongo=
104
+    if [ -f $MONGODB_APPS_FILE ]; then
105
+        sed -i "/$app_name/d" $MONGODB_APPS_FILE
106
+        if [ ! -s $MONGODB_APPS_FILE ]; then
107
+            removemongo=1
108
+        fi
109
+    else
110
+        removemongo=1
111
+    fi
112
+
113
+    if [ $removemongo ]; then
114
+        systemctl stop mongodb
115
+        systemctl disable mongodb
116
+        apt-get -yq remove --purge mongodb mongo-tools
117
+        apt-get -yq autoremove
118
+        if [ -d /var/lib/mongodb ]; then
119
+            rm -rf /var/lib/mongodb
120
+        fi
121
+        if [ -f /etc/systemd/system/mongodb.service ]; then
122
+            rm /etc/systemd/system/mongodb.service
123
+            systemctl daemon-reload
124
+        fi
125
+        if [ -f /etc/init.d/mongodb ]; then
126
+            rm /etc/init.d/mongodb
127
+        fi
128
+        sed -i '/install_mongodb/d' $COMPLETION_FILE
129
+    fi
130
+}
131
+
132
+function add_mongodb_user {
133
+    mongodb_username=$1
134
+    mongodb_password=$2
135
+
136
+    mongo admin --eval "db.createUser({user: '$mongodb_username', pwd: '$mongodb_password', roles: [ { role: 'userAdminAnyDatabase', db: 'admin' } ] })"
137
+}
138
+
139
+function remove_mongodb_user {
140
+    mongodb_username=$1
141
+    mongo admin --eval "db.removeUser($mongodb_username)"
142
+}
143
+
144
+function drop_database_mongodb {
145
+    database_name="$1"
146
+    if [[ "$database_name" == 'admin' ]]; then
147
+        return
148
+    fi
149
+    mongo $database_name --eval "db.runCommand( { dropDatabase: 1 } )"
150
+    if [ $app_name ]; then
151
+        if grep -q "$app_name" $MONGODB_APPS_FILE; then
152
+            sed -i "/$app_name/d" $MONGODB_APPS_FILE
153
+        fi
154
+    fi
155
+}
156
+
157
+function initialise_database_mongodb {
158
+    database_name=$1
159
+    database_file=$2
160
+    mongorestore $database_file
161
+    if [ ! "$?" = "0" ]; then
162
+        exit 8358365
163
+    fi
164
+}
165
+
166
+function create_database_mongodb {
167
+    app_name="$1"
168
+    app_admin_password="$2"
169
+    app_admin_username=$3
170
+    mongo admin --eval "db.createUser({user: '$app_admin_username', pwd: '$app_admin_password', roles: [ { role: 'userAdminAnyDatabase', db: 'admin' } ] })"
171
+    if [ $app_name ]; then
172
+        if ! grep -q "$app_name" $MONGODB_APPS_FILE; then
173
+           echo "$app_name" >> $MONGODB_APPS_FILE
174
+        fi
175
+    fi
176
+}

+ 24
- 15
website/EN/app_matrix.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-08-23 Wed 19:23 -->
6
+<!-- 2017-11-19 Sun 23:19 -->
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="How to use Matrix"
12
 <meta name="description" content="How to use Matrix"
264
 Another consideration is that since matrix operates on the usual HTTPS port number (443) this may make it difficult for ISPs or governments to censor this type of communications via port blocking without significant blowback.
264
 Another consideration is that since matrix operates on the usual HTTPS port number (443) this may make it difficult for ISPs or governments to censor this type of communications via port blocking without significant blowback.
265
 </p>
265
 </p>
266
 
266
 
267
-<div id="outline-container-orgc78770d" class="outline-2">
268
-<h2 id="orgc78770d">Installation</h2>
269
-<div class="outline-text-2" id="text-orgc78770d">
267
+<div id="outline-container-orgd6cc689" class="outline-2">
268
+<h2 id="orgd6cc689">Installation</h2>
269
+<div class="outline-text-2" id="text-orgd6cc689">
270
 <p>
270
 <p>
271
 Log into your system with:
271
 Log into your system with:
272
 </p>
272
 </p>
273
 
273
 
274
 <div class="org-src-container">
274
 <div class="org-src-container">
275
-<pre><code class="src src-bash">ssh myusername@mydomain -p 2222
276
-</code></pre>
275
+<pre class="src src-bash">ssh myusername@mydomain -p 2222
276
+</pre>
277
 </div>
277
 </div>
278
 
278
 
279
 <p>
279
 <p>
286
 </div>
286
 </div>
287
 </div>
287
 </div>
288
 
288
 
289
-<div id="outline-container-org5262b52" class="outline-2">
290
-<h2 id="org5262b52">Initial setup</h2>
291
-<div class="outline-text-2" id="text-org5262b52">
289
+<div id="outline-container-org3292734" class="outline-2">
290
+<h2 id="org3292734">Initial setup</h2>
291
+<div class="outline-text-2" id="text-org3292734">
292
 <p>
292
 <p>
293
 Go to the <b>Administrator control panel</b> and select <b>Passwords</b> then <b>matrix</b>. This will give you the password to initially log in to the system and you can change it later from a client app if needed.
293
 Go to the <b>Administrator control panel</b> and select <b>Passwords</b> then <b>matrix</b>. This will give you the password to initially log in to the system and you can change it later from a client app if needed.
294
 </p>
294
 </p>
303
 </div>
303
 </div>
304
 </div>
304
 </div>
305
 
305
 
306
-<div id="outline-container-orgd8eede9" class="outline-2">
307
-<h2 id="orgd8eede9">DNS setup</h2>
308
-<div class="outline-text-2" id="text-orgd8eede9">
306
+<div id="outline-container-org82239c4" class="outline-2">
307
+<h2 id="org82239c4">DNS setup</h2>
308
+<div class="outline-text-2" id="text-org82239c4">
309
 <p>
309
 <p>
310
 It's recommended that you add an SRV record for Matrix to your DNS setup. How you do this will depend upon your dynamic DNS provider and their web interface. On FreeDNS on the subdomains settings in addition to the subdomain which you are using for the matrix server create an extra entry as follows:
310
 It's recommended that you add an SRV record for Matrix to your DNS setup. How you do this will depend upon your dynamic DNS provider and their web interface. On FreeDNS on the subdomains settings in addition to the subdomain which you are using for the matrix server create an extra entry as follows:
311
 </p>
311
 </p>
312
 
312
 
313
 <div class="org-src-container">
313
 <div class="org-src-container">
314
-<pre><code class="src src-text">Type: SRV
314
+<pre class="src src-text">Type: SRV
315
 Subdomain: _matrix._tcp
315
 Subdomain: _matrix._tcp
316
 Domain: [youdomain]
316
 Domain: [youdomain]
317
 Destination: 10 0 8448 [yourmatrixsubdomain]
317
 Destination: 10 0 8448 [yourmatrixsubdomain]
318
-</code></pre>
318
+</pre>
319
 </div>
319
 </div>
320
 
320
 
321
 <p>
321
 <p>
323
 </p>
323
 </p>
324
 </div>
324
 </div>
325
 </div>
325
 </div>
326
+
327
+<div id="outline-container-org9568212" class="outline-2">
328
+<h2 id="org9568212">Mobile app</h2>
329
+<div class="outline-text-2" id="text-org9568212">
330
+<p>
331
+If you're using the Riot mobile app to access your Matrix homeserver then you can significantly improve battery performance by going to the settings and changing <b>Sync request timeout</b> to 30 seconds and <b>Delay between two sync requests</b> to 600 seconds.
332
+</p>
333
+</div>
334
+</div>
326
 </div>
335
 </div>
327
 <div id="postamble" class="status">
336
 <div id="postamble" class="status">
328
 
337
 

+ 24
- 7
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-10 Fri 17:42 -->
6
+<!-- 2017-11-12 Sun 18:45 -->
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>
264
 </div>
264
 </div>
265
 </div>
265
 </div>
266
 
266
 
267
-<div id="outline-container-org630bbcf" class="outline-2">
268
-<h2 id="org630bbcf">Installation</h2>
269
-<div class="outline-text-2" id="text-org630bbcf">
267
+<div id="outline-container-org39de7d0" class="outline-2">
268
+<h2 id="org39de7d0">Installation</h2>
269
+<div class="outline-text-2" id="text-org39de7d0">
270
 <p>
270
 <p>
271
 Log into your system with:
271
 Log into your system with:
272
 </p>
272
 </p>
286
 </div>
286
 </div>
287
 </div>
287
 </div>
288
 
288
 
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">
289
+<div id="outline-container-org35d8b0a" class="outline-2">
290
+<h2 id="org35d8b0a">Initial setup</h2>
291
+<div class="outline-text-2" id="text-org35d8b0a">
292
 <p>
292
 <p>
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.
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.
294
 </p>
294
 </p>
298
 </p>
298
 </p>
299
 </div>
299
 </div>
300
 </div>
300
 </div>
301
+
302
+<div id="outline-container-org31f6ea0" class="outline-2">
303
+<h2 id="org31f6ea0">Mastodon user interface</h2>
304
+<div class="outline-text-2" id="text-org31f6ea0">
305
+<p>
306
+If you prefer a Tweetdeck-style user interface, similar to Mastodon, then once you have registered an account navigate to <b>/yourpleromadomainname/web</b> and log in.
307
+</p>
308
+
309
+<div class="org-center">
310
+
311
+<div class="figure">
312
+<p><img src="images/pleromamastodon.jpg" alt="pleromamastodon.jpg" />
313
+</p>
314
+</div>
315
+</div>
316
+</div>
317
+</div>
301
 </div>
318
 </div>
302
 <div id="postamble" class="status">
319
 <div id="postamble" class="status">
303
 
320
 

+ 2
- 2
website/EN/meshindex.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-10-05 Thu 11:44 -->
6
+<!-- 2017-11-20 Mon 14:33 -->
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>
256
  <table style="width:80%; border:0">
256
  <table style="width:80%; border:0">
257
   <tr>
257
   <tr>
258
     <td><center><b><a href="ssb.apk"><img src="images/ssb.png"/></a></b><br><a href="ssb.apk">Secure Scuttlebutt</a></center></td>
258
     <td><center><b><a href="ssb.apk"><img src="images/ssb.png"/></a></b><br><a href="ssb.apk">Secure Scuttlebutt</a></center></td>
259
-    <td><center><b><h3></h3></b><br></center></td>
259
+    <td><center><b><a href="trifa.apk"><img src="images/trifa.png"/></a></b><br><a href="trifa.apk">Tox</a></center></td>
260
   </tr>
260
   </tr>
261
 </table>
261
 </table>
262
 </center>
262
 </center>

+ 35
- 31
website/EN/mobile.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-22 Fri 13:18 -->
6
+<!-- 2017-11-19 Sun 23:19 -->
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>
277
 </table>
277
 </table>
278
 </center>
278
 </center>
279
 
279
 
280
-<div id="outline-container-org066f7fb" class="outline-2">
281
-<h2 id="org066f7fb">Open</h2>
282
-<div class="outline-text-2" id="text-org066f7fb">
280
+<div id="outline-container-org028bfb1" class="outline-2">
281
+<h2 id="org028bfb1">Open</h2>
282
+<div class="outline-text-2" id="text-org028bfb1">
283
 <p>
283
 <p>
284
 Use a Linux based phone operating system. Typically this will mean Android, but could also mean LineageOS or Replicant. LineageOS is the most preferable, because you can usually get an up to date image with a recent kernel which will give you better security against exploits. If you're buying a phone then look for a model which is supported by LineageOS. Replicant is the most free (as in freedom) but only runs on a small number of phone models. If you have a phone which runs a full GNU/Linux system then that's fantastic, and you can probably use it in much the same way as a desktop system and the rest of the advice on this page won't apply. If you don't have a phone capable of running a Linux based operating system then consider selling, giving away or bartering your existing one.
284
 Use a Linux based phone operating system. Typically this will mean Android, but could also mean LineageOS or Replicant. LineageOS is the most preferable, because you can usually get an up to date image with a recent kernel which will give you better security against exploits. If you're buying a phone then look for a model which is supported by LineageOS. Replicant is the most free (as in freedom) but only runs on a small number of phone models. If you have a phone which runs a full GNU/Linux system then that's fantastic, and you can probably use it in much the same way as a desktop system and the rest of the advice on this page won't apply. If you don't have a phone capable of running a Linux based operating system then consider selling, giving away or bartering your existing one.
285
 </p>
285
 </p>
290
 </div>
290
 </div>
291
 </div>
291
 </div>
292
 
292
 
293
-<div id="outline-container-org1a24680" class="outline-2">
294
-<h2 id="org1a24680">Remove</h2>
295
-<div class="outline-text-2" id="text-org1a24680">
293
+<div id="outline-container-orgf5a1356" class="outline-2">
294
+<h2 id="orgf5a1356">Remove</h2>
295
+<div class="outline-text-2" id="text-orgf5a1356">
296
 <p>
296
 <p>
297
 So maybe you're running Android and the phone came with some apps already installed. Almost certainly they'll be proprietary. Go to Settings/Apps and then uninstall or deactivate any apps which you really don't need. Mostly preinstalled apps are intended to send your data to companies who will then sell it to advertisers or governments under the business model of <i>surveillance capital</i>. It's not a good idea to get caught up in that, and to avoid becoming addicted to apps which are surveilling you without consent or installing spyware in the background without your knowledge.
297
 So maybe you're running Android and the phone came with some apps already installed. Almost certainly they'll be proprietary. Go to Settings/Apps and then uninstall or deactivate any apps which you really don't need. Mostly preinstalled apps are intended to send your data to companies who will then sell it to advertisers or governments under the business model of <i>surveillance capital</i>. It's not a good idea to get caught up in that, and to avoid becoming addicted to apps which are surveilling you without consent or installing spyware in the background without your knowledge.
298
 </p>
298
 </p>
299
 </div>
299
 </div>
300
 </div>
300
 </div>
301
 
301
 
302
-<div id="outline-container-org390d2d0" class="outline-2">
303
-<h2 id="org390d2d0">Encrypt</h2>
304
-<div class="outline-text-2" id="text-org390d2d0">
302
+<div id="outline-container-org8f0466d" class="outline-2">
303
+<h2 id="org8f0466d">Encrypt</h2>
304
+<div class="outline-text-2" id="text-org8f0466d">
305
 <p>
305
 <p>
306
 Encrypt your phone. This can usually be done via <b>Settings/Security</b> and you may need to fully charge the phone first. Encryption means that if you lose your phone or it gets stolen then there is less chance that anyone who picks it up will get access to your data, photos and so on.
306
 Encrypt your phone. This can usually be done via <b>Settings/Security</b> and you may need to fully charge the phone first. Encryption means that if you lose your phone or it gets stolen then there is less chance that anyone who picks it up will get access to your data, photos and so on.
307
 </p>
307
 </p>
308
 </div>
308
 </div>
309
 </div>
309
 </div>
310
 
310
 
311
-<div id="outline-container-org3d6081e" class="outline-2">
312
-<h2 id="org3d6081e">Apps</h2>
313
-<div class="outline-text-2" id="text-org3d6081e">
311
+<div id="outline-container-orgfec183a" class="outline-2">
312
+<h2 id="orgfec183a">Apps</h2>
313
+<div class="outline-text-2" id="text-orgfec183a">
314
 <p>
314
 <p>
315
 Installing <b>F-droid</b> and only adding any new apps via F-droid will ensure that you are always using free and open source software. Open source is not a panacea, since bugs can and do still occur, but it will help you to avoid the worst security and privacy pitfalls.
315
 Installing <b>F-droid</b> and only adding any new apps via F-droid will ensure that you are always using free and open source software. Open source is not a panacea, since bugs can and do still occur, but it will help you to avoid the worst security and privacy pitfalls.
316
 </p>
316
 </p>
317
 </div>
317
 </div>
318
 </div>
318
 </div>
319
 
319
 
320
-<div id="outline-container-org5a55ec6" class="outline-2">
321
-<h2 id="org5a55ec6">Lock</h2>
322
-<div class="outline-text-2" id="text-org5a55ec6">
320
+<div id="outline-container-org77de138" class="outline-2">
321
+<h2 id="org77de138">Lock</h2>
322
+<div class="outline-text-2" id="text-org77de138">
323
 <p>
323
 <p>
324
 Add a lock screen, preferably with a password which is not easy for other people to guess or for quicker access with a PIN number. Install an app called <b>Locker</b>, activate it and set the maximum number of password guesses to ten (or whatever you feel comfortable with). If bad people get hold of your phone then they may try to brute force your lock screen password or PIN (i.e. automatically trying millions of common word and number combinations) and the locker app will prevent them from succeeding by resetting the phone back to its factory default condition and wiping the data.
324
 Add a lock screen, preferably with a password which is not easy for other people to guess or for quicker access with a PIN number. Install an app called <b>Locker</b>, activate it and set the maximum number of password guesses to ten (or whatever you feel comfortable with). If bad people get hold of your phone then they may try to brute force your lock screen password or PIN (i.e. automatically trying millions of common word and number combinations) and the locker app will prevent them from succeeding by resetting the phone back to its factory default condition and wiping the data.
325
 </p>
325
 </p>
326
 </div>
326
 </div>
327
 </div>
327
 </div>
328
 
328
 
329
-<div id="outline-container-orgaf7fb89" class="outline-2">
330
-<h2 id="orgaf7fb89">Onion</h2>
331
-<div class="outline-text-2" id="text-orgaf7fb89">
329
+<div id="outline-container-org4dc0e5b" class="outline-2">
330
+<h2 id="org4dc0e5b">Onion</h2>
331
+<div class="outline-text-2" id="text-org4dc0e5b">
332
 <p>
332
 <p>
333
 Both governments and corporations want to compile matadata dossiers about you. Who you communicated with, when and how often. They want this so that they can data mine, simulate, predict and then ultimately influence (sometimes also called "nudge") your actions and preferences in the directions they prefer. By routing your connections through a number of proxy servers (Tor routers) you can make it perhaps not <i>theoretically</i> impossible but at least <i>very hard</i> for them to have a complete and accurate list of who your friends are, your religion, politics, likely health issues, sexual orientation and what news sites or books you read.
333
 Both governments and corporations want to compile matadata dossiers about you. Who you communicated with, when and how often. They want this so that they can data mine, simulate, predict and then ultimately influence (sometimes also called "nudge") your actions and preferences in the directions they prefer. By routing your connections through a number of proxy servers (Tor routers) you can make it perhaps not <i>theoretically</i> impossible but at least <i>very hard</i> for them to have a complete and accurate list of who your friends are, your religion, politics, likely health issues, sexual orientation and what news sites or books you read.
334
 </p>
334
 </p>
339
 </div>
339
 </div>
340
 </div>
340
 </div>
341
 
341
 
342
-<div id="outline-container-orgc7a0b9e" class="outline-2">
343
-<h2 id="orgc7a0b9e">Email</h2>
344
-<div class="outline-text-2" id="text-orgc7a0b9e">
342
+<div id="outline-container-org466eb29" class="outline-2">
343
+<h2 id="org466eb29">Email</h2>
344
+<div class="outline-text-2" id="text-org466eb29">
345
 <p>
345
 <p>
346
 The easiest way to access email is by installing the <a href="./app_mailpile.html">Mailpile</a> app. This keeps your GPG keys off of possibly insecure mobile devices but still enables encrypted email communications in an easy way. You can use K9 mail if you prefer, but that will require installing OpenKeychain and having your GPG keys on the device, which is a lot more risky.
346
 The easiest way to access email is by installing the <a href="./app_mailpile.html">Mailpile</a> app. This keeps your GPG keys off of possibly insecure mobile devices but still enables encrypted email communications in an easy way. You can use K9 mail if you prefer, but that will require installing OpenKeychain and having your GPG keys on the device, which is a lot more risky.
347
 </p>
347
 </p>
348
 </div>
348
 </div>
349
 </div>
349
 </div>
350
-<div id="outline-container-orgfcecdf8" class="outline-2">
351
-<h2 id="orgfcecdf8">Services</h2>
352
-<div class="outline-text-2" id="text-orgfcecdf8">
350
+<div id="outline-container-org978ea8b" class="outline-2">
351
+<h2 id="org978ea8b">Services</h2>
352
+<div class="outline-text-2" id="text-org978ea8b">
353
 <p>
353
 <p>
354
 For information on configuring various apps to work with Freedombone see the <a href="./usage.html">usage section</a>. Also see advice on chat apps in the <a href="./faq.html">FAQ</a>.
354
 For information on configuring various apps to work with Freedombone see the <a href="./usage.html">usage section</a>. Also see advice on chat apps in the <a href="./faq.html">FAQ</a>.
355
 </p>
355
 </p>
356
 </div>
356
 </div>
357
 </div>
357
 </div>
358
 
358
 
359
-<div id="outline-container-org469e667" class="outline-2">
360
-<h2 id="org469e667">Battery preservation</h2>
361
-<div class="outline-text-2" id="text-org469e667">
359
+<div id="outline-container-org3546225" class="outline-2">
360
+<h2 id="org3546225">Battery preservation</h2>
361
+<div class="outline-text-2" id="text-org3546225">
362
 <p>
362
 <p>
363
 Even with free software apps it's not difficult to get into a situation where your battery doesn't last for long. To maximize battery life access RSS feeds via the onion-based mobile reader within a Tor-compatible browser and not from a locally installed RSS app.
363
 Even with free software apps it's not difficult to get into a situation where your battery doesn't last for long. To maximize battery life access RSS feeds via the onion-based mobile reader within a Tor-compatible browser and not from a locally installed RSS app.
364
 </p>
364
 </p>
366
 <p>
366
 <p>
367
 If you have Syncthing installed then change the settings so that it only syncs when charging and when on wifi. Avoid any apps which might be continuously polling and preventing the device from going into sleep mode when it's not used.
367
 If you have Syncthing installed then change the settings so that it only syncs when charging and when on wifi. Avoid any apps which might be continuously polling and preventing the device from going into sleep mode when it's not used.
368
 </p>
368
 </p>
369
+
370
+<p>
371
+If you're using the Riot mobile app to access a Matrix homeserver then you can significantly improve battery performance by going to the settings and changing <b>Sync request timeout</b> to 30 seconds and <b>Delay between two sync requests</b> to 600 seconds.
372
+</p>
369
 </div>
373
 </div>
370
 </div>
374
 </div>
371
 
375
 
372
-<div id="outline-container-orgcaf0530" class="outline-2">
373
-<h2 id="orgcaf0530">Blocking bad domains</h2>
374
-<div class="outline-text-2" id="text-orgcaf0530">
376
+<div id="outline-container-org6ebc6c4" class="outline-2">
377
+<h2 id="org6ebc6c4">Blocking bad domains</h2>
378
+<div class="outline-text-2" id="text-org6ebc6c4">
375
 <p>
379
 <p>
376
 You can block known bad domains by editing the <b>/system/etc/hosts</b> file on your device. It is possible to use extensive ad-blocking hosts files used by other ad-blocking systems such as pi-hole, but merely blocking Facebook and Google Analytics will protect you against much of the corporate surveillance which goes on. Even if you don't have a Facebook account this may still be useful since they will still try to create a "ghost profile" of you, so the less data they have the better.
380
 You can block known bad domains by editing the <b>/system/etc/hosts</b> file on your device. It is possible to use extensive ad-blocking hosts files used by other ad-blocking systems such as pi-hole, but merely blocking Facebook and Google Analytics will protect you against much of the corporate surveillance which goes on. Even if you don't have a Facebook account this may still be useful since they will still try to create a "ghost profile" of you, so the less data they have the better.
377
 </p>
381
 </p>