1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-14 17:27:23 +01:00

Fix issue where a postfix/submission connection using TLS on port 465 would be reported as "insecure"

This commit is contained in:
downtownallday
2022-02-08 11:35:27 -05:00
parent fd2ff00a6e
commit 82e203b3ec
4 changed files with 50 additions and 5 deletions

View File

@@ -8,6 +8,7 @@ log="./mail.log"
pos="./pos.json"
sqlite="./capture.sqlite"
config="./config.json"
loglevel="debug" #debug | info
if [ -e "./debug.log" ]; then
log="./debug.log"
@@ -31,4 +32,5 @@ fi
echo "USING LOG: $log"
echo "DB: $sqlite"
python3 ../capture.py -d -loglevel info $@ -logfile "$log" -posfile "$pos" -sqlitefile "$sqlite" -config "$config"
echo "LOGLEVEL: $loglevel"
python3 ../capture.py -d -loglevel $loglevel $@ -logfile "$log" -posfile "$pos" -sqlitefile "$sqlite" -config "$config"