Re: Design of spamd

2011-12-01 Thread Boudewijn Dijkstra
Op Wed, 30 Nov 2011 20:02:38 +0100 schreef Han Boetes h...@mijncomputer.nl: Boudewijn Dijkstra wrote: Op Tue, 29 Nov 2011 21:54:37 +0100 schreef Han Boetes h...@mijncomputer.nl : At the moment all spamd greylisting cares about is, does it retry connecting? Unfortunately a lot of spammers do

Re: relayd should verify config before (re)loading

2011-12-01 Thread Pierre-Yves Ritschard
do not use printf, use the log functions this code path might (and will) happen in places where there's no stdout. case LOAD: imsg_compose(ibuf, IMSG_CTL_RELOAD, 0, 0, -1, res-path, strlen(res-path)); + printf(load request sent.\n);

Energía Solar: Iluminación Solar, Termotanque Solar, Bombeo de Agua Solar

2011-12-01 Thread Energía Solar Inteligente
Generador elictrico solar: La mejor solucisn allm donde no llega la red elictrica. Viviendas Rurales, Barcos, Sistemas de Bombeo de Agua, Monitoreo, Seguridad, Puestos de Seguridad, Instalaciones Midicas, Casas Rodantes y cualquier dispositivo que requiera alimentacisn con baterma de 12 Vcc Los

PATCH: failed spl lock release in pgt

2011-12-01 Thread Jan Klemkow
Hello, i have found some incorrect error handling in the pgt driver. Here is a diff which should patch this. bye, Jan Klemkow Index: pgt.c === RCS file: /mount/cvsdev/cvs/openbsd/src/sys/dev/ic/pgt.c,v retrieving revision 1.67

Make Apple products somewhat usable

2011-12-01 Thread David Hill
For those who have an iProduct from Apple, you know it spams the dmesg with uhids when plugged in. It also attacheds itself as a uaudio device as well. This diff disables all that and allows the device as ugen, so we can at least use gphoto2 to grab photos off it. I have added iPod Touch 2G and

Re: relayd should verify config before (re)loading

2011-12-01 Thread Seth Wright
Hm, okay. I took the printf() lines almost verbatim from bgpctl.c, which seems to use printf() throughout, as does relayctl.c. So, I just sort of followed the convention that was already there. Should they be using the log functions instead? I can fix my diff (and the other printf()'s in

Re: Make Apple products somewhat usable

2011-12-01 Thread Brynet
On Thu, Dec 01, 2011 at 11:32:14AM -0500, David Hill wrote: For those who have an iProduct from Apple, you know it spams the dmesg with uhids when plugged in. It also attacheds itself as a uaudio device as well. This diff disables all that and allows the device as ugen, so we can at least

Re: relayd should verify config before (re)loading

2011-12-01 Thread Henning Brauer
* Seth Wright s...@crosse.org [2011-12-01 19:20]: Hm, okay. I took the printf() lines almost verbatim from bgpctl.c, which seems to use printf() throughout, as does relayctl.c. *ctl versus *d. *ctl - console *d - daemonizes that said, the log framwork in these daemons and their ctl

Guardian se suma a la causa / RockandVida - 3 de diciembre - 19 hs

2011-12-01 Thread Noticias Feedback
Mail para ser visto con conexion, si no puede verlo, cl ick Aqui [IMAGE] FeedBack [IMAGE] FeedBack Feedback, comunicacion en serio [IMAGE] [IMAGE] bl Agencia de Prensa y Noticias, servicio de Mailing y Publicidad email: veron...@agenciafeedback.com.ar | website: www.agenciafeedback.com.ar

Agevolazioni per i nuovi Imprenditori.

2011-12-01 Thread Informa Aziende
Agevolazioni per i nuovi Imprenditori. Tassazione al 5% per giovani imprenditori e finanziamento per l'apertura di una nuova azienda Dal 10 gennaio per i giovani che non hanno superato i 35 anni di et` e iniziano una nuova attivit`, h prevista una tassazione agevolata al 5%. Puoi accedere

AMENITIES, PRODUCTOS PARA SPA, BLANCO

2011-12-01 Thread AMENITIES-BLANCO Y SPA
Mas de 70 Empresas confman en los Productos Ananda Lar. Confme Usted tambiin, solicite nuestra lista de precios. Tenemos los mejores productos y el mejor personal para satisfacer sus necesidades. AMENITIES shampoo* acondicionador * gel de ducha * crema corporal * jabones de pasta y de

Re: relayd should verify config before (re)loading

2011-12-01 Thread Seth Wright
My diff only uses printf() in relayctl.c, not in relayd.c, which from your explanation seems to be correct. However, if you think it's worth it I could fix relayctl.c to use the log_* functions instead. Thanks for the input, -- Seth On Thu, Dec 1, 2011 at 2:40 PM, Henning Brauer

Re: Make Apple products somewhat usable

2011-12-01 Thread Stuart Henderson
On 2011/12/01 11:32, David Hill wrote: For those who have an iProduct from Apple, you know it spams the dmesg with uhids when plugged in. It also attacheds itself as a uaudio device as well. + { { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_IPHONE_4G }, + UAUDIO_FLAG_BAD_AUDIO }, +

Re: ifconfig ieee80211 scan error to stderr

2011-12-01 Thread Christiano F. Haesbaert
Hi, I think we should warn() on any error, not just EPERM. This is more consistent with the rest of the code. ok ? Index: ifconfig.c === RCS file: /cvs/src/sbin/ifconfig/ifconfig.c,v retrieving revision 1.252 diff -d -u -p -b

Fix crash in pop-tag-mark of mg

2011-12-01 Thread Sunil Nimmagadda
pop-tag-mark crashes when the buffer's directory is different from mg's cwd. Steps to reproduce... generate some tags : # cd /usr/src/usr.bin/mg cvs up make make install # cd /usr/src/sys make tags use them : # mg /usr/src/sys/dev/softraid_crypto.c (for example) then M-x visit-tag-table give

Re: ifconfig ieee80211 scan error to stderr

2011-12-01 Thread Philip Guenther
On Thu, Dec 1, 2011 at 6:45 PM, Christiano F. Haesbaert haesba...@openbsd.org wrote: Hi, I think we should warn() on any error, not just EPERM. This is more consistent with the rest of the code. ok ? I disagree with this. The existing message is much clearer to the non-root mortal user that

Re: ifconfig ieee80211 scan error to stderr

2011-12-01 Thread Geoff Steckel
On 12/02/2011 12:35 AM, Philip Guenther wrote: On Thu, Dec 1, 2011 at 6:45 PM, Christiano F. Haesbaert haesba...@openbsd.org wrote: Hi, I think we should warn() on any error, not just EPERM. This is more consistent with the rest of the code. ok ? I disagree with this. The existing message