Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
123 views

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 ...
Samarth Srivastava's user avatar
0 votes
2 answers
233 views

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; ...
Don Chambers's user avatar
  • 4,375
-1 votes
1 answer
55 views

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. ...
Vineeth Rai k's user avatar
0 votes
0 answers
535 views

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 ...
generic3892372's user avatar
0 votes
0 answers
177 views

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 ...
generic3892372's user avatar
0 votes
0 answers
528 views

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 ...
Justin's user avatar
  • 91
0 votes
0 answers
42 views

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 ...
klade's user avatar
  • 3
0 votes
1 answer
752 views

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:&...
Gaarrud's user avatar
0 votes
2 answers
2k views

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/...
Spider IT's user avatar
  • 101
1 vote
0 answers
117 views

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 ...
anon999_void's user avatar
1 vote
0 answers
379 views

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 "...
anon999_void's user avatar
2 votes
0 answers
61 views

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 ...
MattieG4's user avatar
  • 188
0 votes
0 answers
209 views

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 ...
MattieG4's user avatar
  • 188
0 votes
0 answers
431 views

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/...
Hendrik Jan's user avatar
  • 4,950
0 votes
1 answer
314 views

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 ...
RealisticMagician's user avatar