Re: Read From Socket

2004-05-06 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Jenda Krynicky) writes: >From: [EMAIL PROTECTED] (Peter Scott) >> What are you trying to do that Net::SMTP won't do for you? >> Or Mail::Sender or Mail::Sender, for that matter? > >Looks you really like Mail::Sender ;-) > >I think you wanted to su

Re: Read From Socket

2004-05-06 Thread Jenda Krynicky
From: [EMAIL PROTECTED] (Peter Scott) > In article <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] (Roman Baeriswyl) writes: > >Hey Guys > > > >I'm trying to read an answer from an SMTP server via socket. > > What are you trying to do that Net::SMTP won't do for you? > Or Mail::Sender or Mail::Sender, f

Re: Read From Socket

2004-05-05 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Roman Baeriswyl) writes: >Hey Guys > >I'm trying to read an answer from an SMTP server via socket. What are you trying to do that Net::SMTP won't do for you? Or Mail::Sender or Mail::Sender, for that matter? -- Peter Scott http://www.perldebugge

Re: Read From Socket

2004-05-04 Thread Wiggins d'Anconia
Roman Baeriswyl wrote: Hey Guys I'm trying to read an answer from an SMTP server via socket. I'm writing a function wich returns everything till it finds a line which doesn't begin with 3 digits and a - (/^[\d]{3}-/), but returns this line,too. Best I could get till now, is the function below. My q

Read From Socket

2004-05-04 Thread Roman Baeriswyl
Hey Guys I'm trying to read an answer from an SMTP server via socket. I'm writing a function wich returns everything till it finds a line which doesn't begin with 3 digits and a - (/^[\d]{3}-/), but returns this line,too. Best I could get till now, is the function below. My question now is, if tha