qusal/salt/mail/files/reader/rpc/qusal.MailFetch
Ben Grande 1b2f1ba941
fix: avoid operand evaluation as argument
Explicit end option parsing as the shell can be quite dangerous without
it.
2024-08-06 17:13:25 +02:00

16 lines
333 B
Bash
Executable File

#!/bin/sh
## SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
##
## SPDX-License-Identifier: AGPL-3.0-or-later
umask 077
inbox_dir="${HOME}/mail/INBOX"
uid="$(id -u user)"
# shellcheck disable=SC2174
mkdir -p -- "${inbox_dir}"
chmod -- 0700 "${inbox_dir}"
qfile-unpacker "${uid}" "${inbox_dir}"