소스 검색

Include ssh onion address as an email domain

Bob Mottram 8 년 전
부모
커밋
e080551639
2개의 변경된 파일12개의 추가작업 그리고 11개의 파일을 삭제
  1. 0
    11
      src/freedombone-base-email
  2. 12
    0
      src/freedombone-utils-onion

+ 0
- 11
src/freedombone-base-email 파일 보기

@@ -73,17 +73,6 @@ GPGIT_COMMIT='583dc76119f19420f8a33f606744faa7c8922738'
73 73
 # refresh gpg keys every few hours
74 74
 REFRESH_GPG_KEYS_HOURS=2
75 75
 
76
-function add_email_hostname {
77
-    extra_email_hostname="$1"
78
-    email_hostnames=$(cat /etc/exim4/update-exim4.conf.conf | grep "dc_other_hostnames" | awk -F "'" '{print $2}')
79
-    if [[ "$email_hostnames" != *"$extra_email_hostname"* ]]; then
80
-        sed -i "s|dc_other_hostnames=.*|dc_other_hostnames='$emailhostnames;extra_email_hostname'|g" /etc/exim4/update-exim4.conf.conf
81
-        update-exim4.conf
82
-        dpkg-reconfigure --frontend noninteractive exim4-config
83
-        systemctl restart saslauthd
84
-    fi
85
-}
86
-
87 76
 function configure_email_onion {
88 77
     if [[ $(is_completed $FUNCNAME) == "1" ]]; then
89 78
         return

+ 12
- 0
src/freedombone-utils-onion 파일 보기

@@ -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
 }