15 questions
0
votes
0
answers
123
views
Not able to send mail from mail server on al2023
I had created a nodejs mail server on a AL2023 linux vm using SMTP server npm package. I am able to receive email successfully, but I am not able to send emails. I have configured ports 25 and 587 on ...
0
votes
2
answers
233
views
SMTPServer - How to support StartTLS?
I have an SMTPClient, using MailKit, that sends a message with the follow code.
using (var client = new SmtpClient())
{
client.ServerCertificateValidationCallback = (s, c, h, e) => true;
...
-1
votes
1
answer
55
views
How can i use greenlock(Let's Encrypt) to secure npm smtp-server
The Greenlock project does not allow the use of ports other than 80 and 443, for the SMTP server we don't use those ports
I searched for options to change ports for Greenlock but could not find them. ...
0
votes
0
answers
535
views
What is the cause of this error: tls_post_process_client_hello:no shared cipher
Tested sending an email from the node nodemailer.sendMail code to the SMTP server, which is running on the same server as my back end API, and it initially looked good. Here is the output:
message ID ...
0
votes
0
answers
177
views
How to configure SMTPServer options with pem key and cert?
The guidance here: https://nodemailer.com/extras/smtp-server/ ... indicated that I should configure my SMTP server (in production) like so:
Example code from nodemailer site:
const server = new ...
0
votes
0
answers
528
views
The term 'EHLO' is not recognized as the name of a cmdlet, function, script file, or operable program
I've installed and configured SMTP server on Windows Server 2012 R2 Standard. The installation and configuration was successful, to the best of my knowledge.
But I'm having issues with testing the ...
0
votes
0
answers
42
views
ReferenceError: callback not found when making an STMP server using Nodemail and Express
I'm trying to make an SMTP server and client using Nodemail & ExpressJS. For now, I'm just attempting to "login" to my SMTP server to test & verify its working. When I go to ...
0
votes
1
answer
752
views
Unable to Send an email via python- Error- smtplib.SMTPServerDisconnected: Connection unexpectedly closed
port = 465 # For SSL
smtp_server = "smtp.mail.yahoo.com"
sender_email = "[email protected]" # Enter your address
password = input("Type your password and press enter:&...
0
votes
2
answers
2k
views
Communication sample for SMTP over TLS (known as SSL/TLS)
I am trying to implement SSL/TLS im my SMTP server (PHP). Securing the connection with TLSv1.3 works, and the certificate (LetsEncrypt) is valid. I tested this with https://www.checktls.com/...
1
vote
0
answers
117
views
create outbuond smtp server using smtp-server nodejs
I was trying to create a SMTP server using nodejs module "smtp-server" and referred this: http://nodemailer.com/extras/smtp-server/. When I tried to send mail using nodemailer to server it ...
1
vote
0
answers
379
views
Could not send mail to users email using my smtp server on website
My goal is sending mail from smtp server on my website (lets say: example.com) to user (lets say: [email protected]).
What I have done
I created SMTP server on my website using nodejs module "...
2
votes
0
answers
61
views
Is the Nodemailer SMTP server library compatible with UNIX sockets?
I have an SMTP server working that listens to a TCP port, but I want it to listen to traffic on a UNIX socket that my NGINX load balancer forwards the SMTP traffic onto. Is this possible, or will I ...
0
votes
0
answers
209
views
How do I write my own challenge_auth method for aiosmtpd?
I'm trying to connect a wildlife camera to my SMTP server but it keeps dropping the connection after being asked for it's username. I've verified that this server works with other wildlife cameras and ...
0
votes
0
answers
431
views
Parse raw SMTP email data to get the HTML part (including links)
I am building a Javascript email client for testing purposes.
This client uses smtp-server to recieve emails. This works fine.
However, the recieved content looks like this:
Content-Type: multipart/...
0
votes
1
answer
314
views
Azure Automation SMTP remote name could not be resolved
I have a powershell script that will get all of my azure app registration information and send the information out in an email. I have the powershell working on my laptop, but can't get the email to ...