6 Jul
2025
6 Jul
'25
7:14 p.m.
On 6. Jul 2025, at 16:08, jasper@jappie.dev wrote:
- "Created directory for binaries: %s %u", bin_path, mode);
and this logged
365
, which - if I understandmode_t
correctly - corresponds to-wxrw-r-x
:Debug: sieve: storage after: file: Created directory for binaries: /run/dovecot2/sieve/jasper 365
FWIW, this prints the mode as decimal, and decimal 365 is octal 555 (r-xr-xr-x). So the permissions shown in strace and the permissions printed from your debug line match up. You can use ‘%o’ instead of ‘%u’ to get the octal representation directly.
Cheers, Katalin