Re: using vms mail

2003-07-28 Thread Alan Winston - SSRL Central Computing
> Hi can anyone give me any tips on how to interact with vms mail? > I thought something like this may work but it doesn't play ball, > open(MAIL,"|mail") || die "Can't open mail\n"; > print MAIL "send\n"; > print MAIL "martin\n"; > print MAIL "my subject\n"; > print MAIL "some body text\n"; > pr

Re: Using VMS mail

2003-07-28 Thread Martin Evans
unlink $file; > > --Bob van Keuren > Advanced Marketing Services > San Diego > > > -Original Message----- > From: Martin Evans [mailto:[EMAIL PROTECTED] > Sent: Monday, July 28, 2003 7:20 am > To: [EMAIL PROTECTED] > Subject: RE: using vms mail > > > >

Using VMS mail

2003-07-28 Thread BobV
Evans [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2003 7:20 am To: [EMAIL PROTECTED] Subject: RE: using vms mail Many thanks for your replies, I've managed to get it going and keep it simple whith VMS mail, part of my problem was some previous testing I had been doing with "deliver&

RE: using vms mail

2003-07-28 Thread Martin Evans
Many thanks for your replies, I've managed to get it going and keep it simple whith VMS mail, part of my problem was some previous testing I had been doing with "deliver" (freeware cd tool for filtering) it would also appear that you don't need the control-z (which I should have had as "\cZ") or t

RE: using vms mail

2003-07-28 Thread "Vorländer, Martin"
Martin Evans wrote: > Hi can anyone give me any tips on how to interact with vms mail? I haven't personally used it, but how about VMS::Mail? Available from a friendly CPAN mirror near you. However, it's quite old (2000, inital release), listed as "cdc" (pre-alpha, support by developer, C and per

Re: using vms mail

2003-07-28 Thread Craig A. Berry
Michael G Schwern wrote: On Mon, Jul 28, 2003 at 01:06:36PM +0100, Martin Evans wrote: Hi can anyone give me any tips on how to interact with vms mail? Could you use Mail::Sendmail (which, despite the name, is not an interface to sendmail) or Net::SMTP instead? Or MIME::Lite? If it really does

Re: using vms mail

2003-07-28 Thread Michael G Schwern
On Mon, Jul 28, 2003 at 01:06:36PM +0100, Martin Evans wrote: > Hi can anyone give me any tips on how to interact with vms mail? Could you use Mail::Sendmail (which, despite the name, is not an interface to sendmail) or Net::SMTP instead? -- Let me check my notes. http://www.sluggy.com

using vms mail

2003-07-28 Thread Martin Evans
Hi can anyone give me any tips on how to interact with vms mail? I thought something like this may work but it doesn't play ball, open(MAIL,"|mail") || die "Can't open mail\n"; print MAIL "send\n"; print MAIL "martin\n"; print MAIL "my subject\n"; print MAIL "some body text\n"; print MAIL "^Z"; p