Re: sendmail questions

1999-08-16 Thread Geoffrey S. Mendelson
[EMAIL PROTECTED] wrote: with sendmail: 1. can i make an alias to all users without explicitly writing usernames ? 2. can sendmail take usernames not from /etc/passwd (maytbe /etc/mailusers ??? ) 3. can i make a mail alias which takes a list and removes some ( e.g. all:

OT: Irix security

1999-08-16 Thread Aviram Jenik
Hi. This is off-topic, but I really need some help. If there's someone with access to an IRIX v.4 System, can you verify an apparantly large security hole in the lister cgi script? A vulnerable system will print the /etc/passwd when the following URL is accessed:

Re: sendmail questions

1999-08-16 Thread Gaal Yahas
On Mon, Aug 16, 1999 at 11:47:38AM +0300, Geoffrey S. Mendelson wrote: Any easy way to create the file would be cat /etc/passwd | awk -F: '($2 100) {print $1}' /etc/allusers This will ignore root, bin, etc. Join the Useless Use of cat Crazies! Rewrite that as awk -F:

VoodooIII support

1999-08-16 Thread Gaal Yahas
Hi, I'm buying a new computer. Can anybody recommend/warn against a voodoo3 card? The HOWTO's are outdated, the 3dfx site says the drivers are alpha quality, and the newsgroups show conflicting opinions (as usual :) . So: - is it a good idea to get a voodoo3 at all? - which card would you

Re: sendmail questions

1999-08-16 Thread Gavrie Philipson
Gaal Yahas wrote: Err. Waitaminute!!! I'm supposed be advocating Perl: perl -lne '/^(.*?):.*?:(\d+)/$2100print$1' /etc/passwd /etc/allusers Darn. Longer :-| Well, as Larry Wall put it, "AWK has to be better for something :-)" Or you could use: perl -lanF:

VCD and linux

1999-08-16 Thread erez
HI I just took a VCD (video-cd, mpeg-1) from the movie lib. putting it on windows98, I could access (read) the cd. mounting it under linux (iso9660 ?) gave me the directory tree, but when i tryed reading a file, I got atapi errors. (both 98 and linux on same computer). any idea ? regards erez

Re: VoodooIII support

1999-08-16 Thread Geoffrey S. Mendelson
Gaal Yahas wrote: Hi, I'm buying a new computer. Can anybody recommend/warn against a voodoo3 card? The HOWTO's are outdated, the 3dfx site says the drivers are alpha quality, and the newsgroups show conflicting opinions (as usual :) . So: - is it a good idea to get a voodoo3 at all? -

Re: sendmail questions

1999-08-16 Thread Gaal Yahas
On Mon, Aug 16, 1999 at 03:53:47PM +0300, Gavrie Philipson wrote: Well, as Larry Wall put it, "AWK has to be better for something :-)" Or you could use: perl -lanF: -e'$F[2]100print$F[0]' /etc/passwd /etc/allusers Which is almost the same size ;-) Indeed. Thanks! -- believing is

Re: sendmail questions

1999-08-16 Thread Geoffrey S. Mendelson
I wrote: cat /etc/passwd | awk -F: '($2 100) {print $1}' /etc/allusers Gaal Yahas wrote: Join the Useless Use of cat Crazies! Rewrite that as awk -F: '($3 100) {print $1}' /etc/passwd /etc/allusers ^^^ I would NEVER

Re: sendmail questions

1999-08-16 Thread Stanislav Malyshev a.k.a Frodo
On Mon, 16 Aug 1999, 18:04 Geoffrey S. Mendelson wrote: GSM I would NEVER suggest that to anyone. If they were to hit the GSM wrong key, as in " /etc/passwd", they would really be in deep GSM do-do. Don't ever work as root unless you must to. Exactly that's why. -- [EMAIL PROTECTED] \/

You got to see this

1999-08-16 Thread Hetz Ben Hamo
And this is in the airport.. More details - on slashdot.org Hetz http://www.uk.linux.org/FEATURE/Canada/A/54.jpg

Re: You got to see this

1999-08-16 Thread Yoni Elhanani
Hetz Ben Hamo wrote: And this is in the airport.. It's a good thing it wasn't on a plane ;-) -- The day Microsoft makes something that doesn't suck, is probably the day they start making vacuum cleaner software... (I was pointed out that Microsoft hardware usualy works)

Re: You got to see this

1999-08-16 Thread Or Sagi
(Vadik, I don't know if you follow linux-il -- if you do, apologies for the double post.) Vadik - Any ideas why that was allowed to pass through the filter ? afair, no posts over 64kb, or something like that. Hetz Beh Hamo, Hmm, I'm losing respect to people by the minute. I'm amazed at how many

appologize

1999-08-16 Thread Hetz Ben Hamo
Hi, Sorry about the post. I thought Netscape sends the URL only. Guess I didn't look well.. Hetz -- Hetz Ben Hamo - Sys. Admin. - Intercomp [EMAIL PROTECTED] --- Redmond, you have a problem..

Re: sendmail questions

1999-08-16 Thread Vadim Vygonets
Quoth Geoffrey S. Mendelson on Mon, Aug 16, 1999: [EMAIL PROTECTED] wrote: 3. can i make a mail alias which takes a list and removes some ( e.g. all: avi,dani,yossi,efraim all-: all execpt avi To exclude a user, use 'grep -v'. ) Any easy way