Browse Source

fix opts indentation

pull/1/head
Jeffrey Bencteux 3 years ago
parent
commit
69d3a27d1c
  1. 20
      mailsecchk.sh

20
mailsecchk.sh

@ -80,25 +80,25 @@ bimi_selectors_file="./bimi_selectors.txt"
while getopts "d:hl:pr" o; do while getopts "d:hl:pr" o; do
case "${o}" in case "${o}" in
d) d)
d="${OPTARG}" d="${OPTARG}"
;; ;;
h) h)
usage usage
exit 0 exit 0
;; ;;
l) l)
logfile="${OPTARG}" logfile="${OPTARG}"
;; ;;
p) p)
dkim_extract=1 dkim_extract=1
;; ;;
r) r)
spf_recursive=1 spf_recursive=1
;; ;;
*) *)
usage usage
exit 1 exit 1
;; ;;
esac esac
done done
shift $((OPTIND-1)) shift $((OPTIND-1))

Loading…
Cancel
Save