mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-11 13:10:32 +00:00
mcom: Use /dev/shm as TMPDIR if possible
/dev/shm is a tmpfs directory, using it for temporary files will make it impossible to recover them after a powerdown. Thus security is improved. /dev/shm seems to be only available on Linux.
This commit is contained in:
parent
f658491a2d
commit
d16a86552e
15
mcom
15
mcom
@ -28,6 +28,20 @@ msgid() {
|
||||
mgenmid 2>/dev/null | sed 's/^/Message-Id: /'
|
||||
}
|
||||
|
||||
# $TMPDIR is used by mktemp().
|
||||
set_tmpdir() {
|
||||
if [ -d /dev/shm -a -w /dev/shm ]; then
|
||||
export TMPDIR='/dev/shm'
|
||||
elif [ -n "$encrypt" ]; then
|
||||
printf '/dev/shm is unavailable on your system. Instead '
|
||||
printf '$TMPDIR or /tmp \nwill be used to temporarily '
|
||||
printf 'store unencrypted data.\n'
|
||||
printf 'Do you wish to continue? [Y/n] '
|
||||
read -r c
|
||||
[ -z "$c" -o "$c" = "y" -o "$c" = "Y" ] || exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
stampdate() {
|
||||
if ! mhdr -h date "$1" >/dev/null; then
|
||||
tmp=$(mktemp -t mcom.XXXXXX)
|
||||
@ -275,6 +289,7 @@ case "$0" in
|
||||
[ "$#" -eq 0 ] && set -- .
|
||||
;;
|
||||
esac
|
||||
set_tmpdir
|
||||
|
||||
hdrs="$(printf '%s\n' "${hdrs#$NL}" | mhdr /dev/stdin)"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user