Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hansson <github@hanssonit.se>2020-10-03 01:15:09 +0300
committerGitHub <noreply@github.com>2020-10-03 01:15:09 +0300
commit55c11f6887fc2eee54dc57070238e8984e870edd (patch)
tree41faef6a913ed578d0e0bdce0f74e9aee67bc3cc
parente90def0759bdee4446944f5cc5796cae31324f77 (diff)
parent182545e7aaedfc391202f2c84a205e3dae8dd279 (diff)
travis (#1508)
* travis * change starttls
-rw-r--r--addons/smtp-mail.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/addons/smtp-mail.sh b/addons/smtp-mail.sh
index 83c32cac..5e5b39e9 100644
--- a/addons/smtp-mail.sh
+++ b/addons/smtp-mail.sh
@@ -111,7 +111,7 @@ then
fi
# Enter the recipient
-RECIPIENT=$(input_box_flow "Please enter the recipient email address that shall receive all mails.\nE.g. recipient@$MAIL_SERVER)
+RECIPIENT=$(input_box_flow "Please enter the recipient email address that shall receive all mails.\nE.g. recipient@$MAIL_SERVER")
# Present what we gathered, if everything okay, write to files
msg_box "These are the settings that will be used. Please check that everything seems correct.
@@ -136,7 +136,7 @@ then
export MSMTP_ENCRYPTION2="tls_starttls off"
elif [ "$PROTOCOL" = "STARTTLS" ]
then
- export MSMTP_ENCRYPTION1="tls off"
+ export MSMTP_ENCRYPTION1="tls on"
export MSMTP_ENCRYPTION2="tls_starttls on"
elif [ "$PROTOCOL" = "NO-ENCRYPTION" ]
then