Re: perl ping?

2002-03-20 Thread Carl Jolley
On Tue, 19 Mar 2002, Tim Rhodes wrote: it won't let me use that. my script needs root access. any other solutions? Get fancy. Write your own 'ping' program using Sockets. [EMAIL PROTECTED] Carl Jolley All opinions are my own and not necessarily those of my employer

Re: perl ping?

2002-03-20 Thread Carl Jolley
On Tue, 19 Mar 2002, Carter A. Thompson wrote: - Original Message - From: Tim Rhodes [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 2:49 PM Subject: perl ping? it won't let me use that. my script needs root access. any other solutions? I suppose you

Re: How to add/remove addresses from an Exchange 5.5 Distribution List?

2002-03-20 Thread Jonathan C. Detert
* Jonathan C. Detert [EMAIL PROTECTED] [020306 08:18]: I want to be able to programmatically add or remove an Exchange 5.5 mailbox to a Exchange distribution list. I know that the exchange admin.exe import feature can be used to add a mailbox to a distribution list, but it's not able to

how to get Ms.Exchange home-server from username ?

2002-03-20 Thread Jonathan C. Detert
This is more of a Ms. ADSI question, but I am looking to do it in perl, so ... Does anyone know how to do this: given the username of a mailbox in Ms. Exchange 5.5, determine which Ms.Exchange server is the so-called 'Home-Server' for that mailbox? I found a VB example

Re: multiline parse

2002-03-20 Thread c. church
- Original Message - From: Peter Eisengrein [EMAIL PROTECTED] To: 'Carl Jolley' [EMAIL PROTECTED] Cc: Perl-Win32-Users Mailing List (E-mail) [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 4:37 PM Subject: RE: multiline parse I shouldn't have been so vague, I suppose, but I think you

Re: Sendmail Web-Based Console.

2002-03-20 Thread Brian Gibson
Look at webmin at www.webmin.com Tim Rhodes wrote: Hello Everyone, I am looking for a Sendmail Web-Based Console and was wondering if someone could pass some suggestions my way. I looked at Sendmail Switch, but it is just to expensive. Even a perl solution I could program for

Re: Sendmail Web-Based Console.

2002-03-20 Thread Mike Brentlinger
i too would reccomend webmin. for send mail and lots of other things as well. its no complete substitue for but it allows you to do most everything. Original Message Follows From: Brian Gibson [EMAIL PROTECTED] To: Tim Rhodes [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: Re:

Re: perl ping?

2002-03-20 Thread lgbarr
Humm I got this from the Net:Ping mod. Hope it may help. use Net::Ping; $p = Net::Ping-new(); print $host is alive.\n if $p-ping($host); $p-close(); $p = Net::Ping-new(icmp); foreach $host (@host_array) { print $host is ; print NOT