commit 4413cfebea81393866e2e2b9048cf7a4e1492b55
parent 7978f41c6d3974471be05a7a6a5c5abd141139fa
Author: Luke Smith <luke@lukesmith.xyz>
Date: Tue, 15 Nov 2022 14:57:15 +0000
Merge pull request #894 from alembiq/master
parse pop config only when file exists
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/mailsync b/bin/mailsync
@@ -79,7 +79,7 @@ if [ "$#" -gt "0" ]; then
fi
# TODO handle account passed from argument
[ -z "$accounts" ] && accounts="$(awk '/^Channel/ {print $2}' "$MBSYNCRC" 2>/dev/null)"
-[ -z "$pop_accounts" ] && pop_accounts="$(awk '/^account/ {print $2}' "$MPOPRC" 2>/dev/null)"
+[ -z "$pop_accounts" ] && [ -x $MPOPRC ] && pop_accounts="$(awk '/^account/ {print $2}' "$MPOPRC" 2>/dev/null)"
# Parallelize multiple accounts
for account in $accounts; do