Displaying 2 results from an estimated 2 matches for "msg_user".
2020 May 27
2
Determinant of umask for sieve_pipe_bin_dir scripts?
...scripts ?
The results from my script are always being set to 0600.
My script is simple and shown below, even if I adjust the right line to add " && chmod 644", the actual resulting file still remains at 0600 ?!?
#!/bin/bash
# Usage: imapsieve_copy <email> <spam|ham>
MSG_USER="$1"
MSG_TYPE="$2"
RUN_UUID=$(cat /proc/sys/kernel/random/uuid)
BASE_DIR="/foo/bar"
TARGET_DIR="${BASE_DIR}/${MSG_TYPE}"
TARGET_FILE="${TARGET_DIR}/${RUN_UUID}"
cat > "${TARGET_FILE}" < /dev/stdin && pigz -9 "${TARGET_...
2020 May 27
0
Determinant of umask for sieve_pipe_bin_dir scripts?
...t are always being set to 0600.
> My script is simple and shown below, even if I adjust the right line to add " && chmod 644", the actual resulting file still remains at 0600 ?!?
>
> #!/bin/bash
>
> # Usage: imapsieve_copy <email> <spam|ham>
>
> MSG_USER="$1"
> MSG_TYPE="$2"
>
> RUN_UUID=$(cat /proc/sys/kernel/random/uuid)
> BASE_DIR="/foo/bar"
> TARGET_DIR="${BASE_DIR}/${MSG_TYPE}"
> TARGET_FILE="${TARGET_DIR}/${RUN_UUID}"
>
> cat > "${TARGET_FILE}" < /dev/...