From 69d3a27d1c9292e4e8cfa232881c360895256b5b Mon Sep 17 00:00:00 2001 From: Jeffrey Bencteux Date: Mon, 24 Jul 2023 08:53:23 +0200 Subject: [PATCH] fix opts indentation --- mailsecchk.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/mailsecchk.sh b/mailsecchk.sh index 9ab90fd..383eedb 100755 --- a/mailsecchk.sh +++ b/mailsecchk.sh @@ -80,25 +80,25 @@ bimi_selectors_file="./bimi_selectors.txt" while getopts "d:hl:pr" o; do case "${o}" in d) - d="${OPTARG}" - ;; + d="${OPTARG}" + ;; h) usage exit 0 ;; l) - logfile="${OPTARG}" - ;; + logfile="${OPTARG}" + ;; p) - dkim_extract=1 - ;; + dkim_extract=1 + ;; r) - spf_recursive=1 - ;; + spf_recursive=1 + ;; *) - usage + usage exit 1 - ;; + ;; esac done shift $((OPTIND-1))