|
@@ -28,6 +28,17 @@
|
28
|
28
|
# You should have received a copy of the GNU Affero General Public License
|
29
|
29
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
30
|
30
|
|
|
31
|
+function add_email_hostname {
|
|
32
|
+ extra_email_hostname="$1"
|
|
33
|
+ email_hostnames=$(cat /etc/exim4/update-exim4.conf.conf | grep "dc_other_hostnames" | awk -F "'" '{print $2}')
|
|
34
|
+ if [[ "$email_hostnames" != *"$extra_email_hostname"* ]]; then
|
|
35
|
+ sed -i "s|dc_other_hostnames=.*|dc_other_hostnames='$emailhostnames;extra_email_hostname'|g" /etc/exim4/update-exim4.conf.conf
|
|
36
|
+ update-exim4.conf
|
|
37
|
+ dpkg-reconfigure --frontend noninteractive exim4-config
|
|
38
|
+ systemctl restart saslauthd
|
|
39
|
+ fi
|
|
40
|
+}
|
|
41
|
+
|
31
|
42
|
function onion_update {
|
32
|
43
|
# update so that new onion services appear
|
33
|
44
|
systemctl reload tor
|
|
@@ -231,6 +242,7 @@ function configure_ssh_onion {
|
231
|
242
|
SSH_ONION_HOSTNAME=$(add_onion_service ssh ${SSH_PORT} ${SSH_PORT})
|
232
|
243
|
|
233
|
244
|
set_completion_param "ssh onion domain" "${SSH_ONION_HOSTNAME}"
|
|
245
|
+ add_email_hostname "${SSH_ONION_HOSTNAME}"
|
234
|
246
|
|
235
|
247
|
mark_completed $FUNCNAME
|
236
|
248
|
}
|