0

I recently setup my own Exchange and SMTP Server on a virtual memberserver. Now if I send a mail (with my .net script) it reaches and passes the SMTP Server but it doesn't show up in my Outlook inbox.

Neither the script nor anything else causes an error.

The SMTP-Log is fine as well:

12:59:58 192.168.1.12 HELO - 250
12:59:58 192.168.1.12 MAIL - 250
12:59:58 192.168.1.12 RCPT - 250
12:59:58 192.168.1.12 DATA - 250
12:59:58 192.168.1.12 QUIT - 240

Do I miss some component or do I need to connect the Exchange and the SMTP somehow special?

GrindelOh
  • 155
  • 1
  • 1
  • 7
  • 1
    Exchange has it's own built in SMTP server, so if you installed an SMTP server separate from Exchange, then it is probably interfering with Exchange. – pat o. Feb 12 '16 at 15:56
  • @Patrick this could be it! So the "Send Connector" is the exchanges own SMTP? This would make things way much easier.. – GrindelOh Feb 12 '16 at 17:02
  • Send Connector is responsible for sending messages out. Receive connector is responsible for receiving messages in. It could be that Exchange and whatever SMTP server you installed are both trying to listen on port 25. – pat o. Feb 12 '16 at 18:28

1 Answers1

1

Exchange has its own built-in SMTP server. You don't need to install a separate one.

Send Connectors are used for sending mail out to the internet.

Receive Connectors are used for receiving mail.

pat o.
  • 1,919
  • 1
  • 16
  • 28
  • 1
    I was tempted to upvote this just because I have seen how often people use two layers of SMTP servers for incoming emails and screw up the behavior in the process. But eventually I decided this answer need a bit more detail before I am going to upvote it. – kasperd Feb 12 '16 at 22:25