qusal/salt/mail/files/reader/rpc/qusal.MailFetch
Ben Grande a04960c1c6 feat: initial split-mail setup
Split-mail allows to separate the receving, reading/composing and
sending of mails to separate qubes, while having the reading/composing
qube offline and a manual step necessary to authorize mails to be sent
form the sender qube.
2024-01-26 22:46:36 +01:00

16 lines
320 B
Bash
Executable File

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