Topic: postfix sendmail and FHS permissions
I noticed that `postfix` was updated recently, with new permissions for `sendmail`:
$ ls -l /usr/sbin/sendmail
-rwxr-xr-x 1 root root 26600 20 sept. 22:07 /usr/sbin/sendmail
But given FHS restrictions on `/usr/sbin`:
$ ls -dl /usr/sbin
drwxr-x--- 2 root adm 12288 20 sept. 23:30 /usr/sbin
`/usr/sbin/sendmail`, as every other command inside this directory, remains unaccessible to users who are not part of the `adm` group.
Is this intended? And is it safe or recommended to add users to the `adm` group when this was not necessary before? (I believe it is safe, but I just want to be sure.)