mirror of
https://github.com/ben-grande/qusal.git
synced 2025-01-07 05:37:54 -05:00
1b2f1ba941
Explicit end option parsing as the shell can be quite dangerous without it.
16 lines
362 B
Bash
Executable File
16 lines
362 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
|
|
queue_dir="${MSMTP_Q:-"${Q:-"${HOME}/.msmtp.queue"}"}"
|
|
uid="$(id -u user)"
|
|
|
|
# shellcheck disable=SC2174
|
|
mkdir -p -- "${queue_dir}"
|
|
chmod -- 0700 "${queue_dir}"
|
|
|
|
exec qfile-unpacker "${uid}" "${queue_dir}"
|