Re: Howto do "a detailed cleanup with the aid of the sysclean package"?

2022-05-03 Thread Florian Obser
On 2022-05-04 07:42 +02, Harald Dunkel wrote: > Hi folks, > > I think the main problem is pretty easy to describe: OpenBSD loses track > about what it had installed and cannot clean up its own files on a system > upgrade. The general case is a hard problem and people who deemed this important

Re: Howto do "a detailed cleanup with the aid of the sysclean package"?

2022-05-03 Thread Harald Dunkel
Hi folks, I think the main problem is pretty easy to describe: OpenBSD loses track about what it had installed and cannot clean up its own files on a system upgrade. Regards Harri

Re: Maximum size of mfs in i386

2022-05-03 Thread Yoshihiro Kawamata
So the implementation of W^X in i386 has an impact. Thank you for showing me the cause, it became clear.

Re: Maximum size of mfs in i386

2022-05-03 Thread Theo de Raadt
> What could be the cause? Is there any way to increase the MAXDSIZ to > nearly 3GB? No. Our i386 architecture is a bit special. Since older machines don't have a NX bit, we invented a "line-in-the-sand" scheme using segment limits. In a userland process, this places code below 512MB, and data

Re: SAMBA 4.15 share and compatibility with older Macs

2022-05-03 Thread Kasak
> 3 мая 2022 г., в 18:39, Riccardo Mottola > написал(а): > > Hi, > > I have a samba share which is accessible to both windows (7, 10) and > Mac, including old Macs (10.5-10.7) which use samba. > Unix accesses through NFS. > > MacOS uses an old version of Samba, I always had issues. I

Re: rspamd and pyzor

2022-05-03 Thread kasak
03.05.2022 16:48, Stuart Henderson пишет: On 2022-05-03, kasak wrote: rspamd manual assume, that we should use this construction: ExecStart=/bin/sh -c '/usr/bin/razor-check && /usr/bin/echo -n "spam" || /usr/bin/echo -n "ham"' The razor-check manual confirm this: "razor-check" terminates

Re: rspamd and pyzor

2022-05-03 Thread Stuart Henderson
On 2022-05-03, kasak wrote: > rspamd manual assume, that we should use this construction: > > ExecStart=/bin/sh -c '/usr/bin/razor-check && /usr/bin/echo -n "spam" || > /usr/bin/echo -n "ham"' > > The razor-check manual confirm this: "razor-check" terminates with exit > value 0 if the signature

Re: rspamd and pyzor

2022-05-03 Thread kasak
03.05.2022 11:38, Stuart Henderson пишет: On 2022-05-02, kasak wrote: Hello misc! I have some information for rspamd users, and one question. As you may know, rspamd not using pyzor by directly calling pyzor binary. Instead, they say, you need to create special systemd socket, and call

Re: mutt-wizard

2022-05-03 Thread Gabriel Brito
Good to know, thanks, Stuart! On Tue, May 3, 2022 at 9:01 AM Stuart Henderson wrote: > On 2022-05-02, ehakanduran wrote: > > didn't) but I couldn't figure out a way to fix the second problem. Why > > Ctrl-o doesn't work remains a mystery too. Any pointers will be very > > much appreciated. > >

Re: chromium/iridium/firefox no dns resolve on rtable

2022-05-03 Thread Ali Farzanrad
Ali Farzanrad wrote: > Hi, > > I have a wireguard configuration in my system with local unbound dns > resolver. In the past, I'd configured my wireguard as a separated > rdomain, so whenever I needed to run my browser, I did one of these 2 > options: > > 1. change /etc/resolv.conf and user a

chromium/iridium/firefox no dns resolve on rtable

2022-05-03 Thread Ali Farzanrad
Hi, I have a wireguard configuration in my system with local unbound dns resolver. In the past, I'd configured my wireguard as a separated rdomain, so whenever I needed to run my browser, I did one of these 2 options: 1. change /etc/resolv.conf and user a global dns resolver, 2. run an

Re: mutt-wizard

2022-05-03 Thread Stuart Henderson
On 2022-05-02, ehakanduran wrote: > didn't) but I couldn't figure out a way to fix the second problem. Why > Ctrl-o doesn't work remains a mystery too. Any pointers will be very > much appreciated. See "stty -a", ^O is probably set to 'discard'. Try 'stty discard undef' to disable this and pass

Re: rspamd and pyzor

2022-05-03 Thread Stuart Henderson
On 2022-05-03, Michael Hekeler wrote: > But are you sure that you need it for pyzor?!?!?!? rspamd needs it. It's event-driven so they probably try to avoid blocking as much as possible, and by running it over TCP the load can be distributed between machines more easily. -- Please keep replies

Re: rspamd and pyzor

2022-05-03 Thread Stuart Henderson
On 2022-05-02, kasak wrote: > Hello misc! > > I have some information for rspamd users, and one question. > > As you may know, rspamd not using pyzor by directly calling pyzor binary. > > Instead, they say, you need to create special systemd socket, and call > pyzor through it. > > It is

Re: rspamd and pyzor

2022-05-03 Thread Kasak
> 3 мая 2022 г., в 09:08, Michael Hekeler написал(а): > > Am 02.05.22 19:06 schrieb kasak: >> Hello misc! >> >> I have some information for rspamd users, and one question. >> >> As you may know, rspamd not using pyzor by directly calling pyzor binary. >> >> Instead, they say, you need to

Maximum size of mfs in i386

2022-05-03 Thread Yoshihiro Kawamata
I would like some hints regarding the maximum size of mfs. mount_mfs(8) says: Note however that for mount_mfs the practical limit is based on datasize in login.conf(5), and ultimately depends on the per- arch MAXDSIZ limit. So, I searched for the MAXDSIZ value in the source code.

Re: rspamd and pyzor

2022-05-03 Thread Michael Hekeler
Am 02.05.22 19:06 schrieb kasak: > Hello misc! > > I have some information for rspamd users, and one question. > > As you may know, rspamd not using pyzor by directly calling pyzor binary. > > Instead, they say, you need to create special systemd socket, and call pyzor > through it. > > It is