Questions tagged [smtp-server]

11 questions
2
votes
0 answers

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 have to stick to using a TCP port?
MattieG4
  • 150
  • 2
  • 12
1
vote
0 answers

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 went properly but when I tried to send mail to gmail account…
1
vote
0 answers

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: someuser@gmail.com). What I have done I created SMTP server on my website using nodejs module "smtp-server" and tested it by sending mail from…
0
votes
0 answers

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 localhost/listen, I get: ReferenceError: callback is not defined Below is…
klade
  • 1
  • 1
0
votes
0 answers

smtp-server can resive emails from other providers?

I am creating an inbox with SMTPServer like Gmail or similar, my question is can I receive messages from another provider? for example if a Gmail user sends an email to a user registered in my SMTPServer this could see that email? I only tested…
Neyunse
  • 105
  • 5
0
votes
0 answers

Error: connect ECONNREFUSED 127.0.0.1:587

I want to send a message to an email using nodemailer but I keep getting this error ~ even though I am getting { "success": true, "message": "Email Sent" } as my response but in the console, I am getting the error below Error: connect ECONNREFUSED…
0
votes
1 answer

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 = "c.junction@yahoo.com" # Enter your address password = input("Type your password and press enter:") receiver_email = "jawoneb660@jobsfeel.com" # Enter receiver…
0
votes
2 answers

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/TestReceiver where it only works when I activate 'Direct…
Spider IT
  • 73
  • 1
  • 10
0
votes
0 answers

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 email clients but always seems to fail with this…
MattieG4
  • 150
  • 2
  • 12
0
votes
0 answers

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/alternative; …
Hendrik Jan
  • 4,396
  • 8
  • 39
  • 75
0
votes
1 answer

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 send out in Azure Automation. This is the error I…