|
@@ -26,7 +26,7 @@ muttrc="$muttdir/muttrc" |
|
|
msmtprc="$HOME/.config/msmtp/config" |
|
|
msmtprc="$HOME/.config/msmtp/config" |
|
|
ssltype="IMAPS" # This is later changed to `None` later in the script if using Protonmail |
|
|
ssltype="IMAPS" # This is later changed to `None` later in the script if using Protonmail |
|
|
|
|
|
|
|
|
for x in "/etc/ssl/certs/ca-certificates.crt" "/etc/pki/tls/certs/ca-bundle.crt" "/etc/ssl/ca-bundle.pem" "/etc/pki/tls/cacert.pem" "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem" "/etc/ssl/cert.pem" |
|
|
|
|
|
|
|
|
for x in "/etc/ssl/certs/ca-certificates.crt" "/etc/pki/tls/certs/ca-bundle.crt" "/etc/ssl/ca-bundle.pem" "/etc/pki/tls/cacert.pem" "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem" "/etc/ssl/cert.pem" "/usr/local/share/ca-certificates/" |
|
|
do |
|
|
do |
|
|
[ -f "$x" ] && sslcert="$x" && break |
|
|
[ -f "$x" ] && sslcert="$x" && break |
|
|
done || { echo "CA Certificate not found. Please install one or link it to /etc/ssl/certs/ca-certificates.crt" && exit 1 ;} |
|
|
done || { echo "CA Certificate not found. Please install one or link it to /etc/ssl/certs/ca-certificates.crt" && exit 1 ;} |
|
@@ -194,7 +194,7 @@ EOF |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
protonfinger() { printf "Getting Protonmail bridge fingerprint...\\n" |
|
|
protonfinger() { printf "Getting Protonmail bridge fingerprint...\\n" |
|
|
fingerprint="$(msmtp --serverinfo --tls --tls-certcheck=off -a "$title")" || return 1 |
|
|
|
|
|
|
|
|
fingerprint="$(msmtp --serverinfo --host=127.0.0.1 --port=1025 --tls --tls-certcheck=off)" || return 1 |
|
|
sed -ibu "s/account $title/&\ntls_trust_file\ntls_fingerprint $fingerprint/" "$msmtprc" ; rm -f "$msmtprc"bu |
|
|
sed -ibu "s/account $title/&\ntls_trust_file\ntls_fingerprint $fingerprint/" "$msmtprc" ; rm -f "$msmtprc"bu |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|