mirror of
https://github.com/ben-grande/qusal.git
synced 2024-12-24 15:09:30 -05:00
16 lines
320 B
Plaintext
16 lines
320 B
Plaintext
|
#!/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}"
|