Re: Subadressing sieve

2021-03-12 Thread Petr Ročkai
Dear Pascal, On Fri, Mar 12, 2021 at 10:52:15PM +0100, Pascal Huisman wrote: > I have sieve filtering setup threw lmtp to dovecot. Dovecot does the > filtering. It works. But for the subaddressing it doesn't. I think you might need to set 'rcpt-to' in smtpd.conf on the lmtpd line, otherwise the

Re: Additional Chunks on RAID

2021-03-12 Thread Duncan Patton a Campbell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 9 Mar 2021 16:37:00 -0700 Duncan Patton a Campbell wrote: > Howdy all? > > Does anyone know how to rebuild a raid1 with additional chunks? > ... that is without losing the "degraded" volume? > > Thanks, > > Dhu > So as it turns

Subadressing sieve

2021-03-12 Thread Pascal Huisman
Dear list, I have sieve filtering setup threw lmtp to dovecot. Dovecot does the filtering. It works. But for the subaddressing it doesn't. According to rfc5233 I have to: require "subaddress", which I have done. I have to use (explicit example): # File mailing list messages (subscribed as

Re: Intel wifi ipw showing up but not working

2021-03-12 Thread Riccardo Mottola
Hi, Stefan Sperling wrote: tecra$ netstat -W ipw0 ieee80211 on ipw0: 10 input management packets discarded This one looks bad. I think it means the net80211 stack ends up ignoring the AP's assoc response frame. I believe your situation is that the firmware is in associated state,

Re: Intel wifi ipw showing up but not working

2021-03-12 Thread Stefan Sperling
On Fri, Mar 12, 2021 at 07:01:10PM +0100, Stefan Sperling wrote: > On Fri, Mar 12, 2021 at 06:37:30PM +0100, Riccardo Mottola wrote: > > Happy and bold, I tried WEP too... but it does not connect. > > It says interface is up (key is correct) but "nothing", dhclient doesn't get > > a link. > > > >

Re: Intel wifi ipw showing up but not working

2021-03-12 Thread Stefan Sperling
On Fri, Mar 12, 2021 at 06:37:30PM +0100, Riccardo Mottola wrote: > > diff dfcb0a350e790649cafe6bd5f9f4cf2319ce75fd /usr/src > > blob - 20a9b617e6d7ae0e179370512376ce8142c96986 > > file + sys/dev/pci/if_ipw.c > > --- sys/dev/pci/if_ipw.c > > +++ sys/dev/pci/if_ipw.c > > @@ -1781,6 +1781,12 @@

Re: Cannot get httpd block directives to work

2021-03-12 Thread T K
Well, indeed shame on me Putting more specifc rules just after first "server" statements is a gamechanger. Good lesson of proper and coscious reading manuals and being more patient rather than googling stuff and bothering people. And yet another proof that if something is not working in

gold linker on OpenBSD

2021-03-12 Thread Riccardo Mottola
Hello, is the gold linker available for OpenBSD i386? maybe as a package and I am not finding it? I have issues linking with the standard and bfd linkers, a suggestion was to use gold, which helps on e.g. FreeBSD. Riccardo

[www] typo year for OpenSSH 8.5 release

2021-03-12 Thread Alex Naumov
Hello, The date of OpenSSH 8.5 release on https://www.openssh.com/openbsd.html page is wrong. 2020 => 2021 Cheers, Alex

Re: gold linker on OpenBSD

2021-03-12 Thread Stuart Henderson
On 2021-03-12, Riccardo Mottola wrote: > is the gold linker available for OpenBSD i386? No.

Re: Cannot get httpd block directives to work

2021-03-12 Thread Shane Lazarus
Heya A quick read of the man page shows that the rule is first match for location stanzas. So if you want the sub-dirs to not be read, place them above the root location in the conf file. Tested on 6.8: I get 403's for block stanza placed above root location stanza. I get files served when

Cannot get httpd block directives to work

2021-03-12 Thread T K
Hi there, I am trying to block direct access to given subfolder of simple php website hosted on OpenBSD 6.8 amd64. Inside webroot folder there are some subfolders containing html files I'd like to restrict for direct requests, as they are intended for including to php scripts, not direct viewing.