diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-04-25 15:35:48 -0400 | 
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2019-04-25 15:35:48 -0400 | 
| commit | 5a5c5e604da7c00487c27b8cb9069e092685c45f (patch) | |
| tree | de230baf7264e8945daf850782beb9053fe792c0 /bin | |
| parent | d38f8c933e934902a70be5f126103877fa5ef44e (diff) | |
ca certificate detection
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/mw | 6 | 
1 files changed, 5 insertions, 1 deletions
| @@ -8,11 +8,15 @@ namere="^[a-z_][a-z0-9_-]*$"		# Regex to ensure viable username  emailre=".\+@.\+\\..\+" 		# Regex to confirm valid email address  muttshare="/usr/share/mutt-wizard"  mbsyncrc="$HOME/.mbsyncrc" -sslcert="/etc/ssl/certs/ca-certificates.crt"  mwconfig="/usr/share/mutt-wizard/mutt-wizard.muttrc"  cachedir="$HOME/.cache/mutt-wizard"  muttrc="$muttdir/muttrc" +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" +do +	[ -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 ;} +  getaccounts() { accounts="$(find "$accdir" -type f | grep -o "[0-9]-.*.muttrc" | sed "s/-/: /;s/\..*//" | sort -n)" ;}  list() { getaccounts && [ -n "$accounts" ] && echo "$accounts" ;} | 
