qusal/salt/mail/files/sender/rpc/qusal.MailEnqueue
Ben Grande aea8438904
fix: stricter command-line parsing
- Add to qvm-run:
  - no-gui when command doesn't require a GUI
  - filter-escape-chars when pass-io is set and output is not a file,
    such as a pipe that could later be used to print information.
- Change remaining echo to printf
- Add end-of-options separator when possible
2025-01-08 16:12:31 +01:00

16 lines
365 B
Bash
Executable File

#!/bin/sh
## SPDX-FileCopyrightText: 2023 - 2025 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}"