Re: sendmail in perl

2011-05-12 Thread Dr.Ruud
On 2011-05-12 08:20, Irfan Sayed wrote: i need to use sendmail module of perl to send mails. i have seen much perl modules to send mails but i dont know which one is suitable for my requirement my requirement is : i need such module which will allow me to generate/create table structure form

Re: sendmail in perl

2011-05-12 Thread Natal Ngétal
2011/5/12 Leo Susanto : > I prefer using Net::SMTP with Authen::SASL for authentication. I agree Net::SMTP is good. -- \0/ Hobbestigrou site web: erakis.im -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: sendmail in perl

2011-05-12 Thread Leo Susanto
I prefer using Net::SMTP with Authen::SASL for authentication. Plus, read this: http://en.wikipedia.org/wiki/HTML_email On Wed, May 11, 2011 at 11:20 PM, Irfan Sayed wrote: > hi all, > > i need to use sendmail module of perl to send mails. i have seen much perl > modules to send mails > but i d

Re: sendmail in perl

2011-05-12 Thread Pete Smith
I imagine there are going to be many recommendations - and there are always new, "better" modules coming out for this sort of thing. However, I'll kick things off to say I've used MIME::Lite [1] for a long time and it has always done everything I've needed. Cheers, Pete [1] http://search.cpan

RE: sendmail arguments

2010-04-29 Thread John Bruin
. John > -Original Message- > From: Uri Guttman [mailto:u...@stemsystems.com] > Sent: Thursday, 29 April 2010 4:11 p.m. > To: John Bruin > Cc: beginners@perl.org > Subject: Re: sendmail arguments > > >>>>> "JB" == John Bruin writes: > &g

Re: sendmail arguments

2010-04-29 Thread Uri Guttman
> "JB" == John Bruin writes: JB> I have inherited a Perl script which sends and parses email. I am JB> having trouble trying to figure out what the "-oi" and "-oem" JB> arguments do in the sub below. Can anyone help? JB> sub mail(*) { JB> my $top = shift; JB> open(MAIL, "| $s

Re: sendmail arguments

2010-04-28 Thread Jim Gibson
At 3:10 PM +1200 4/29/10, John Bruin wrote: I have inherited a Perl script which sends and parses email. I am having trouble trying to figure out what the "-oi" and "-oem" arguments do in the sub below. Can anyone help? Thanks John sub mail(*) { my $top = shift; open(MAIL, "| $s

Re: sendmail arguments

2010-04-28 Thread John W. Krahn
John Bruin wrote: I have inherited a Perl script which sends and parses email. I am having trouble trying to figure out what the "-oi" and "-oem" arguments do in the sub below. Can anyone help? They are arguments for the program in $sendmail. First you have to find out what $sendmail contains

RE: sendmail module

2008-10-16 Thread Jeff Pang
> Message du 16/10/08 14:12 > De : [EMAIL PROTECTED] > A : [EMAIL PROTECTED], beginners@perl.org > Copie à : > Objet : RE: sendmail module > > > > Hi All/Jeff, > > Somehow I am not able to install/configure Sendmail module. Can somebody > have another option/s

RE: sendmail module

2008-10-16 Thread Irfan.Sayed
, 2008 2:59 PM To: beginners@perl.org; Sayed, Irfan (Cognizant) Subject: Re: sendmail module Jeff. --- On Thu, 10/16/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> > Subject: sendmail module > To: beginners@perl.org > Da

Re: sendmail module

2008-10-16 Thread Jeff Pang
Jeff. --- On Thu, 10/16/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> > Subject: sendmail module > To: beginners@perl.org > Date: Thursday, October 16, 2008, 5:25 AM > Hi All, > > > > I am using Perl 5.6.1 and want to sue sendmail module. I >

Re: sendmail

2007-02-21 Thread JupiterHost.Net
Jeff Pang wrote: I need to send mail to all users defined in one array. I tried foreach loop but what is happening is it is sending mail to only first user in the array. not sending mails to rest of the users. Is there any way to send a mail to all users in array in one shot. I am using send

Re: sendmail

2007-02-20 Thread Jeff Pang
> >I need to send mail to all users defined in one array. I tried foreach >loop but what is happening is it is sending mail to only first user in >the array. not sending mails to rest of the users. > >Is there any way to send a mail to all users in array in one shot. I am >using sendmail 2.09 m

RE: sendmail

2007-02-20 Thread Nagasamudram, Prasanna Kumar
-Original Message- From: Sayed, Irfan (Irfan) [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 20, 2007 4:07 PM To: beginners@perl.org Subject: sendmail Hi All, I need to send mail to all users defined in one array. I tried foreach loop but what is happening is it is sending mail to

Re: Sendmail mail from script

2006-06-05 Thread JupiterHost.Net
Мандип Сингх Бхабха wrote: How to use this module if there is russian language in subject field ? Body of message, can be send using html. use the # _text_info # _html_info keys for the message, use the Mail::Sender object's encoding methods for the subject, etc -- To unsubscribe, e-mail:

RE: Sendmail mail from script

2006-06-04 Thread Мандип Сингх Бхабха
TED] Sent: Friday, June 02, 2006 9:53 PM To: beginners@perl.org Subject: Re: Sendmail mail from script Мандип Сингх Бхабха wrote: > There are multiple ways to send mail from perl script. I think this > code will help. Your life will be much much much simpler if you use Mail::Se

Re: Sendmail mail from script

2006-06-02 Thread JupiterHost.Net
Мандип Сингх Бхабха wrote: There are multiple ways to send mail from perl script. I think this code will help. Your life will be much much much simpler if you use Mail::Sender::Easy http://search.cpan.org/perldoc?Mail::Sender::Easy You can do or die it and do very complec things, and very

Re: Sendmail mail from script (Closed)

2006-06-02 Thread joseph
Hi Mandeep, Thanks a lot, your first option works i've just add another switch -v to mail for it looks for recepient address without it. Anyway, i will look at the second option too next. with thanks, /joseph ""íÁÎÄÉÐ óÉÎÇÈ âÈÁÂÈÁ"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTE

RE: Sendmail mail from script

2006-06-01 Thread Мандип Сингх Бхабха
There are multiple ways to send mail from perl script. I think this code will help. open(ML,"|mail -s \"Subject of mesaages should be here\" [EMAIL PROTECTED]") or die " Can't open mail handle: $!"; print ML $_ ; close(ML);

Re: sendmail, etc.

2005-09-09 Thread Bob Showalter
Matthew Sacks wrote: Greetings, I want to send mail from my perl code. (Boy, that's really unusual) I am thinking using mail::mailer. I need a bit more info than what I have so far found in the online documentation (perldoc -q mail). Where I can I find some advice? E.G., there is always an

Re: sendmail, etc.

2005-09-09 Thread Wiggins d'Anconia
zentara wrote: > On Thu, 8 Sep 2005 19:31:11 -0700 (PDT), [EMAIL PROTECTED] > (Matthew Sacks) wrote: > > >>Greetings, >>I want to send mail from my perl code. (Boy, that's >>really unusual) >> >>I am thinking using mail::mailer. >>I need a bit more info than what I have so far found >>in the

Re: sendmail, etc.

2005-09-09 Thread Ranish
On Friday 09 September 2005 08:01, Matthew Sacks wrote: > Greetings, > I want to send mail from my perl code. (Boy, that's > really unusual) > > I am thinking using mail::mailer. > I need a bit more info than what I have so far found > in the online documentation (perldoc -q mail). > > Where I

Re: sendmail, etc.

2005-09-08 Thread Chris Devers
On Thu, 8 Sep 2005, Matthew Sacks wrote: > Where I can I find some advice? This list isn't a bad place to start. > E.G., there is always an example of code that defines > a $to argument. but can $to be a list of addresses? > (a group, that is). Can $to be a list of 100 email > addresses? In g

RE: sendmail

2004-06-04 Thread cslyon
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, June 04, 2004 6:39 AM > To: [EMAIL PROTECTED] > Subject: sendmail > > ok here it what I did and it is emailing sporadically or not at all??? > Also it is not placing the array data into the email body?

RE: sendmail

2004-06-04 Thread Charles K. Clarkson
From: [EMAIL PROTECTED] wrote: : ok here it what I did and it is emailing sporadically or not : at all??? : Also it is not placing the array data into the email body??? : it is like the if clause it not working. : : thank you! Isolate just the sendmail parts. And

RE: Sendmail::Milter

2004-04-19 Thread Thomas Bätzler
Dirk Tamme <[EMAIL PROTECTED]> asked: > I get the error message: > /usr/bin/perl: relocation error: > /usr/lib/perl5/site_perl/5.8.0/i586-linux-thread-multi/auto/Sendmail/Milter/ Milter.so: > undefined symbol: smfi_setconn > > It seems that there is missing something. OTTOH, I'd say your sendma

Re: Sendmail::Milter

2004-04-19 Thread Dirk Tamme
Thomas Bätzler wrote: Dirk Tamme <[EMAIL PROTECTED]> asked: I get the error message: /usr/bin/perl: relocation error: /usr/lib/perl5/site_perl/5.8.0/i586-linux-thread-multi/auto/Sendmail/Milter/ Milter.so: undefined symbol: smfi_setconn It seems that there is missing something.

Re: sendmail +perl

2004-04-16 Thread JupiterHost.Net
deny wrote: good afternoon i use sendmail to send mail with a script perl i receive this mail in /var/spool/clientmqueue but not in my mailbox mozilla here is the line in the script perl open(MAIL, "|/usr/sbin/sendmail [EMAIL PROTECTED]"); piping to a program is very unreliable. for instance -

Re: sendmail +perl

2004-04-16 Thread deny
good afternoon i use sendmail to send mail with a script perl i receive this mail in /var/spool/clientmqueue but not in my mailbox mozilla here is the line in the script perl open(MAIL, "|/usr/sbin/sendmail [EMAIL PROTECTED]"); sendmail is launched [EMAIL PROTECTED] clientmqueue]# ps -aux | grep s

Re: sendmail error: No reciient address found in header

2003-12-09 Thread Wiggins d Anconia
Please bottom post > I got it. I never thought indentation could cause sendmail to mess up. > As a beginner, I need you try > everything possible to know their pros and cons. Next time - I may > consider using a CPAN module. > :-) > > Thanks I would disagree here, as a beginner you shoul

Re: sendmail error: No reciient address found in header

2003-12-09 Thread B. Fongo
I got it. I never thought indentation could cause sendmail to mess up. As a beginner, I need you try everything possible to know their pros and cons. Next time - I may consider using a CPAN module. :-) Thanks Wiggins d'Anconia wrote: B. Fongo wrote: It's my first time to use sendmail. I want

Re: sendmail and attachment

2003-11-28 Thread R. Joseph Newton
[EMAIL PROTECTED] wrote: > I have sendmail working ok with perl by calling sendmail (qmail-inject). > However, now I need to send an attachment with it. Can someone tell me how > this can be done? > > fw Is that the Mail::Sendmail module, or shelling out to an external sendmail utility? If its t

Re: sendmail and attachment

2003-11-26 Thread drieux
On Wednesday, Nov 26, 2003, at 15:52 US/Pacific, [EMAIL PROTECTED] wrote: I have sendmail working ok with perl by calling sendmail (qmail-inject). However, now I need to send an attachment with it. Can someone tell me how this can be done? The CPAN is your friend, you might want to look at say:

RE: sendmail syntax error

2003-06-02 Thread Geer, David van der
> [EMAIL PROTECTED] ./summer.pl > Bareword found where operator expected at ./summer.pl line 78, near "print > SENDMAIL "TO" > (Might be a runaway multi-line "" string starting on line 77) >(Do you need to predeclare print?) > syntax error at ./summer.pl line 78, near "print SENDMAIL "TO"

Re: sendmail not working

2003-04-05 Thread R. Joseph Newton
mel awaisi wrote: > Hello, > > i have the script below retest.pl, and whe i try to run it i get nothing. > > [EMAIL PROTECTED] cgi-bin]# perl retest.pl > [EMAIL PROTECTED] cgi-bin]# > > -retest.pl > # Open Sendmail > open(MAIL, "|/usr/lib/sendmail -t"); > #

Re: sendmail not working script

2003-04-05 Thread Wiggins d'Anconia
mel awaisi wrote: Hi, this is the whole script: #!/usr/bin/perl use strict; use warnings; # Open Sendmail open(MAIL, "|/usr/lib/sendmail -t"); # Write to the sendmail program print MAIL "To: [EMAIL PROTECTED]"; print MAIL "From: [EMAIL PROTECTED]"; print MAIL "Subject:Yoour Subject\n\n"; print MA

RE: Sendmail confusion

2003-02-21 Thread Dan Muey
Any changes to sendmail? When pipingto an external prog you now have to deal with what's going on in that prog and perhaps an error it is sending out is making perl say ' no recipients' when there is. I'd say use a module that doesn't realy on external prog. Bet that'll fix it. http://search.

Re: Sendmail confusion

2003-02-21 Thread Ramprasad
Rob Richardson wrote: Greetings! I have a script that uses sendmail. It used to work. I didn't touch it. It doesn't work now. The log file tells me that there are no recipient addresses. It looks to me like they are. Here's the code: # Send a confirming E-mail. open (SENDMAIL, "|/usr/lib

Re: SendMail Help Needed!

2003-01-31 Thread Bruce Heerssen
Palm Optins wrote: Hello Everyone, Can someone tell me how to get sendmail to return bounced email to my address. EMAMPLE OF SENDMAIL MAILER open(MAIL,"|$sendmail -t"); print MAIL "From: $email ($first $last)\n"; print MAIL "To: $admin\n"; print MAIL "Reply-To: $email ($first $last)\n"; print

Re: Sendmail Problems

2002-10-15 Thread Deb
Hello! From the commandline, what is the output of % /usr/sbin/sendmail -bv [EMAIL PROTECTED] on the server which you cannot send anything? Also useful, would be any error output that was generated... Hard to say if this is a perl problem or sendmail, or...??? deb Johnstone, Colin <[EM

Re: sendmail problem

2002-08-01 Thread Robin Norwood
Ummm...I'm running out of idea pretty quickly here - here are some things to 'try'... First, check to make sure that $reportdir/$eachowner.mail contains what you want it to after the first part runs, but before the sendmail stuff. Also, I notice that you are appending to these files - '>>'. Are

Re: sendmail problem

2002-08-01 Thread loan tran
Robin et all, I've tried what you recommended but still face the same problem, some of my receivers do not receive full message. I cannot figure out why. Here is new code. (note that @ownerlist has 25 elements) # foreach $eachowner(@ownerlist){ $sql_ownwhat = qq(select sybaseServer, dbNa

Re: sendmail problem

2002-08-01 Thread Robin Norwood
nkuipers <[EMAIL PROTECTED]> writes: > >> 1. Can a variable store a text file with 4+ bytes > >> in size? > > > >I am under the impression that a scalar can be as big as you need. I > >*suspect* that the problem lies in limitations on the size of an < >document - but someone more knowledgabl

RE: sendmail problem

2002-08-01 Thread nkuipers
>> 1. Can a variable store a text file with 4+ bytes >> in size? > >I am under the impression that a scalar can be as big as you need. I >*suspect* that the problem lies in limitations on the size of an part. I was under the

Re: sendmail problem

2002-08-01 Thread Robin Norwood
loan tran <[EMAIL PROTECTED]> writes: > Howdy, > > 1. Can a variable store a text file with 4+ bytes > in size? I am under the impression that a scalar can be as big as you need. I *suspect* that the problem lies in limitations on the size of an < 2. How can I cc or send a message to 2 per

Re: sendmail issue

2002-05-31 Thread Geoffrey F. Green
Look at the error message > E:\sea621\siebsrvr\BIN\Perl\bin>outlook.pl > Global symbol "%mail" requires explicit package name at > E:\sea621\siebsrvr\BIN\P > erl\bin\outlook.pl line 21. [snip] When you use strict, you need to explicitly define your variables using "my" or "our" > #!/usr/bin/p

Re: sendmail

2002-03-04 Thread Robert Aspinall
Original Message - From: "Johannes Franken" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 04, 2002 4:28 PM Subject: Re: sendmail > On Mon, Mar 04, 2002 at 03:22:12PM +0530, Rahul Garg wrote: > > now i want the hyperlink to be shown as http

Re: sendmail

2002-03-04 Thread Johannes Franken
On Mon, Mar 04, 2002 at 03:22:12PM +0530, Rahul Garg wrote: > now i want the hyperlink to be shown as http://www.abc.com > and the actual path to be http://www.abc.com/xyz/abc.htm > How can i achieve this? There's only way to achieve this: Have the abc.com's webmaster redirect his index page t

Re: Sendmail Problems

2002-03-01 Thread William.Ampeh
Instead of sendmail simply use mail or mailx. See script below. Please make sure you change the From: addy... to a valid email address, you do not want your email server to be black listed. You know what I mean? That's bad. #!/opt/local/bin/perl #---

Re: Sendmail Problems

2002-03-01 Thread Chas Owens
On Fri, 2002-03-01 at 14:43, Joseph Bajin wrote: > I am trying to get this program to send mail. Unfortunately I am having > a hard time using sendmail. Could someone please help me out. > > Thanks, > > ##Error Reporting > sub Notifyanddie { > my $message = shift; > open(MAIL, "|/usr

Re: Sendmail and PERL (Solved)

2002-01-17 Thread Lysander
chmod 700 did the trick. Thank you so much! Sheridan - Original Message - From: "Roger Morris" <[EMAIL PROTECTED]> To: "Agustin Rivera" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, January 17, 2002 10:37 AM Subject: Re: Sendmail and

Re: Sendmail and PERL

2002-01-17 Thread Brett W. McCoy
On Thu, 17 Jan 2002, Lysander wrote: > Okay, this is probably more of a sendmail than a PERL question so I > apologize. If anyone can give me information or even point me to a > sendmail list or resource I would appreciate it. > > I am writing a PERL script that takes incoming mail, parses the >

Re: Sendmail and PERL

2002-01-17 Thread Roger Morris
chmod 700 should do it. Any group or world writable should kill it. I don't think sendmail complains about readable files as much as it does about writable files. What do the logs say? One other way is via a procmail recipe. Something like: :0 * /path/to/perlscript Roger At 08:15 AM 1

Re: Sendmail and PERL

2002-01-17 Thread Agustin Rivera
First thing I would do is check the permissions of the .forward file. It has to be VERY specific. I wish I remembered what it was.. Agustin Rivera Webmaster, Pollstar.com http://www.pollstar.com - Original Message - From: "Lysander" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: T

Re: sendmail error

2001-12-13 Thread Akshay Arora
> use Mail:Sendmail; Try use Mail::Sendmail; # Two ::, not one -Akshay -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: sendmail error

2001-12-13 Thread Jose Vicente
I think you should have to use use Mail::Sendmail Bye.

Re: sendmail error

2001-12-13 Thread Jeff 'japhy' Pinyan
On Dec 13, Lance Prais said: >use Mail:Sendmail; use Mail::Sendmail; Notice the doubled colon. >%mail = ( To =>'[EMAIL PROTECTED]', >From=> 'Nobody', >Subject => 'Error', >Message => "my $data = for (1..21)" > ); I don't think M

Re: sendmail error

2001-12-13 Thread Francis Henry
Hi Lance: use Mail:Sendmail; should be use Mail::Sendmail; Have a good day, Francis Lance Prais wrote: > I am using the following piece of code to send email I can not figure out > why it errors out because it worked the other day and now it is not. I have > not changed anything on the syst

Re: sendmail in html

2001-11-29 Thread Jenda Krynicky
From: "Rahul Garg" <[EMAIL PROTECTED]> > well i am trying to send mails thru sendmail in html but they are > coming in html with tags and html not getting executed. how should i > correct the prob. > > open (MAIL, "|$mail_prog -t"); > print MAIL "To: $r_mailid \n" ; > print M

Re: Sendmail alternatives

2001-11-15 Thread Karthik Krishnamurthy
postfix is a drop in replacement for sendmail. as such the sendmail commandline can still be used for delivering mails. Qmail has also been coded with security in mind. However (this is not thro personal experience), postfix seems to be quicker than qmail as far as queueing is concerned. Also po

Re: Sendmail alternatives

2001-11-15 Thread Kilaru Sambaiah
On Thursday 15 November 2001 02:50 am, Miles Sapp wrote: > I've heard Sendmail isn't a very good mail program because of security > holes, etc. Can anyone recommend a good alternative script for sending > mail from an HTML form? Thanks! > Miles Qmail and postfix. postfix is written by security

Re: [Fwd: RE: Sendmail alternatives]

2001-11-14 Thread Kevin Meltzer
I like postfix (postfix.org). It is pretty secure, easy to install and maintain. It's only drawback (IMO) is that it can use a lot of inodes. Other than that I am happier with it than I was when I used to have to configure sendmail :) Cheers, Kevin On Wed, Nov 14, 2001 at 02:22:11PM -0800, Mile

RE: [Fwd: RE: Sendmail alternatives]

2001-11-14 Thread GoodleafJ
bsm.com> cc: Subject: RE: [Fwd: RE: Sendmail alternatives] 11/14/01

RE: [Fwd: RE: Sendmail alternatives]

2001-11-14 Thread Johnson, Shaunn
2 PM To: [EMAIL PROTECTED] Subject: [Fwd: RE: Sendmail alternatives] I'm not referring to anything specific. I don't know that much about it, I've just seen people say bad things about Sendmail on this mailing list in the past and wondered if there is something better that is i

[Fwd: RE: Sendmail alternatives]

2001-11-14 Thread Miles Sapp
I'm not referring to anything specific. I don't know that much about it, I've just seen people say bad things about Sendmail on this mailing list in the past and wondered if there is something better that is in common use. Original Message -------- Subject: RE: Sendma

RE: Sendmail alternatives

2001-11-14 Thread Johnson, Shaunn
--howdy --just a question: what version of sendmail are you referring to? there are a slew of items that has security measures (some of it is due in part of your system security), but sendmail is getting pretty good at telling people what they are and how to fix it. as a rule of thumb, never g

RE: sendmail and newlines

2001-08-24 Thread Crowder, Rod
> -Original Message- > From: Wendy DeCora [mailto:[EMAIL PROTECTED]] > Sent: 23 August 2001 16:13 > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: sendmail and newlines > > > Situation: My perl script (see Code: below) is being > handed a flatfile (see File: below) generated from

Re: Sendmail w/perl

2001-08-14 Thread David Rankin
V-ONE Corporation >[EMAIL PROTECTED] > >- Original Message - >From: "Gary Stainburn" <[EMAIL PROTECTED]> >To: "Robert Aspinall" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> >Sent: Tuesday, August 14, 2001 8:54 AM >Subject: Re: Sendmail w/pe

Re: Sendmail w/perl

2001-08-14 Thread Robert Aspinall
ECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, August 14, 2001 9:19 AM Subject: Re: Sendmail w/perl > I can't see anything wrong witth your code - as you say, there ain't that > much of it. > > The one points I can mention (apart from the usual -w and use stri

Re: Sendmail w/perl

2001-08-14 Thread Gary Stainburn
uot;testing!"; > > > Any ideas? > > > Robert Aspinall > Support Engineer > V-ONE Corporation > [EMAIL PROTECTED] > > - Original Message - > From: "Gary Stainburn" <[EMAIL PROTECTED]> > To: "Robert Aspinall" <[EMAIL PROTECTED]>; &l

Re: Sendmail w/perl

2001-08-14 Thread Robert Aspinall
: "Michael Monaghan" <[EMAIL PROTECTED]> To: "Robert Aspinall" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, August 14, 2001 9:08 AM Subject: Re: Sendmail w/perl > sounds as if the perl script isn't getting called at all. > > If you

Re: Sendmail w/perl

2001-08-14 Thread Michael Monaghan
sounds as if the perl script isn't getting called at all. If you're working on UNIX you're probably using a ".forward" file to forward mail to the script. Instead of forwarding the mail to the script, forward it to a regular email account. - and if that doesn't work then there's no way your perl

Re: Sendmail w/perl

2001-08-14 Thread Robert Aspinall
nt STDERR "testing!"; Any ideas? Robert Aspinall Support Engineer V-ONE Corporation [EMAIL PROTECTED] - Original Message - From: "Gary Stainburn" <[EMAIL PROTECTED]> To: "Robert Aspinall" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent:

Re: Sendmail w/perl

2001-08-14 Thread Gary Stainburn
Hows about giving us some code to look at? If it's a big un, just give us some snippets. Also, give us the aliases file entry that calls it. Gary On Tuesday 14 August 2001 1:51 pm, Robert Aspinall wrote: > I have an alias that runs a perl script whenever mail is recieved for a > certain account

RE: SENDMAIL

2001-07-26 Thread Neil Fryer
Use 'mail [EMAIL PROTECTED] -s Subject:whatever' cheers Neil Fryer Solaris Systems Administrator [EMAIL PROTECTED] -Original Message- From: Mohammed Maraikayar [mailto:[EMAIL PROTECTED]] Sent: 26 July 2001 02:48 To: [EMAIL PROTECTED] Subject: SENDMAIL anyone has an idea how to send e

Re: Sendmail

2001-05-22 Thread Paul
--- "M.W. Koskamp" <[EMAIL PROTECTED]> wrote: > - Original Message - > From: Chris Tunnell <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, May 22, 2001 11:23 PM > Subject: Sendmail > > I use a program called activeperl to run perl scripts on my W2k > machine. Does anyone k

Re: Sendmail

2001-05-22 Thread M.W. Koskamp
- Original Message - From: Chris Tunnell <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 11:23 PM Subject: Sendmail I use a program called activeperl to run perl scripts on my W2k machine. Does anyone know where the sendmail is located Yes, on the nearest unix m