How to send mail on IIS on a Windows server

2006-06-14 Thread Angus Comber
Hello I havew been using the MAIL command on Linux but I need to get a Perl script working on a Windows XP machine running Internet Information Server. How do I send an email on this beast? Angus

Multiple .cgi scripts vs. one large script

2006-06-14 Thread Hardly Armchair
Hello All, I was wondering if it is more efficient (in terms of speed and processor load) to have two different scripts of approximately the same size called to handle two different functions, or to have one large script handle all cgi functions using subroutines. Or perhaps these situations

RE: How to send mail on IIS on a Windows server

2006-06-14 Thread Moore, George T.
Are you just printing lines and directing the output to the Linux Mail, or are you using the Perl Mail package on Linux? Mail::Sendmail should work platform independent. If that is what you are using, perhaps you might want to show a line of code that you are using that needs to be modified for

RE: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Moore, George T.
It depends on how you are using your scripts. The most expensive aspect of the files is the IO used to read them from the hard drive they reside on. If you are calling on the scripts multiple times and they have to be read each time, rather than being cached in memory, then you only want to read

Re: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Sean Davis
Moore, George T. wrote: It depends on how you are using your scripts. The most expensive aspect of the files is the IO used to read them from the hard drive they reside on. If you are calling on the scripts multiple times and they have to be read each time, rather than being cached in memory,

Re: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Mr. Shawn H. Corey
On Wed, 2006-14-06 at 16:40 -0700, Hardly Armchair wrote: Hello All, I was wondering if it is more efficient (in terms of speed and processor load) to have two different scripts of approximately the same size called to handle two different functions, or to have one large script handle

Re: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Adam Waite
Moore, George T. wrote: It depends on how you are using your scripts. The most expensive aspect of the files is the IO used to read them from the hard drive they reside on. If you are calling on the scripts multiple times and they have to be read each time, rather than being cached in memory,