Re: OpenBSD 6.4 smtpd local mail delivery missing "From " when .forward (procmail)

2019-01-27 Thread Gilles Chehade
On Sun, Jan 27, 2019 at 12:42:23PM -0700, Steve Williams wrote: > > Hi Gilles, > > Thanks very much for the reply.?? I had looked in for some kind of flag that > could be set in the procmail config file... I never thought it would be a > command line argument to procmail :(?? I cannot believe I

Re: Is a commercial wireless router a security risk if it is behind an OpenBSD router with pf?

2019-01-27 Thread Judah Kocher
I was in the same position about 18 months ago when I reached the conclusion that I didn't trust my RT-AC88U. I spent about a month teaching myself iptables before learning about OpenBSD and PF and never looked back. I have read and reread OpenBSD for Dummies and The Book of PF multiple times,

Re: bsd.mp doesn't boot

2019-01-27 Thread Mike Larkin
On Sun, Jan 27, 2019 at 07:26:00AM -0700, hdrozdow wrote: > I think I have come to conclusion too fast. > After second reboot (when firmware and binary patches are installed) > the boot is stuck at the same place. > Someone asked if I am booting /bsd - yes. > > Here is a diff between 6.3 (first

Re: apu2 em0/dhclient problems

2019-01-27 Thread Steve Williams
On 27/01/2019 1:44 p.m., Edgar Pettijohn wrote: On Sun, Jan 27, 2019 at 09:34:54PM +0100, Mikkel C. Simonsen wrote: Den 27-01-2019 kl. 19:45 skrev trondd: On Sun, January 27, 2019 12:44 pm, Edgar Pettijohn wrote: I'm trying to replace my dieing soekris box with an apu2 dmesg below. However, I

Re: apu2 em0/dhclient problems

2019-01-27 Thread Mikkel C. Simonsen
Den 27-01-2019 kl. 19:45 skrev trondd: On Sun, January 27, 2019 12:44 pm, Edgar Pettijohn wrote: I'm trying to replace my dieing soekris box with an apu2 dmesg below. However, I can't seem to get em0 to connect to my isp. It will work when connecting to the soekris box though. So I don't think

Re: apu2 em0/dhclient problems

2019-01-27 Thread Edgar Pettijohn
On Sun, Jan 27, 2019 at 09:34:54PM +0100, Mikkel C. Simonsen wrote: > Den 27-01-2019 kl. 19:45 skrev trondd: > > On Sun, January 27, 2019 12:44 pm, Edgar Pettijohn wrote: > > > I'm trying to replace my dieing soekris box with an apu2 dmesg below. > > > However, I can't seem to get em0 to connect

Re: OpenBSD 6.4 smtpd local mail delivery missing "From " when .forward (procmail)

2019-01-27 Thread Steve Williams
On 27/01/2019 2:21 a.m., Gilles Chehade wrote: On Sat, Jan 26, 2019 at 08:53:06PM -0700, Steve Williams wrote: Hi, I upgraded from OpenBSD 6.3 to OpenBSD 6.4 today.?? I upgraded all packages, switched to php7, etc. I've been running OpenBSD since 2.7 so this is a very known process. The

Re: apu2 em0/dhclient problems

2019-01-27 Thread trondd
On Sun, January 27, 2019 12:44 pm, Edgar Pettijohn wrote: > I'm trying to replace my dieing soekris box with an apu2 dmesg below. > However, I can't seem to get em0 to connect to my isp. It will work > when connecting to the soekris box though. So I don't think its the > interface that is the

Re: bsd.mp doesn't boot

2019-01-27 Thread hdrozdow
I think I have come to conclusion too fast. After second reboot (when firmware and binary patches are installed) the boot is stuck at the same place. Someone asked if I am booting /bsd - yes. Here is a diff between 6.3 (first reboot .mp) and 6.4 (posted earlier (.sp)). 1,2c1,2 < OpenBSD 6.3

apu2 em0/dhclient problems

2019-01-27 Thread Edgar Pettijohn
I'm trying to replace my dieing soekris box with an apu2 dmesg below. However, I can't seem to get em0 to connect to my isp. It will work when connecting to the soekris box though. So I don't think its the interface that is the problem. But everything I try seems to rule out eachother as the

Re: bsd.mp doesn't boot

2019-01-27 Thread hdrozdow
hdrozdow wrote > Is there a way to run smt=1 on boot? I suspect that it can be related. Hello, I think I was right. OpenBSD 6.3 works with bsd.mp, how to compile 6.4 kernel with smt=1 to confirm this? I am posting this from 6.3 I would appreciate if someone would point me into right direction

Re: OpenBSD 6.4 smtpd local mail delivery missing "From " when .forward (procmail)

2019-01-27 Thread Edgar Pettijohn
On Jan 27, 2019 12:34 AM, Steve Williams wrote: > > On 26/01/2019 11:03 p.m., ed...@deathstar.my.domain wrote: > > On Sat, Jan 26, 2019 at 08:53:06PM -0700, Steve Williams wrote: > >> Hi, > >> > >> I upgraded from OpenBSD 6.3 to OpenBSD 6.4 today.  I upgraded all packages, > >> switched to

Re: OpenBSD 6.4 smtpd local mail delivery missing "From " when .forward (procmail)

2019-01-27 Thread Gilles Chehade
On Sat, Jan 26, 2019 at 08:53:06PM -0700, Steve Williams wrote: > Hi, > > I upgraded from OpenBSD 6.3 to OpenBSD 6.4 today.?? I upgraded all packages, > switched to php7, etc. > > I've been running OpenBSD since 2.7 so this is a very known process. > > The upgrade went quite smoothly and is

Newline-issues with c, i, and a command in sed

2019-01-27 Thread Andreas Kusalananda Kähäri
Hi, I wonder if this is the expected and correct behaviour of OpenBSD sed(1): $ cat file 1 2 3 $ sed -e '1c\' -e 'A' file A2 3 $ sed -e '1i\' -e 'A' file A1 2 3 $ sed -e '1a\' -e 'A' file 1 A2 3 I was expecting the 'A' to be followed by a newline in all of the above cases. I can't for the