Re: Net::SMTP raw, where is the username and password?

2017-07-11 Thread ToddAndMargo
On 07/10/2017 02:18 PM, ToddAndMargo wrote: On 07/10/2017 12:31 PM, Timo Paulssen wrote: Did you read my very long post on the Net::SMTP issue you opened? I will shortly when I get some programming time. It arrived in my eMail and I have it bolded and tagged red. Thank you! Hi Timo,

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread ToddAndMargo
On 07/10/2017 12:31 PM, Timo Paulssen wrote: Did you read my very long post on the Net::SMTP issue you opened? I will shortly when I get some programming time. It arrived in my eMail and I have it bolded and tagged red. Thank you! -- Yesterday it worked. Today it

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread Timo Paulssen
Did you read my very long post on the Net::SMTP issue you opened?

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread Brandon Allbery
On Mon, Jul 10, 2017 at 3:17 PM, ToddAndMargo wrote: > On 07/10/2017 06:48 AM, Timo Paulssen wrote: > >> It seems like you don't know the internals of the SMTP protocol. In that >> case, it's a bad idea to try to use the raw mode, when the simple mode >> is much simpler to

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread ToddAndMargo
On 07/10/2017 06:48 AM, Timo Paulssen wrote: It seems like you don't know the internals of the SMTP protocol. In that case, it's a bad idea to try to use the raw mode, when the simple mode is much simpler to handle. In the list of simple mode methods you can find the method "auth" that will try

Re: Net::SMTP raw, where is the username and password?

2017-07-10 Thread ToddAndMargo
On 07/09/2017 10:55 PM, ToddAndMargo wrote: Hi All, From: https://github.com/retupmoca/P6-Net-SMTP # raw interface my $client = Net::SMTP.new(:server("your.server.here"), :port(587), :debug, :raw); $client.get-response; # 220 your.server.here ... $client.ehlo; # 250-STARTTLS\r\n250 ...

Net::SMTP raw, where is the username and password?

2017-07-09 Thread ToddAndMargo
Hi All, From: https://github.com/retupmoca/P6-Net-SMTP # raw interface my $client = Net::SMTP.new(:server("your.server.here"), :port(587), :debug, :raw); $client.get-response; # 220 your.server.here ... $client.ehlo; # 250-STARTTLS\r\n250 ... $client.mail-from('f...@your.server.here'); # 250