Re: Mailing list users (fwd)

2002-08-04 Thread Shachar Shemesh
Why aren't bouncing users automatically removed? If the users don't work for the company any more, their email addresses should bounce. If it does, the mailing list software should have some handling of that (ezmlm sends another probe after a week, and if that bounces, removes from the list).

Re: Key signing party results

2002-08-04 Thread Shachar Shemesh
Not only did I have a suggestion, you were there when I offered to give a lecture to the BIU club. I was not contacted by anyone about this, however, so I did nothing myself. Regarding not bringing fingerprints along - I negelected to bring them to such a place as the BlackHat Briefings

Re: The Shindig (english translation)

2002-08-04 Thread Nadav Har'El
On Fri, Aug 02, 2002, Nadav Har'El wrote about Re: The Shindig (english translation): ... a good introduction. An even better (but slightly longer) introduction, by the way, would be O'Reilly's Open Sources book, which is really a collection of short essays of the same people in the movie (and

Fwd: Re: lecture slides

2002-08-04 Thread Muli Ben-Yehuda
http://www.iglu.org.il/august/tcp_spoofing.ppt If anyone wishes to download and export it to a more linuxish format, please send it to me and I'll upload it as well. - Forwarded message from Aviram Jenik [EMAIL PROTECTED] - Date: Sun, 4 Aug 2002 12:24:30 +0300 From: Aviram Jenik

RE: Key signing party results

2002-08-04 Thread Dvir Volk
Those of you who did not participate, fret not - we'll have another key signing party in the next IGLU event. Which will be.? Fscked if I know. I know that at least gby and I are thinking about it. If you (or anyone else) have a suggestion, fire away... first of all, kudos on

Re: Fwd: Re: lecture slides

2002-08-04 Thread Muli Ben-Yehuda
On Sun, Aug 04, 2002 at 03:35:13PM +0300, Christoph Bugel wrote: On 2002-08-04, Muli Ben-Yehuda wrote: http://www.iglu.org.il/august/tcp_spoofing.ppt If anyone wishes to download and export it to a more linuxish format, please send it to me and I'll upload it as well. I exported to

Re: Key signing party results

2002-08-04 Thread Muli Ben-Yehuda
On Sun, Aug 04, 2002 at 04:15:17PM +0200, Dvir Volk wrote: Those of you who did not participate, fret not - we'll have another key signing party in the next IGLU event. Which will be.? Fscked if I know. I know that at least gby and I are thinking about it. If you (or

RE: Key signing party results

2002-08-04 Thread Dvir Volk
well, i'm willing to help if others want to organize it too. plus - if it becomes serious - i might (just might) also be able to get some sponsorship to such an event from Nana (ethics schmethics :) ). Dvir Volk Editor in Chief Nana by NetVision

timezone

2002-08-04 Thread Erez Doron
hi i am writing a small app in C and i need to get the timezone ( e.g. -2:00 for israel ) how do i do that ? the timezone variable from time.h returns 0 erez. = To unsubscribe, send mail to [EMAIL PROTECTED] with the word

Re: timezone

2002-08-04 Thread Alex Shnitman
On Sun, 2002-08-04 at 18:54, Erez Doron wrote: i am writing a small app in C and i need to get the timezone ( e.g. -2:00 for israel ) how do i do that ? the timezone variable from time.h returns 0 Call tzset() before accessing this variable. -- Alex Shnitman [EMAIL PROTECTED]

Re: ANN: licq 1.2.0a is available

2002-08-04 Thread Diego Iastrubni
note that the binaries are for qt2, the spec in side somehow does not compile the package for qt3. I managed to compile qt3 rpms on a mdk8.1 kde3.01 by modifying the spec file a little bit. If someone wants I can upload them somewhere. - diego áéåí øàùåï, 28 áéåìé 2002, 21:00, Hetz Ben Hamo

Re: timezone

2002-08-04 Thread Nadav Har'El
On Sun, Aug 04, 2002, Erez Doron wrote about timezone: hi i am writing a small app in C and i need to get the timezone ( e.g. -2:00 for israel ) how do i do that ? the timezone variable from time.h returns 0 Try running ctime(time(0)) (for example) before you read the tzname variable.

Re: timezone

2002-08-04 Thread Ehud Karni
On 04 Aug 2002 18:54:44 +0300, Erez Doron [EMAIL PROTECTED] wrote: i am writing a small app in C and i need to get the timezone ( e.g. -2:00 for israel ) how do i do that ? the timezone variable from time.h returns 0 Bellow is my function for getting the offset (It should work on any

Re: timezone

2002-08-04 Thread Erez Doron
hi thanks for the code. is it GPL'D ? (may i use it). anyway, python's time.timezone returns -7200 while this code returns +10800 ( -2 hours relative to +3 hours ) why is that ? erez. On Sun, 2002-08-04 at 19:20, Ehud Karni wrote: On 04 Aug 2002 18:54:44 +0300, Erez Doron [EMAIL PROTECTED]

Re: timezone

2002-08-04 Thread Ehud Karni
On 04 Aug 2002 19:36:12 +0300, Erez Doron [EMAIL PROTECTED] wrote: thanks for the code. is it GPL'D ? (may i use it). anyway, python's time.timezone returns -7200 while this code returns +10800 ( -2 hours relative to +3 hours ) why is that ? That's because my code take the DST (daylight

Re: timezone

2002-08-04 Thread Ehud Karni
On 04 Aug 2002 19:36:12 +0300, Erez Doron [EMAIL PROTECTED] wrote: thanks for the code. is it GPL'D ? (may i use it). Yes, you may. It's not GPLed because it too small to have a copyright, Ehud. -- Ehud Karni Tel: +972-3-7966-561 /\ Mivtach - Simon Fax: +972-3-7966-667

Re: timezone

2002-08-04 Thread Nadav Har'El
On Sun, Aug 04, 2002, Ehud Karni wrote about Re: timezone: On 04 Aug 2002 19:36:12 +0300, Erez Doron [EMAIL PROTECTED] wrote: thanks for the code. is it GPL'D ? (may i use it). anyway, python's time.timezone returns -7200 while this code returns +10800 ( -2 hours relative to +3 hours )