Re: Extract tar balls

2021-10-30 Thread Edgar Pettijohn
the above errors first! A quick look at the manual for cvs looks like it probably should have just been: cvs tag successful-build-$DATE where $DATE is todays date. Edgar

Re: Extract tar balls

2021-10-30 Thread Edgar Pettijohn
On 10/29/21 10:15 PM, Bob Bernstein wrote: I'm trying to follow _The NetBSD Guide_, but I am stymied by these instructions, at https://netbsd.org/docs/guide/en/chap-fetch.html $ for file in *.tgz do tar -xzf $file -C / done Entering that first line and pressing just yields "for: Command

Re: Timer for X-windows?

2021-10-24 Thread Edgar Pettijohn
On 10/24/21 11:06 AM, Ignatios Souvatzis (GSG) wrote: Am 23. Oktober 2021 04:55:21 MESZ schrieb Simon Burge : #!/bin/sh $* osd_cat is in pkgsrc/x11/xosd I've used xmessage for similar tasks (in xbase) Same here. Its easy enough to script a timer and pop up an xmessage.

Re: Unicode to ASCII

2021-02-20 Thread Edgar Pettijohn
The attached script should do it. usage: convert.pl Edgar convert.pl Description: Perl program

Re: Daemonizing processes in NetBSD

2021-02-17 Thread Edgar Pettijohn
it if $pid; defined (my $ppid = fork()) or die "Can't fork: $!"; exit if $ppid; chdir "/" or die "Can't chdir '/': $!"; POSIX::setsid or die "Can't start new session: $!"; } daemonize(); eval { my @cmd = @ARGV; exec @cmd; }; warn $@ if $@; exit; Edgar

Re: postfix for 2 domains on 1 vps 1 ip

2021-01-01 Thread Edgar Pettijohn
On Fri, Jan 01, 2021 at 09:35:33PM +0530, Mayuresh wrote: > On Fri, Jan 01, 2021 at 09:53:13AM -0600, Edgar Pettijohn wrote: > > If you set up spf, dkim, and dns correctly you shouldn't have any issues. > > How exactly - meaning if these are set reverse dns check is not applied by

Re: postfix for 2 domains on 1 vps 1 ip

2021-01-01 Thread Edgar Pettijohn
reverse DNS when one uses same ip for multiple domains > and would it lead to some mail servers rejecting the mails of either > domain? > If you set up spf, dkim, and dns correctly you shouldn't have any issues. Edgar > -- > Mayuresh

Re: Postfix and local mail delivery - still relevant in 2020?

2020-06-07 Thread edgar
The dragonfly mailer is an improved version of femail.http://quigon.bsws.de/femail/femail-1.0.tgzOn Jun 6, 2020 2:05 PM, Sad Clouds wrote:On Sat, 6 Jun 2020 16:57:11 - (UTC) mlel...@serpens.de (Michael van Elst) wrote: > cryintotheblue...@gmail.com (Sad Clouds) writes: > > >I've been

Re: Finding parameters of existing ext2fs partition

2020-02-23 Thread Edgar Pettijohn
On 02/23/20 19:54, Thomas Mueller wrote: from Jason Mitchell: Does dumpfs supply any useful info? amelia2# dumpfs /dev/dk19 dumpfs: /dev/dk19: could not find superblock, skipped I didn't think dumpfs would work on non-ffs/ufs filesystems. Tom My manual claims that -O 1 is the

Re: sqlite3 issues

2020-02-17 Thread Edgar Pettijohn
On Feb 17, 2020 6:37 AM, Roy Marples wrote: > > On 17/02/2020 02:34, Edgar Pettijohn wrote: > > On 02/16/20 20:31, Edgar Pettijohn wrote: > >> I'm trying to learn to use sqlite3 and I have encountered an oddity. I > >> don't > >> have another system to

Re: [*EXT*] sqlite3 issues

2020-02-16 Thread Edgar Pettijohn
On 02/16/20 20:31, Edgar Pettijohn wrote: I'm trying to learn to use sqlite3 and I have encountered an oddity. I don't have another system to test on at the moment. So I'm not sure if its me, sqlite3, or netbsd. Either way. Here are the commands give: laptop$ /usr/bin/sqlite3 test.db

sqlite3 issues

2020-02-16 Thread Edgar Pettijohn
lackware|2 3|Winders|3 I was expecting the `3|Winders|3' line to look something like `3|Winders|' The os_group should have been set to NULL. NetBSD laptop 9.0 NetBSD 9.0 (GENERIC) #0: Fri Feb 14 00:06:28 UTC 2020 mkre...@mkrepro.netbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC amd64 Thanks, Edgar

Re: Upgrading to current by compiling leads to failed boot

2019-12-07 Thread Edgar Pettijohn
ally would recommend downloading the install kernel and put the sets on a usb stick, and use sysinst to upgrade. It is much more user friendly, plus it doesn't take near as long. Good luck. Edgar

Re: Non-blocking socket bug

2019-10-26 Thread Edgar Pettijohn
On Sat, Oct 26, 2019 at 09:42:47PM +0100, Sad Clouds wrote: > On Sat, 26 Oct 2019 15:20:42 -0500 > Edgar Pettijohn wrote: > > > > > On Oct 26, 2019 2:44 PM, Sad Clouds > > wrote: > > > > > > I've come across an issue when testing networking code, wh

Re: Non-blocking socket bug

2019-10-26 Thread Edgar Pettijohn
On Oct 26, 2019 2:44 PM, Sad Clouds wrote: > > I've come across an issue when testing networking code, which looks > like a bug. This is on NetBSD-8.1 > > When a listening socket is set non-blocking and we call accept() on > that socket, the new socket returned by accept() will also be >

Re: Write an install image to a flash drive?

2019-08-26 Thread Edgar Pettijohn
On Aug 26, 2019 8:59 AM, Jason Mitchell wrote: > > On Aug 25, 2019, at 8:26 AM, Rhialto wrote: > > >>  | I _can't imagine_ how many stupid things I just did, but could > >>  | someone please tell me how to get that install image onto the > >>  | flash drive in a form that will boot? > >> >

Re: Write an install image to a flash drive?

2019-08-26 Thread Edgar Pettijohn
Just install the system to the flash drive instead of the hard drive. On Aug 25, 2019 3:54 PM, Bob Bernstein wrote: > > Thanks for your reflections on USB sticks and booting therefrom! > > I know I am going to do more experiments with them. I bought two > 64 gig sticks, one of which I used to

Re: Zfs on NetBSD

2019-07-27 Thread Edgar Pettijohn
Haven't used it myself, but there is probably a module you need to load first. Edgar On Jul 26, 2019 1:55 PM, Ron Georgia wrote: > > All, > I am trying to setup (i.e. learn about) zfs. I see /sbin/zfs; however, when I > issue a zfs command I get the following error. I can’t fi

Re: gpg2 with mutt

2019-03-09 Thread Edgar Pettijohn
hypothesis with a symlink or putting /usr/pkg in your $PATH if it isn't already. Edgar

Re: Raspberry Pi as bridge

2019-01-22 Thread Edgar Pettijohn
On Jan 22, 2019 1:49 PM, Greg Troxel wrote: > > Jörn Clausen writes: > > > I am trying to use a Raspberry Pi running > > > > NetBSD armv7 8.99.30 NetBSD 8.99.30 (RPI2) > > > > as a bridge to extend my WiFi net to some devices. I have two NICs, > > usmsc0 (internal RJ45) and urtwn0 (WiFi USB).

Re: postfix alternatives on NetBSD / pkgsrc

2019-01-18 Thread Edgar Pettijohn
On Jan 18, 2019 8:16 AM, Mayuresh wrote: > > On Fri, Jan 18, 2019 at 08:03:41AM -0600, Edgar Pettijohn wrote: > > > 554 5.7.1 > > > > Seems like 550 would be a better error code for this situation. > > I was trying to set that (as I noticed gmail didn't compl

Re: postfix alternatives on NetBSD / pkgsrc

2019-01-18 Thread Edgar Pettijohn
On Jan 18, 2019 7:41 AM, Mayuresh wrote: > > On Fri, Jan 18, 2019 at 06:45:06AM -0600, Edgar Pettijohn wrote: > > I think you should post the logs from your postfix test with Gmail > > issue. I bet someone here knows an option to correct it. > > Not much I can see. I

Re: postfix alternatives on NetBSD / pkgsrc

2019-01-18 Thread Edgar Pettijohn
x. I'll definitely give exim a try on this aspect. > > Mayuresh I prefer opensmtpd. Unfortunately the pkgsrc version is quite old. I like the config it's quite simple. I also like postfix. The only problem with postfix is the overwhelming number of options to research. I think you should post the logs from your postfix test with Gmail issue. I bet someone here knows an option to correct it. Edgar

Re: libstdc++.so.7 is missing

2019-01-17 Thread edgar
On Fri, Jan 18, 2019 at 09:26:48AM +1100, Simon Burge wrote: > Edgar Pettijohn wrote: > > > On Jan 17, 2019 7:35 AM, Pedro Pinho wrote: > > > > > > While we are at it... is there a pkgin command to remove every installed > > package? > &

Re: libstdc++.so.7 is missing

2019-01-17 Thread Edgar Pettijohn
ne < pkgs.txt forgive errors. I'm writing from memory on my phone. It's been awhile since I've done this so can't make any guarantee. Edgar I have a feeling this may be needed if I would need to go back to the Q3 release. > Although, I would prefer if Q4 would work as I would like to use Midori

Re: Mailing list manager on NetBSD

2019-01-11 Thread Edgar Pettijohn
ut.  Escpecially when nothing else covers the same > functionality. > > -- > Brett Lymn > "We are were wolves", > "You mean werewolves?", > "No we were wolves, now we are something else entirely", > "Oh" I'm a big fdm advocate. It can do a lot. It all comes down to personal preference though. Edgar

Re: Mailing list manager on NetBSD

2019-01-10 Thread edgar
rom imap/pop and deliver locally or take messages from stdin and deliver them. The config allows for piping through and executing external commands. Its syntax is similar to pf. Edgar

sending patches

2019-01-10 Thread edgar
Hello, To which list do people generally send patches for adding features, etc. I am aware of the send-pr(1), but that seems more bug related. Thanks, Edgar

Re: rmt(8)

2019-01-10 Thread Edgar Pettijohn
On Jan 10, 2019 4:13 AM, Chavdar Ivanov wrote: > > Historically the remote tape path: > > % grep '/etc/rmt' /usr/src/sbin/dump/pathnames.h > #define   _PATH_RMT   "/etc/rmt" > Cool. I kinda guessed it was historical. Thanks, Edgar > On Thu, 10 Jan 2019 at 03

Re: Mailing list manager on NetBSD

2019-01-09 Thread edgar
ere be some downsides of doing it with procmail - besides cpu > cycles? > > Mayuresh The last maintainer of procmail says not to use it. Thats reason enough for me not to. https://marc.info/?l=openbsd-ports=141634350915839=2 Edgar

Re: Mailing list manager on NetBSD

2019-01-09 Thread edgar
mail id, which > I think procmail can manage. I don't use postfix but I'm sure there is a way to restrict this with some sort of access map. Edgar > > - I do need a web archiver with thread view etc. (and ability to write > text pattern searches of my own on the mail texts), for whi

rmt(8)

2019-01-09 Thread edgar
Hello list, I'm just curious why there is a link to /usr/sbin/rmt in /etc? deathstar$ ls -l /etc | grep rmt lrwxr-xr-x 1 root wheel 13 Jul 17 09:59 rmt -> /usr/sbin/rmt edgar

Re: Mailing list manager on NetBSD

2019-01-08 Thread Edgar Pettijohn
On Jan 8, 2019 7:49 PM, Mayuresh wrote: > > On Tue, Jan 08, 2019 at 11:21:30AM -0600, Edgar Pettijohn wrote: > > > Lastly it needs to be available in pkgsrc. > > > > > > > I'm not sure if it is in pkgsrc but mlmmj is nice. > > Thanks. Seems

Re: Mailing list manager on NetBSD

2019-01-08 Thread Edgar Pettijohn
On Jan 8, 2019 10:15 AM, Mayuresh wrote: > > I am looking to set up a mailing list manager on a NetBSD server. > > The member count is more or less fixed between 300 to 350 and isn't going > to grow beyond. > > The email archive should be browsable and searchable through a web > interface.

message board recommendations

2019-01-07 Thread edgar
I want to spend the time finding the least permissions per file. Thanks in advance, Edgar

Re: git https issue

2018-08-20 Thread edgar
On Aug 19, 2018 2:06 PM, matthew sporleder wrote: > > On Sun, Aug 19, 2018 at 4:26 AM, Riccardo Mottola > wrote: > > Hi, > > > > > > On 19/08/2018 02:26, Matt Sporleder wrote: > >> > >> > >> Can you do curl -vvv to GitHub? > > > > > > hmm, if you mean just to the homepage like below, we have an

Re: Booting netbsd-8 fails

2018-07-23 Thread edgar
You probably just need to build the modules and install them. Or you can build your kernel with npf included. Edgar On Jul 23, 2018 9:39 AM, Gua Chung Lim wrote: > > Thanks for your very kind responses, > > * Martin Husemann (mar...@duskware.de) wrote: > >> But

Re: Booting netbsd-8 fails

2018-07-23 Thread edgar
I'm pretty sure I've had the same happen before and it was because I had forgotten to build new modules also. Might be worth a try to just not load the npf modules. If it boots that's it. Edgar On Jul 22, 2018 6:00 AM, Martin Husemann wrote: > > On Sun, Jul 22, 2018 at 05:55:30PM +070

Re: sshguard fails to start

2018-05-22 Thread edgar
On May 21, 2018 11:50 AM, Mayuresh wrote: > > # /etc/rc.d/sshguard start > Starting sshguard. > > # /etc/rc.d/sshguard status > sshguard is not running. > > # /etc/rc.d/sshguard rcvar > # sshguard > $sshguard=YES > > What is up with sshguard here, unable to start and no log or

Re: npf woes

2018-05-13 Thread Edgar Pettijohn
On Sun, May 13, 2018 at 09:33:43AM -0500, Edgar Pettijohn wrote: > On Sun, May 13, 2018 at 09:18:18PM +0700, Gua Chung Lim wrote: > > * Edgar Pettijohn (ed...@pettijohn-web.com) wrote: > > > Looks like I may need to load some modules. > > > > # modload npf >

Re: npf woes

2018-05-13 Thread Edgar Pettijohn
On Sun, May 13, 2018 at 09:18:18PM +0700, Gua Chung Lim wrote: > * Edgar Pettijohn (ed...@pettijohn-web.com) wrote: > > Looks like I may need to load some modules. > > # modload npf > # cd /dev > # sh MAKEDEV npf > # modload npf_ext_log > # modload npf_ext_normalize

Re: npf woes

2018-05-13 Thread Edgar Pettijohn
Looks like I may need to load some modules.

npf woes

2018-05-13 Thread Edgar Pettijohn
quot;external" on $ext_if { pass stateful out final all } group default { pass final all block all apply "log" } Have I missed a preliminary step? Thanks, Edgar

Re: edgerouter lite

2018-05-07 Thread Edgar Pettijohn
On Mon, May 07, 2018 at 09:19:23PM +, m...@netbsd.org wrote: > On Mon, May 07, 2018 at 06:51:42AM -0500, ed...@pettijohn-web.com wrote: > > Appreciate your response. I feel confident I can install. More curious > > about what isn't supported yet. Such as multiple processors, altq, and the >

Re: Synaptics trackpad

2018-05-07 Thread Edgar Pettijohn
On Mon, May 07, 2018 at 05:27:53PM -0400, C?g wrote: > The version of xf86-input-synaptics in wip is 1.2.1; it cannot be > compiled because of LocalDevicePtr errors ('unknown type name'); now > the latest version is 1.9.0, and it can't be compiled because it can't > find sys/mouse.h. What is

Re: edgerouter lite

2018-05-07 Thread edgar
On May 6, 2018 11:48 PM, m...@netbsd.org wrote: > > On Mon, May 07, 2018 at 04:46:41AM +, m...@netbsd.org wrote: > > Attach console cable and ethernet cable. > > On host, configure it to a known IP, e.g. I use > > ifconfig re0 192.168.0.1 > > enable tftp via uncommenting the /etc/inetd.conf

edgerouter lite

2018-05-06 Thread Edgar Pettijohn
. Thanks, Edgar

edgerouter lite

2018-05-06 Thread Edgar Pettijohn
Just curious if anyone knows the current state of affairs for the edgerouter lite. I saw this https://blog.netbsd.org/tnf/entry/hands_on_experience_with_edgerouter. Its a couple of years old now though. I found the install media and what not, but I didn't see an INSTALL.html file. Thanks, Edgar

Re: Gah... How usable is www/firefox on NetBSD?

2018-05-01 Thread edgar
On May 1, 2018 12:09 PM, Robert Elz wrote: > >     Date:    Tue, 1 May 2018 21:29:21 +0530 >     From:    Mayuresh >     Message-ID:  <20180501155921.ga19...@warunjikardental.com> > >   | Any other browser or older firefox or 59 is >   | just

Re: Gah... How usable is www/firefox on NetBSD?

2018-05-01 Thread edgar
On May 1, 2018 11:09 AM, Kamil Rytarowski wrote: > > On 01.05.2018 17:59, Mayuresh wrote: > > Not able to browse continuously even for a minute without facing "Gah. > > Your tab just crashed." in www/firefox (59). > > > > Can't even login to gmail, nothing happens on clicking

Pf, squif-pf, transparent proxy

2017-07-18 Thread Rodolfo Edgar
Hi, I am going to do a proxy server on my lan network, I want to use pf as my firewall, then I remember a long time ago that ipfilter it works with mode transparent, but pf does not work with transparent proxy, by default is no enabled pf in squid, I dont exactly. I use squid -v I see ipf enabled

Re: Can I use NetBSD as a desktop system?

2017-07-17 Thread Edgar Pettijohn
Depends on the desk. ⁣Sent from BlueMail ​ On Jul 17, 2017, 1:31 PM, at 1:31 PM, SOUL_OF_ROOT 55 wrote: >Can I use NetBSD as a desktop system?

Re: NetBSD 7.1 i386 on Virtualbox (fatal breakpoint trap in supervisor mode)

2017-07-16 Thread Rodolfo Edgar
2017-07-16 8:53 GMT-05:00, Valery Ushakov <u...@stderr.spb.ru>: > Rodolfo Edgar <sololistasdecor...@gmail.com> wrote: > >> 2017-07-15 20:35 GMT-05:00, Valery Ushakov <u...@stderr.spb.ru>: >>> Rodolfo Edgar <sololistasdecor...@gmail.com> wrote: >>

Re: NetBSD 7.1 i386 on Virtualbox (fatal breakpoint trap in supervisor mode)

2017-07-15 Thread Rodolfo Edgar
2017-07-15 20:35 GMT-05:00, Valery Ushakov <u...@stderr.spb.ru>: > Rodolfo Edgar <sololistasdecor...@gmail.com> wrote: > >> I have machine when I am using virtualbox, I use 32 bits operating >> system as Debian, CentOS, FreeBSD, but NetBSD and OpenBSD have >> p

Re: npf configuration

2017-07-15 Thread Edgar Pettijohn
On 07/15/17 13:18, Jan Danielsson wrote: On 07/15/17 20:08, Edgar Pettijohn wrote: pass in on egress inet proto tcp from any to (egress) port { 80 443 } rdr-to 192.168.1.2 would redirect $ext_if port http, https to $int_if port http, https [---] Looked through the manual again and it looks

npf configuration

2017-07-15 Thread Edgar Pettijohn
and it doesn't look like this is possible, but maybe I've overlooked something. Thanks, Edgar

Re: rc and login classes

2017-07-08 Thread Edgar Pettijohn
, 2017, 3:10 PM, at 3:10 PM, Alexander Nasonov <al...@yandex.ru> wrote: >Edgar Pettijohn wrote: >> Look at rc.subr. it calls su to start the daemon. Look at the >> manual for rc.subr I think there are some variables you could add >> to the rc.d script to change the behavio

Re: rc and login classes

2017-07-07 Thread Edgar Pettijohn
On 07/07/17 15:11, Alexander Nasonov wrote: Edgar Pettijohn wrote: Look at rc.subr. it calls su to start the daemon. Look at the manual for rc.subr I think there are some variables you could add to the rc.d script to change the behavior. I only see su -m user -c ... in rc.subr. It's

Re: rc and login classes

2017-07-07 Thread Edgar Pettijohn
;al...@yandex.ru> wrote: >Edgar Pettijohn wrote: >> did you: >> # cap_mkdb /etc/login.conf > >Yes, I did run it. > >> > My understaning is that the tor process doesn't move to the "tor" >> > login class when switching a user. As a result, I can't res

Re: rc and login classes

2017-07-06 Thread Edgar Pettijohn
On 07/06/17 16:00, Alexander Nasonov wrote: Another issue on my server was trying to start a service (tor relay in my case) with a low limit on open files in the default login class. The relay starts as root but then it swiches to user "tor". I set the login class of the tor user to "tor"

/usr/pkg best practices

2017-07-03 Thread Edgar Pettijohn
I'm curious the best way to override utilities from base with utilities in /usr/pkg. For now I've just moved /usr/pkg up in my $PATH. Seems like there may be a more NetBSDish way to do it. Thanks, Edgar

Re: powerd

2017-07-02 Thread Edgar Pettijohn
On 07/02/17 03:40, Robert Elz wrote: Date:Sat, 1 Jul 2017 22:17:12 -0500 From:Edgar Pettijohn <ed...@pettijohn-web.com> Message-ID: <8fde5619-8942-3a5b-2be5-ac8772811...@pettijohn-web.com> | so I'm not really sure which list to send what to yet

powerd

2017-07-01 Thread Edgar Pettijohn
Shouldn't that be asynchronously? Or is my definitions backwards? Thanks, Edgar

Packages to NetBSD 7.1

2017-03-15 Thread Rodolfo Edgar
Hi guys, I want to use NetBSD 7.1 and the packages (binaries) are 7.1 in the installer, but in the ftp server there is not the 7.1 packages, I changed to 7.0.2, but when I install some package I see warnings. My question is the packages to release 7.1 is the same to 7.0.2, thanks

Re: Keyboard latin american NetBSD?

2016-11-07 Thread Rodolfo Edgar
Thanks Leonardo! 2016-11-07 5:35 GMT-05:00, Leonardo Taccari <l...@netbsd.org>: > Hello Rodolfo, > > Rodolfo Edgar writes: >> Hi guys, I have a question, NetBSD has support for keyboard latin >> american? Because when I am installing never I saw keyboard latin >&

Keyboard latin american NetBSD?

2016-11-07 Thread Rodolfo Edgar
Hi guys, I have a question, NetBSD has support for keyboard latin american? Because when I am installing never I saw keyboard latin american only spanish, my key board is latin, thanks you for you reply

Re: Packages to NetBSD 7.0.2

2016-10-28 Thread Rodolfo Edgar
2016-10-28 14:03 GMT-05:00, Manuel Bouyer <bou...@antioche.eu.org>: > On Fri, Oct 28, 2016 at 01:12:04PM -0500, Rodolfo Edgar wrote: >> Hi everyone my question is When will it be available binary packages >> for NetBSD 7.0.2? >> I am trying NetBSD 7.0.2 and I saw

Packages to NetBSD 7.0.2

2016-10-28 Thread Rodolfo Edgar
Hi everyone my question is When will it be available binary packages for NetBSD 7.0.2? I am trying NetBSD 7.0.2 and I saw that pkgin is not available because packages does not exit in the mirror

How to enable squid-pf

2016-09-12 Thread Rodolfo Edgar
Hi guys, I want to use mode transparent with squid and pf, the default install squid3 with pkgsrc and pkgin does not enable squid-pf, I am going to see via pkgsrc make show-options that, help me please how enable --enable-pf-transparent to squid3, thanks a lot. I am using NetBSD 6.1.5

Re: Proxy server, mode intercept on NetBSD 7.0.1

2016-08-03 Thread Rodolfo Edgar
2016-08-03 2:16 GMT-05:00, Christos Zoulas : > In article > <1470085391.2331984.683025593.376ee...@webmail.messagingengine.com>, > wrote: >>Me butthurt? That's comical. You just wrote the most butthurt email >>I've ever seen on the mailing lists,

Re: Proxy server, mode intercept on NetBSD 7.0.1

2016-07-29 Thread Rodolfo Edgar
Hi guys again, the problem is a bug of ipfilter 5, the same rules in NetBSD 6.1.5 it works, version in NetBSD 6.1.5 of ipfilter is 4. 2016-07-27 5:05 GMT-05:00, Rodolfo Edgar <sololistasdecor...@gmail.com>: > Hi guys, > > Help me please, I have a small LAN in my offi

Proxy server, mode intercept on NetBSD 7.0.1

2016-07-27 Thread Rodolfo Edgar
Hi guys, Help me please, I have a small LAN in my office, the scenary is: InternetRouter ISP(wm0-NetBSD-wm1,wm2)LAN1, LAN2 wm0=192.168.1.85/24 wm1=192.168.2.85/24 wm2=192.168.3.85/24 I am going to do proxy on wm1, currently NetBSD is a firewall and router, I use ipfilter, my rules

Re: Postfix-dovecot-squirrelmail in NetBSD 6.1 RC2 Warning: fd limit (ulimit -n)

2013-03-24 Thread Edgar Rodolfo
2013/3/24, Greg Troxel g...@ir.bbn.com: Edgar Rodolfo rodolfo...@gmail.com writes: Hi guys, I am testing the rc2 i386, i am learning to use basic mail server on NetBSD, currently i am doing a basic mail server with postfix, dovecot and squirrelmail. The warning that i see: Warning: fd