Re: send email with perl 587 and startssl

2011-07-25 Thread Fayland Lam
maybe this: http://search.cpan.org/perldoc?Email::Sender::Transport::SMTP::TLS Thanks On 2011/7/25 22:06, Jesse Thompson wrote: It looks like Email::Sender::Transport::SMTP uses Net::SMTP::SSL, which only supports SSL (establishes a secure channel before any SMTP occurs, port 465) and not STA

Re: send email with perl 587 and startssl

2011-07-25 Thread Chris Nehren
On Jul 22, 2011, at 21:51 , m...@smtp.fakessh.eu wrote: > hello folks > > when is it the easiest solution to email 587 startssl and authentication > > I arrived by writing this but the email sent does not contain the headers of > the authentication Have you tried E::S::T::SMTP::TLS? -- Tha

Re: send email with perl 587 and startssl

2011-07-25 Thread Jesse Thompson
It looks like Email::Sender::Transport::SMTP uses Net::SMTP::SSL, which only supports SSL (establishes a secure channel before any SMTP occurs, port 465) and not STARTTLS (the SMTP connection is established and then is "upgraded" to TLS, port 587 and sometimes 25) Net::SMTP::TLS is probably wh