comp.lang.ada
 help / color / mirror / Atom feed
From: Simon Wright <simon@pushface.org>
Subject: Re: Attempt to send email using AWS results in Socket closed by peer
Date: Fri, 03 Sep 2021 21:35:11 +0100	[thread overview]
Message-ID: <lywnnxcs8w.fsf@pushface.org> (raw)
In-Reply-To: 57c7ca69-cc99-45ae-b494-580536a99ef4n@googlegroups.com

Juan Rayas <juan.m.rayas@gmail.com> writes:

>       Isp :=
>         SMTP.Client.Initialize
>           ("smtp.gmail.com", Port => 465, 
>            Credential             => Auth'Unchecked_Access);

I succeed sending mail via gmail.com using port 587.

No useful further details on encryption - this was for the membership
d/b for a small club, and it's in Python/sqlite.

    self.server = smtplib.SMTP(host=self.server_details['host'],
                               port=self.server_details['port'])
    self.server.ehlo()
    self.server.starttls()
    self.server.ehlo()
    self.server.login\
        (user=server_details['user'],
         password=keyring.get_password\
           ('u3a-email', server_details['user']))

  parent reply	other threads:[~2021-09-03 20:35 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-01 18:58 Attempt to send email using AWS results in Socket closed by peer Juan Rayas
2021-09-01 19:43 ` Dmitry A. Kazakov
2021-09-02 22:19   ` Randy Brukardt
2021-09-03  7:32     ` Dmitry A. Kazakov
2021-09-03  8:59       ` Doctor Who
2021-09-03 18:11         ` Juan Rayas
2021-09-03 18:31           ` Dmitry A. Kazakov
2021-09-03 19:33           ` Doctor Who
2021-09-03 20:29             ` Juan Rayas
2021-09-01 20:02 ` Dennis Lee Bieber
2021-09-02  3:29 ` Richard Iswara
2021-09-02  4:03 ` Doctor Who
2021-09-02 22:22   ` Randy Brukardt
2021-09-03 20:35 ` Simon Wright [this message]
2021-09-03 21:13   ` Dmitry A. Kazakov
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox