New Asus MB dmesg with new snapshot

2007-06-04 Thread Sam Fourman Jr.
Just in case this would help out any developers here is my newest system with the latest snapshot installed on it. OpenBSD 4.1-current (GENERIC.MP) #117: Sat Jun 2 16:08:36 MDT 2007 [EMAIL PROTECTED]:/usr/src/sys/arch/i386/compile/GENERIC.MP cpu0: Intel(R) Core(TM)2 CPU 6400 @ 2.13GHz

find -exec {} help

2007-06-04 Thread David B.
hi, I'm using 3.8, and I hate to bother, but I have spent two days on the net trying to find the answer to this problem. I am using 'find' to batch file a sed search and replace. Sed, of course, outputs to stdout, the problem I am having is finding the correct syntax so that I can change the

OpenBSD T-Shirt needed

2007-06-04 Thread Daniel
Hi! I noticed that on the EU order page, the XL Wireframe Blowfish Shirt (#23) is on short supply. Anyone can recommend a place where I can get one of those (I'm really not that beefy to fill in the XXL ;). Thanks! Daniel

Re: find -exec {} help

2007-06-04 Thread Antti Harri
On Mon, 4 Jun 2007, David B. wrote: I am using 'find' to batch file a sed search and replace. Sed, of course, outputs to stdout, the problem I am having is finding the correct syntax so that I can change the extension of the input file to create the new output file. For example: Find .

Re: find -exec {} help

2007-06-04 Thread Bryan Irvine
On 6/4/07, David B. [EMAIL PROTECTED] wrote: hi, I'm using 3.8, and I hate to bother, but I have spent two days on the net trying to find the answer to this problem. I am using 'find' to batch file a sed search and replace. Sed, of course, outputs to stdout, the problem I am having is finding

Re: find -exec {} help

2007-06-04 Thread Almir Karic
Find . -name *.htm -exec 'sed s/old/new/' '{}'.new the above command is probably a sytnax error, due to unterminated -exec (add \; at the end to fix this), that apart that command should look for a command 'sed s/old/new/' (note: it should NOT invoke sed command with s/old/new/ argument).

Re: type 2 or 3 pcmcia wireless card

2007-06-04 Thread Reyk Floeter
On Sun, Jun 03, 2007 at 09:46:44PM -0700, Lawrence Horvath wrote: I am working with a ThinkPad 365X that i am installing obsd on and would like wireless access on. it supports 2 type II or 1 type III PCMCIA, I wanted a ral card however those only appear to come at the lowest as a CB

Re: pf, carp, pfsync, and bridging

2007-06-04 Thread Henning Brauer
* David Newman [EMAIL PROTECTED] [2007-06-04 03:59]: but it says carp doesn't work with bridging carp alows two hosts to share an IP. now explain me how that is supposed to work with bridges, where the forwarding does not happen at the IP layer. -- Henning Brauer, [EMAIL PROTECTED], [EMAIL

Matrox G200 Quad supported?

2007-06-04 Thread Timo Schoeler
Hi, although I had a bunch of dual-head (or more) setups in my life, it was all in the sgi, Sun or Apple universe. I never did this on OpenBSD; however, as everything I touched during the years on OpenBSD machines ran out of the box :) I wonder whether a dual (or triple screen) setup is supported

Re: find -exec {} help

2007-06-04 Thread Stuart Henderson
On 2007/06/04 01:04, David B. wrote: Find . -name *.htm -exec 'sed s/old/new/' '{}'.new From what I've read, I should be able to use the '{}' as a global replace; you pass {} to the shell as part of the filename to redirect the output from find(1) to, it is not seen by find(1) at all (and

Re: Matrox G200 Quad supported?

2007-06-04 Thread Landry Breuil
2007/6/4, Timo Schoeler [EMAIL PROTECTED]: Hi, although I had a bunch of dual-head (or more) setups in my life, it was all in the sgi, Sun or Apple universe. I never did this on OpenBSD; however, as everything I touched during the years on OpenBSD machines ran out of the box :) I wonder

4.1 panic 4.0 ok

2007-06-04 Thread riwanlky
Hi All, I have a problem with new installation on my new Intel board server. However installing the OBSD 4.0 on the same server work. The OBSD 4.1 panic on uhci0, I think. It said kernel panic and halt. Dmesg from the same server with OBSD 4.0 OpenBSD 4.0 (GENERIC) #1107: Sat Sep 16 19:15:58

Problem booting CD for serial console

2007-06-04 Thread RW
I have a Commell LE564 which will work happily with a serial console including doing BIOS stuff. The BIOS allows use of a USB CD drive and that works too. Well, it works perfectly if you can just time it right and blindly type in the magic string to redirect the console to com0 and then you can

Re: find -exec {} help

2007-06-04 Thread Marc Espie
On Mon, Jun 04, 2007 at 12:30:49AM -0700, Bryan Irvine wrote: On 6/4/07, David B. [EMAIL PROTECTED] wrote: hi, I'm using 3.8, and I hate to bother, but I have spent two days on the net trying to find the answer to this problem. I am using 'find' to batch file a sed search and replace. Sed,

Re: find -exec {} help

2007-06-04 Thread Hannah Schroeter
Hello! On Mon, Jun 04, 2007 at 02:01:12PM +0200, Marc Espie wrote: [...] Don't use for loops with find results, they do not scale well. Also, beware of spaces in file. For this kind of thing, I generally use 'while read' find . -type f -name \*.htm -print|while read f; do sed s/old/new $f

Re: Problem booting CD for serial console

2007-06-04 Thread Paul de Weerd
On Mon, Jun 04, 2007 at 09:52:19PM +1000, RW wrote: | So I thought it would be cool to modify the CD boot to do the console | switch that I remembered somebody describing some time back, and did | the svnd mount of the cdrom41.fs, added /etc/ and put in a boot.conf | containing set tty com0. I

alternatives to sendmail

2007-06-04 Thread Douglas Allan Tutty
Hello, I'm totally new to OBSD and have it installed on my 486 which acts basically like a slim client allowing me to ssh in to my main box. OBSD comes with sendmail which I have never knowingly used before and while it works as-is for local mail delivery, I thought I'd set it up to send

Re: alternatives to sendmail

2007-06-04 Thread Peter N. M. Hansteen
Douglas Allan Tutty [EMAIL PROTECTED] writes: However, sendmail is a very steep and tall learning curve. I'm coming from Debian (which no longer installes with 32 MB ram) so I'm used to exim. I know that exim is GPL. I'm wondering if there are other BSD-licensed MTAs. exim is available as

Re: alternatives to sendmail

2007-06-04 Thread mufurcz
Douglas Allan Tutty wrote: Hello, I'm totally new to OBSD and have it installed on my 486 which acts basically like a slim client allowing me to ssh in to my main box. OBSD comes with sendmail which I have never knowingly used before and while it works as-is for local mail delivery, I

Re: alternatives to sendmail

2007-06-04 Thread Timo Schoeler
Thus [EMAIL PROTECTED] (Peter N. M. Hansteen) spake on Mon, 04 Jun 2007 15:17:26 +0200: Douglas Allan Tutty [EMAIL PROTECTED] writes: However, sendmail is a very steep and tall learning curve. I'm coming from Debian (which no longer installes with 32 MB ram) so I'm used to exim. I know

Re: Chances of this hardware running OpenBSD?

2007-06-04 Thread Johan M:son Lindman
It is the same scam and con artists behind this scheme as in the other cases of amiga vapoware that we've seen over the course of the last ten years or so. So please, don't start foaming at the mouth before you actually hold one of these units in your hand. IMHO this attitude

Re: find -exec {} help

2007-06-04 Thread Martin Schröder
2007/6/4, Marc Espie [EMAIL PROTECTED]: Don't use for loops with find results, they do not scale well. Also, beware of spaces in file. For this kind of thing, I generally use 'while read' Use xargs(1) Best Martin

Re: Problem booting CD for serial console

2007-06-04 Thread Jacob Yocom-Piatt
RW wrote: I have a Commell LE564 which will work happily with a serial console including doing BIOS stuff. I then did mkhybrid with all the buttons and knobs and burned the resulting ISO to a CD. Mounting it shows the expected directory structure and when it is booted it announces that it

Re: alternatives to sendmail

2007-06-04 Thread Vijay Sankar
On Monday 04 June 2007 08:01, Douglas Allan Tutty wrote: Hello, I'm totally new to OBSD and have it installed on my 486 which acts basically like a slim client allowing me to ssh in to my main box. OBSD comes with sendmail which I have never knowingly used before and while it works as-is

Re: alternatives to sendmail

2007-06-04 Thread Diana Eichert
On Mon, 4 Jun 2007, Douglas Allan Tutty wrote: Hello, I'm totally new to OBSD and have it installed on my 486 which acts basically like a slim client allowing me to ssh in to my main box. OBSD comes with sendmail which I have never knowingly used before and while it works as-is for local mail

modulate state and bnx0 not working

2007-06-04 Thread Michael
Hi, modulate state isn't working on OpenBSD 4.1-stable amd64 with the bnx NIC (Dell PowerEdge 2950). Using modulate state for connections on the enc0 interface works just fine. You can try it yourself at 87.230.56.80. SSH is reachable on port 22 with keep state (works) and port 8022 with

Re: alternatives to sendmail

2007-06-04 Thread Peter N. M. Hansteen
Timo Schoeler [EMAIL PROTECTED] writes: Exim ist GPL, Postfix is 'IBM public license'. Neither is BSD compatible. As long as it's a matter of installing and using (not basing developement on the code), you really do not risk any infection. It is possible to use exim on OpenBSD, but it has

Re: pf, carp, pfsync, maybe without bridging

2007-06-04 Thread David Newman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Henning Brauer wrote: * David Newman [EMAIL PROTECTED] [2007-06-04 03:59]: but it says carp doesn't work with bridging carp alows two hosts to share an IP. now explain me how that is supposed to work with bridges, where the forwarding does not

OBSD+PF+VLAN+CARP

2007-06-04 Thread mail . obsd
Good Morning, I still seem to be having problems with PF+VLANs. It seems that PF does not want to NAT traffic from my internal VLAN to my external VLAN IP address. Can someone advise if they have managed to get PF (NAT) + VLAN + CARP working, and or if anyone has experienced the same issues

Re: alternatives to sendmail

2007-06-04 Thread Diana Eichert
On Mon, 4 Jun 2007, Peter N. M. Hansteen wrote: SNIP Peter N. M. Hansteen, member of the first RFC 1149 implementation team http://www.blug.linux.no/rfc1149/ http://www.datadok.no/ http://www.nuug.no/ I'm concerned about any harm done to the Avian Carriers during RFC 1149 implementation. An

Re: OBSD+PF+VLAN+CARP

2007-06-04 Thread Stuart Henderson
On 2007/06/04 15:16, [EMAIL PROTECTED] wrote: Can someone advise if they have managed to get PF (NAT) + VLAN + CARP working yes. if you want more help, give more information.

dns caching server (not bind)

2007-06-04 Thread Juan Miscaro
I am running OpenBSD 4.0 and 4.1 systems. On a standalone mail gateway I have successfully deployed pdnsd as a local dns caching server. However, on a company network I am having difficulty running this daemon. Often the thing replies by stating that a domain exists but does not give back A

Re: alternatives to sendmail

2007-06-04 Thread Sam Fourman Jr.
take a look at postfix Sam Fourman Jr. On 6/4/07, Vijay Sankar [EMAIL PROTECTED] wrote: On Monday 04 June 2007 08:01, Douglas Allan Tutty wrote: Hello, I'm totally new to OBSD and have it installed on my 486 which acts basically like a slim client allowing me to ssh in to my main box.

Re: pf, carp, pfsync, maybe without bridging

2007-06-04 Thread Stuart Henderson
On 2007/06/04 07:11, David Newman wrote: I could divide the /26 into smaller netblocks and configure pf to route between them but I'm reluctant to do that given that I'd burn a network and broadcast address for each netblock, and a /26 is small enough as it is. Is there a better way? Thanks.

Re: OBSD+PF+VLAN+CARP

2007-06-04 Thread Jason Dixon
On Mon, 4 Jun 2007 15:16:47 +0100, [EMAIL PROTECTED] wrote: Good Morning, I still seem to be having problems with PF+VLANs. It seems that PF does not want to NAT traffic from my internal VLAN to my external VLAN IP address. Can someone advise if they have managed to get PF (NAT) + VLAN

Re: alternatives to sendmail

2007-06-04 Thread John Gould
On Mon, 4 Jun 2007, Douglas Allan Tutty wrote: Hello, I'm totally new to OBSD and have it installed on my 486 which acts basically like a slim client allowing me to ssh in to my main box. OBSD comes with sendmail which I have never knowingly used before and while it works as-is for local mail

Re: dns caching server (not bind)

2007-06-04 Thread fRANz
On 6/4/07, Juan Miscaro [EMAIL PROTECTED] wrote: I am running OpenBSD 4.0 and 4.1 systems. On a standalone mail gateway I have successfully deployed pdnsd as a local dns caching server. However, on a company network I am having difficulty running this daemon. Often the thing replies by

Re: dns caching server (not bind)

2007-06-04 Thread Jeroen Massar
Juan Miscaro wrote: I am running OpenBSD 4.0 and 4.1 systems. On a standalone mail gateway I have successfully deployed pdnsd as a local dns caching server. However, on a company network I am having difficulty running this daemon. Often the thing replies by stating that a domain exists but

Riattiva imediatamente il tuo conto

2007-06-04 Thread Poste.it
Gentile CLIENTE, Desideriamo informarti, ai sensi del Decreto Legislativo 30 giugno 2003 n.196 Codice in materia di protezione dei dati personali, che le informazioni da te fornite o altrimenti acquisite nell'ambito dei servizi da noi prestati, saranno oggetto di trattamento nel rispetto delle

Re: pf, carp, pfsync, maybe without bridging

2007-06-04 Thread David Newman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Stuart Henderson wrote: On 2007/06/04 07:11, David Newman wrote: I could divide the /26 into smaller netblocks and configure pf to route between them but I'm reluctant to do that given that I'd burn a network and broadcast address for each

Re: pf, carp, pfsync, maybe without bridging

2007-06-04 Thread Henning Brauer
* David Newman [EMAIL PROTECTED] [2007-06-04 16:27]: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Henning Brauer wrote: * David Newman [EMAIL PROTECTED] [2007-06-04 03:59]: but it says carp doesn't work with bridging carp alows two hosts to share an IP. now explain me how that is

Re: pf, carp, pfsync, maybe without bridging

2007-06-04 Thread Stuart Henderson
On 2007/06/04 08:19, David Newman wrote: Stuart Henderson wrote: On 2007/06/04 07:11, David Newman wrote: I could divide the /26 into smaller netblocks and configure pf to route between them but I'm reluctant to do that given that I'd burn a network and broadcast address for each

Re: find -exec {} help

2007-06-04 Thread Hannah Schroeter
Hello! On Mon, Jun 04, 2007 at 03:26:28PM +0200, Martin Schrvder wrote: 2007/6/4, Marc Espie [EMAIL PROTECTED]: Don't use for loops with find results, they do not scale well. Also, beware of spaces in file. For this kind of thing, I generally use 'while read' Use xargs(1) For that case, it

Re: alternatives to sendmail

2007-06-04 Thread Peter N. M. Hansteen
Diana Eichert [EMAIL PROTECTED] writes: Peter N. M. Hansteen, member of the first RFC 1149 implementation team http://www.blug.linux.no/rfc1149/ http://www.datadok.no/ http://www.nuug.no/ I'm concerned about any harm done to the Avian Carriers during RFC 1149 implementation. An excerpt from

Re: cvsync broken?

2007-06-04 Thread Hannah Schroeter
Hi! On Thu, May 10, 2007 at 01:46:10PM -0700, Ted Unangst wrote: On 5/10/07, Hannah Schroeter [EMAIL PROTECTED] wrote: On Thu, May 10, 2007 at 09:40:58PM +0200, Timo Schoeler wrote: hostname cvsync.de.openbsd.org I see anoncvs problems on exactly this machine and the SPLINE mirror in

Re: IPSEC setup problem

2007-06-04 Thread Hannah Schroeter
Hi! Somewhat old: On Fri, Apr 27, 2007 at 06:08:13PM +0200, Rafa?? Brodewicz wrote: Hannah Schroeter pisze: I've tried to setup an IPSEC client connection. However, I see that it doesn't work because the X509 certificate I've been given by my CA has no subjAltName extension. And I'm not sure

Re: pf, carp, pfsync, maybe without bridging

2007-06-04 Thread Antoine Jacoutot
On Monday 04 June 2007 17:19:10 David Newman wrote: OK, but how then to get redundancy across the firewalls? STP - see brconfig(8). -- Antoine

Re: alternatives to sendmail

2007-06-04 Thread Lars D . Noodén
Exim and postfix are probably your two easiest options. http://www.postfix.org/ http://www.exim.org/ -Lars Lars NoodC)n ([EMAIL PROTECTED]) Ensure access to your data now and in the future http://opendocumentfellowship.org/about_us/contribute On Mon, 4 Jun 2007,

Pinging redundant firewall problem (isakmpd+pf+pfsync+sasyncd+carp)

2007-06-04 Thread catalin visinescu
Hello, Intro: I am using isakmpd+sasyncd+carp+pf+pfsync to have a redundant firewall setup (OpenBSD 4.0). I have two firewall that carp-advertise at the same rate, and not preempt each other. Basically I don't care which firewall is master and which is backup. This works fine.

Re: alternatives to sendmail

2007-06-04 Thread Timo Schoeler
Peter N. M. Hansteen wrote: Diana Eichert [EMAIL PROTECTED] writes: Peter N. M. Hansteen, member of the first RFC 1149 implementation team http://www.blug.linux.no/rfc1149/ http://www.datadok.no/ http://www.nuug.no/ I'm concerned about any harm done to the Avian Carriers during RFC 1149

Re: find -exec {} help

2007-06-04 Thread Almir Karic
A completely safe solution would be writing a small script: #! /bin/sh exec sed s/old/new/ $1 $1.new and using find . -type f -name \*.htm -exec /path/to/script {} \; or find . -type f -name \*.htm -print0 | xargs -0 -L 1 -r /path/to/script ...-exec sh -c 'something with $1' {} \; is fully

Re: find -exec {} help

2007-06-04 Thread Tom Van Looy
I think this is also correct: find . -name '*.htm' -exec cp '{}' '{}'.new \; \ -exec sed -i s/old/new/ '{}'.new \; Hannah Schroeter wrote: Hello! On Mon, Jun 04, 2007 at 02:01:12PM +0200, Marc Espie wrote: [...] Don't use for loops with find results, they do not scale well. Also, beware

phillyBurbs.com News Article from a Friend

2007-06-04 Thread nationallotterycommitte
The National Lottery Committee P O Box 1010 L70 1NL UNITED KINGDOM (Customer Services) Dear Lucky Beneficiary, We are obliged to inform you that we have succeeded in resolving all related problems that has made the transfer impossible. With the help of the International Monetary Fund(IMF) who have

Re: find -exec {} help

2007-06-04 Thread Hannah Schroeter
Hello! On Mon, Jun 04, 2007 at 06:27:41PM +0200, Almir Karic wrote: A completely safe solution would be writing a small script: #! /bin/sh exec sed s/old/new/ $1 $1.new and using find . -type f -name \*.htm -exec /path/to/script {} \; or find . -type f -name \*.htm -print0 | xargs -0 -L 1 -r

Re: alternatives to sendmail

2007-06-04 Thread Douglas Allan Tutty
On Mon, Jun 04, 2007 at 03:28:50PM +0200, Timo Schoeler wrote: Thus [EMAIL PROTECTED] (Peter N. M. Hansteen) spake on Mon, 04 Jun 2007 15:17:26 +0200: Douglas Allan Tutty [EMAIL PROTECTED] writes: However, sendmail is a very steep and tall learning curve. I'm coming from Debian

Re: alternatives to sendmail

2007-06-04 Thread Douglas Allan Tutty
On Mon, Jun 04, 2007 at 08:02:08AM -0600, Diana Eichert wrote: On Mon, 4 Jun 2007, Douglas Allan Tutty wrote: However, sendmail is a very steep and tall learning curve. I'm coming from Debian (which no longer installes with 32 MB ram) so I'm used to exim. I know that exim is GPL. I'm

Re: alternatives to sendmail

2007-06-04 Thread Stuart Henderson
On 2007/06/04 13:19, Douglas Allan Tutty wrote: It may not be hard at all, but its a lot more work than answering exim's config questions. I think that's probably Debian's packaging, not Exim. Yes, I know, everything I need to get sendmail working is alread on my system in the form of

Re: alternatives to sendmail

2007-06-04 Thread Chris 'Xenon' Hanson
Douglas Allan Tutty wrote: Hello, However, sendmail is a very steep and tall learning curve. I'm coming from Debian (which no longer installes with 32 MB ram) so I'm used to exim. I know that exim is GPL. I'm wondering if there are other BSD-licensed MTAs. I'm sure to stir up a firestorm

spamd

2007-06-04 Thread Edgars Makņa
Hi! I have some problems with spamd. A lot of smtp servers stops at this point of cycle: Jun 4 20:40:17 firewall spamd[7659]: xxx.yyy.zzz.ccc: connected (118/3) Jun 4 20:44:14 firewall spamd[7659]: xxx.yyy.zzz.ccc: disconnected after 374 seconds. After some retries nothing changes, they

Re: find -exec {} help

2007-06-04 Thread Almir Karic
...-exec sh -c 'something with $1' {} \; is fully safe as well. sh -c 'echo foo$1bar' baz - foobar Seems not. a typo, sorry, it should be sh -c 'echo foo$1bar' -- baz i am cheating tho, and have sh symlinked to bash. -- almir

Re: alternatives to sendmail

2007-06-04 Thread Jean-Daniel Beaubien
You should start by reading this: http://openbsd.org/faq/faq15.html#PkgMgmt Just set your PKG_PATH variable and then it's a simple 'pkg_add' to install your favorite MTA: # export PKG_PATH=ftp://your.ftp.mirror/pub/OpenBSD/4.1/packages/`machine -a`/ # pkg_add -i exim OR # pkg_add -i postfix OR

Re: modulate state and bnx0 not working

2007-06-04 Thread Michael
Hi, Joel Sing schrieb: These appear to be the ASCII output from tcpdump, rather than pcap format files (try -w option to tcpdump). Thanks for telling me, accidently uploaded the wrong files. Replaced the archive and now the correct files are available.

Re: alternatives to sendmail

2007-06-04 Thread Diana Eichert
On Mon, 4 Jun 2007, Douglas Allan Tutty wrote: On Mon, Jun 04, 2007 at 08:02:08AM -0600, Diana Eichert wrote: You're almost there since you know you want to use a smarthost. For example copy /usr/share/sendmail/cf/openbsd-localhost.mc to another file

Re: alternatives to sendmail

2007-06-04 Thread Mark Zimmerman
On Mon, Jun 04, 2007 at 08:02:08AM -0600, Diana Eichert wrote: Hmmm, actually, I don't believe sendmail has a steep and tall learning curve. ;-) It's just that you don't grok it yet. You're almost there since you know you want to use a smarthost. For example copy

Re: alternatives to sendmail

2007-06-04 Thread Steve Williams
Mark Zimmerman wrote: On Mon, Jun 04, 2007 at 08:02:08AM -0600, Diana Eichert wrote: Hmmm, actually, I don't believe sendmail has a steep and tall learning curve. ;-) It's just that you don't grok it yet. You're almost there since you know you want to use a smarthost. For example

Re: alternatives to sendmail

2007-06-04 Thread Darren Spruell
On 6/4/07, Douglas Allan Tutty [EMAIL PROTECTED] wrote: On Mon, Jun 04, 2007 at 03:28:50PM +0200, Timo Schoeler wrote: Thus [EMAIL PROTECTED] (Peter N. M. Hansteen) spake on Mon, 04 Jun 2007 15:17:26 +0200: Douglas Allan Tutty [EMAIL PROTECTED] writes: However, sendmail is a very steep

Re: spamd

2007-06-04 Thread Bob Beck
Many things. according to the logs you have there it didn't even talk smtp to you, so it shouldn't pass. * Edgars Mak??a [EMAIL PROTECTED] [2007-06-04 12:07]: Hi! I have some problems with spamd. A lot of smtp servers stops at this point of cycle: Jun 4 20:40:17 firewall

Re: type 2 or 3 pcmcia wireless card

2007-06-04 Thread Lawrence Horvath
It does not have any built in USB ports, so unless i can find a typeII or III usb card i got no usb On 04/06/07, Reyk Floeter [EMAIL PROTECTED] wrote: On Sun, Jun 03, 2007 at 09:46:44PM -0700, Lawrence Horvath wrote: I am working with a ThinkPad 365X that i am installing obsd on and would

Re: alternatives to sendmail

2007-06-04 Thread Stuart Henderson
On 2007/06/04 13:15, Steve Williams wrote: Then in /etc/mail, I have the following file (rehash_and_restart): alternatively, there's /etc/mail/Makefile; no need to restart just for new .db

Re: type 2 or 3 pcmcia wireless card

2007-06-04 Thread Lawrence Horvath
I purchased the orinoco, well see how that goes, thanks for the comment On 04/06/07, Lawrence Horvath [EMAIL PROTECTED] wrote: It does not have any built in USB ports, so unless i can find a typeII or III usb card i got no usb On 04/06/07, Reyk Floeter [EMAIL PROTECTED] wrote: On Sun, Jun 03,

Re:

2007-06-04 Thread SAWN_2005
Dear Colleague, SAWN 2005 submission is now closed. For further details on the workshop program please see http://dna.engr.uconn.edu/SAWN2005/ SAWN 2005 Organizers

Re: spamd

2007-06-04 Thread Edgars Makņa
With one such non passable smtp server admin we tested it via phone. He said that promt is very slow (as it should be), then he got 451 Temp error. After 5, 15, 30 and 60 minutes he retried, nothing :( What is a most common options for spamd? Bob Beck wrote: Many things. according to

Re: find -exec {} help

2007-06-04 Thread Hannah Schroeter
Hi! On Mon, Jun 04, 2007 at 06:54:20PM +0200, Tom Van Looy wrote: I think this is also correct: find . -name '*.htm' -exec cp '{}' '{}'.new \; \ -exec sed -i s/old/new/ '{}'.new \; I don't see any -i option documented in the sed manpage. Kind regards, Hannah.

Re: find -exec {} help

2007-06-04 Thread Hannah Schroeter
Hi! On Mon, Jun 04, 2007 at 07:49:08PM +0200, Almir Karic wrote: ...-exec sh -c 'something with $1' {} \; is fully safe as well. sh -c 'echo foo$1bar' baz - foobar Seems not. a typo, sorry, it should be sh -c 'echo foo$1bar' -- baz This works indeed. But better use the additional quotes

RFC 3623 support in OSPFd

2007-06-04 Thread Pete Vickers
Hi, I'm trying to use OSPFd in a 'high availability' environment, where it's next-hop h/a pair (mis)use RFC3623 (Graceful OSPF Restart) to provide rapid failover between nodes. However it appears OSPFd doesn't support this ? Before I dig into this, can norby/claudio/henning cast any

Re: alternatives to sendmail

2007-06-04 Thread Diana Eichert
On Mon, 4 Jun 2007, Mark Zimmerman wrote: Thanks for the example, Diana. This, plus a little time figuring out how to get genericstable to work properly, have allowed me to get rid of postfix. postfix is fine, but maximizing use of the base install reduces the amount of wasted time with each

Re: alternatives to sendmail

2007-06-04 Thread Renaud Allard
Vijay Sankar wrote: There are different exim packages for OpenBSD. You could do a pkg_add -v ftp://ftp.ca.openbsd.org/pub/OpenBSD/4.1/packages/i386/exim-4.66.tgz (assuming you are using 4.1 on i386 etc.) or use other exim packages that support mysql, postgresql, ldap and so on.

Re: find -exec {} help

2007-06-04 Thread Marc Espie
On Mon, Jun 04, 2007 at 02:25:00PM +0200, Hannah Schroeter wrote: Hello! On Mon, Jun 04, 2007 at 02:01:12PM +0200, Marc Espie wrote: [...] Don't use for loops with find results, they do not scale well. Also, beware of spaces in file. For this kind of thing, I generally use 'while read'

Re: find -exec {} help

2007-06-04 Thread terry tyson
On 6/4/07, Hannah Schroeter [EMAIL PROTECTED] wrote: Hi! On Mon, Jun 04, 2007 at 06:54:20PM +0200, Tom Van Looy wrote: I think this is also correct: find . -name '*.htm' -exec cp '{}' '{}'.new \; \ -exec sed -i s/old/new/ '{}'.new \; I don't see any -i option documented in the sed

Re: RFC 3623 support in OSPFd

2007-06-04 Thread Claudio Jeker
On Mon, Jun 04, 2007 at 09:28:03PM +0200, Pete Vickers wrote: Hi, I'm trying to use OSPFd in a 'high availability' environment, where it's next-hop h/a pair (mis)use RFC3623 (Graceful OSPF Restart) to provide rapid failover between nodes. However it appears OSPFd doesn't support this

Re: find -exec {} help

2007-06-04 Thread Almir Karic
\ This works indeed. But better use the additional quotes around $1. Just get used to them, because $1 could contain IFS characters. true, but in this case it doesn't really matter how shell splits words :) i am cheating tho, and have sh symlinked to bash. Why? i learnt to use bash,

Re: support for Sun Fire

2007-06-04 Thread Sam Vaughan
On 03/06/2007, at 7:33 PM, Stuart Henderson wrote: On 2007/06/03 14:09, Sam Vaughan wrote: if anyone has a working PXE bios-flash setup for these and wouldn't mind sharing how, please drop me a line, when I try the system hangs after memdisk loads the bios-flash image. I'd be interested to

Re: find -exec {} help

2007-06-04 Thread Marc Espie
On Mon, Jun 04, 2007 at 11:45:27PM +0200, Almir Karic wrote: I don't see any -i option documented in the sed manpage. -i on some seds (gsed, ssed, FBSD sed, maybe others) means ''in place'' edit, that feature can be reimplemented with ''sed '' file new_file; mv -g new_file file'' (it

Re: find -exec {} help

2007-06-04 Thread Hannah Schroeter
Hello! On Mon, Jun 04, 2007 at 11:45:27PM +0200, Almir Karic wrote: \ This works indeed. But better use the additional quotes around $1. Just get used to them, because $1 could contain IFS characters. true, but in this case it doesn't really matter how shell splits words :) Proactive security

Re: find -exec {} help

2007-06-04 Thread Hannah Schroeter
Hello! On Mon, Jun 04, 2007 at 04:37:17PM -0500, terry tyson wrote: On 6/4/07, Hannah Schroeter [EMAIL PROTECTED] wrote: On Mon, Jun 04, 2007 at 06:54:20PM +0200, Tom Van Looy wrote: I think this is also correct: find . -name '*.htm' -exec cp '{}' '{}'.new \; \ -exec sed -i s/old/new/

Re: spamd

2007-06-04 Thread Rogier Krieger
On 6/4/07, Edgars Makra [EMAIL PROTECTED] wrote: With one such non passable smtp server admin we tested it via phone. He said that promt is very slow (as it should be), then he got 451 Temp error. After 5, 15, 30 and 60 minutes he retried, nothing :( If you tried connecting by manually

/usr/obj partition AWOL

2007-06-04 Thread Emilio Perea
I follow -current on an i386 at work and an amd64 at home, and rarely run into any problem which is not self-inflicted. So when I had a weird experience this weekend, I assumed it was my fault. What happened was that after the usual sequence of [build kernel; reboot; build userland; reboot] the

Re: Problem booting CD for serial console

2007-06-04 Thread RW
On Mon, 04 Jun 2007 08:55:09 -0500, Jacob Yocom-Piatt wrote: uh, pxeboot? you can put the CD contents on your pxeboot server and there's no need to hook up a CD drive. me thinks that's how you're supposed to do it for headless machines. have had the same bad magic errors in the past when using

Re: Problem booting CD for serial console

2007-06-04 Thread Jacob Yocom-Piatt
RW wrote: On Mon, 04 Jun 2007 08:55:09 -0500, Jacob Yocom-Piatt wrote: uh, pxeboot? you can put the CD contents on your pxeboot server and there's no need to hook up a CD drive. me thinks that's how you're supposed to do it for headless machines. have had the same bad magic errors in the

New to OpenBSD - SSHD required?

2007-06-04 Thread Kim and Loretta
When installing OpenBSD and using anoncvs for updating, it is necessary to have SSHD enabled? I do not need to access this box remotely. and don't want any unnecessary services running. Thanks.

Re: Matrox G200 Quad supported?

2007-06-04 Thread Steve Shockley
Timo Schoeler wrote: although I had a bunch of dual-head (or more) setups in my life, it was all in the sgi, Sun or Apple universe. I never did this on OpenBSD; however, as everything I touched during the years on OpenBSD machines ran out of the box :) I wonder whether a dual (or triple screen)

Thecus N2100 question

2007-06-04 Thread Diana Eichert
I'm interested in using the Thecus N2100 instead of the Plextor systems because of some sh platform limitations. I'm looking for feedback from people who use the N2100. Specifially, I want to verify you can edit the boot script to allow automated OpenBSD boot. Also, what kind of throughput

Re: New to OpenBSD - SSHD required?

2007-06-04 Thread Darrin Chandler
On Mon, Jun 04, 2007 at 05:44:17PM -0800, Kim and Loretta wrote: When installing OpenBSD and using anoncvs for updating, it is necessary to have SSHD enabled? I do not need to access this box remotely. and don't want any unnecessary services running. Thanks. No, it's not required unless you

Re: Thecus N2100 question

2007-06-04 Thread Bryan Vyhmeister
On Jun 4, 2007, at 5:42 PM, Diana Eichert wrote: I'm interested in using the Thecus N2100 instead of the Plextor systems because of some sh platform limitations. I'm looking for feedback from people who use the N2100. Specifially, I want to verify you can edit the boot script to allow

Re: /usr/obj partition AWOL

2007-06-04 Thread Markus Lude
On Mon, Jun 04, 2007 at 06:02:59PM -0500, Emilio Perea wrote: I follow -current on an i386 at work and an amd64 at home, and rarely run into any problem which is not self-inflicted. So when I had a weird experience this weekend, I assumed it was my fault. What happened was that after the

Re: spamd

2007-06-04 Thread Edgars Makņa
IP is static and entered commands/text is the same too. No mistakes, i was carefully checking all commands and entered text. And as i found most problematic smtp is windows based MailEnable. What else i should check? Rogier Krieger wrote: On 6/4/07, Edgars Makra [EMAIL PROTECTED] wrote: With