Displaying 2 results from an estimated 2 matches for "imapsieve_copi".
Did you mean:
imapsieve_copy
2020 May 27
2
Determinant of umask for sieve_pipe_bin_dir scripts?
Hi,
What determines the umask of sieve_pipe_bin_dir 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"
2020 May 27
0
Determinant of umask for sieve_pipe_bin_dir scripts?
> On 27/05/2020 13:28 Laura Smith <n5d9xq3ti233xiyif2vp at protonmail.ch> wrote:
>
>
> Hi,
> What determines the umask of sieve_pipe_bin_dir 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