Displaying 2 results from an estimated 2 matches for "0root".
Did you mean:
root
2002 Jul 24
0
Weird: cron or sendmail don't work properly after I installed winbind
...F_UNIX, SOCK_STREAM, 0) = 0
connect(0, {sin_family=AF_UNIX, path=" /tmp/.winbindd/pipe"}, 110) = 0
select(1, [0], NULL, NULL, {0, 0}) = 0 (Timeout)
write(0, "\30\5\0\0\5\0\0\0\371\3\0\0root\0\0\0\0\0\0\0\0\0\0\0\0"..., 1304) = 1304
read(0, "\24\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1300) = 1300
ipc_subcall(0x7, 0x804e5a0, 0x401364a0, 0x804e5a0) = 0
msgget(IPC_PRIVATE, 0x2|02) = 0
chdir("/root") = 0
execve...
2023 Mar 14
2
Postfix : root and system user authentication
...course :
/etc/dovecot/conf.d/10-master.conf
unix_listener /var/spool/postfix/private/auth {
mode = 0660
user = postfix
group = postfix
}
- login to your server, port 465, with a client like openssl :
openssl s_client -connect mail.example.org:465
EHLO whateveryouwant
AUTH PLAIN \0root\0password (in base 64, ofc)
You should be able to login, and produce the first log trace I
have included.
My question is, is this a feature or a bug ? The hardcoded
impossibility to login as root to dovecot, and the honouring of
the variables {first,last}_valid_{u,g}id, are those specific to...