Questions tagged [smtp]

SMTP is the Simple Mail Transfer Protocol, the most recent standard of which is defined in RFC 5321. It's the Internet standard for sending and receiving email.

Some characteristics of SMTP (Simple Mail Transfer Protocol):

  • The default port is TCP port 25 and new submissions (MSA) is port 587.
  • Although depreciated, some services still use port 465 (SMTPS) to support legacy applications.
  • It is used to transmit outbound mail, and mail servers (which listens on port 25) receives mail on port 25.
  • It should not be confused with POP3 / IMAP which is an actual store for the e-mail. SMTP messages are received by the receiving server and then an MTA moves it to the POP3 / IMAP mailbox where it is normally retrieved using a POP3 / IMAP client.

See Also:

RFC5321

3133 questions
1
vote
1 answer

Is it possible to configure sendmail to require/use certain ciphers during TLS negotiation?

CentOS 5.x | SendMail I'd like sendmail to use a specific cipher when negotiating a TLS session with a specific remote MTA/domain. Is that possible? I'm aware that a minimum bit strength can be added to the TRY_TLS: parameter in /etc/mail/access…
Mike B
  • 11,871
  • 42
  • 107
  • 168
1
vote
1 answer

SPF: How are user@domain.com records verified?

I'm troubleshooting Google Apps marking valid messages as spam. In the message header: Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of user@subdomain.domain.com designates xxx.xxx.xxx.xxx as permitted…
Dom
  • 741
  • 1
  • 8
  • 19
1
vote
1 answer

What's blocking my program from sending email?

I have a Java program which uses javax.mail to send an SMTP message. This program WORKS FINE on a Linux box, I want to emphasize that beforehand. When I try this same code on my Windows 7 x64 box, I get this error: send failed, exception:…
user1071914
  • 183
  • 1
  • 3
  • 10
1
vote
5 answers

Best Practices for Open Relay Email Server

I have a scenario where I need to setup postfix with no TLS, no SMTP authentication, and open relay allowing from only one remote IP address. Emails from this remote IP may have spoofed "from" address as well. I know, dont ask about how I got to…
WJR
  • 341
  • 1
  • 4
  • 17
1
vote
2 answers

SPF Failure sending sms message to sms.mycricket.com

I built an asp.net application that sends text messages to our employees using carrier-provided email to SMS gateways. The people on Cricket (sms.mycricket.com) are the only ones that are bouncing with a return message like this: Unknown address…
CodeGurl
  • 13
  • 3
1
vote
1 answer

why do I get this mail server configuration error?

< mydomain.com -> 78.47.63.148 -> static.148.63.47.78.clients.your-server.de Spam recognition software and RFC821 4.3 (also…
Francesco
  • 11
  • 1
1
vote
2 answers

Plesk Postfix SMTP 550 5.7.1 "Command rejected" for one external sender

My server is rejecting emails from one external sender. I suspect this might be misconfiguration on the sending server, but I'm not sure from these error messages. The non-delivery report message the sender gets contains this text: #5.7.1 smtp;550…
Mnebuerquo
  • 234
  • 2
  • 6
  • 15
1
vote
1 answer

Apache SMTP connection times out

A web server that has successfully sent mail using the hosting providers's SMTP server before seems to suddenly have lost connection to the SMTP server. [Wed Nov 28 09:51:27 2012] [error] [client 10.250.11.81] PHP Warning: fsockopen(): unable to…
Kaivosukeltaja
  • 205
  • 1
  • 8
1
vote
1 answer

I accidentaly spammed myself - how long do gmail's block SMTP for after such inceidents

So, total brainfart! I mis-configured a cron job shortly before I went to bed last night and when I woke up this morning my script, which was supposed to run every 6 hours, had been trying to run every minute of every sixth hour instead - sending…
1
vote
1 answer

Exchange- Outbound emails not working

My old mans 2003 SBS Server is doing weird things.. specifically with Exchange. Inbound emails are trickling through slowly, but outbound emails have stopped working. Is there a way to track outbound emails to see what is happening with them? We use…
Lock
  • 1,637
  • 7
  • 26
  • 33
1
vote
2 answers

Spam mail through SMTP and user spoofing

I have noticed that it's possible to telnet into a mailserver that I own and send spoofed messages to other clients. This only works for the domain that the mail server is regarding; I cannot do it for other domains. For example; lets say that I own…
user101130
1
vote
1 answer

Exchange 2007 Server - Sender unable to send one recipient in the domain

I have a mail server that serves multiple domains. I have 2 users that use a specific domain. User A does not experience any issues when sending and receiving mail. User B can send emails fine and receives emails fine from most external users.…
ringocub
  • 11
  • 1
1
vote
2 answers

Enabling openssl With PHP/nginx

I'm getting the following error when trying to connect to SMTP + SSL through PHP using nginx + PHP 5, Could not connect to smtp host 'ssl://smtp.gmail.com' (5) (Unable to find the socket transport "ssl" - did you forget to enable it when you…
reefine
  • 239
  • 6
  • 11
1
vote
2 answers

HELO command rejected: need fully-qualified hostname

Trying to send an E-Mail to some stricter set up MXs I get: : Helo command rejected: need fully-qualified hostname (in reply to RCPT TO command) Of course, when setting $myhostname in main.cf the Mail gets delivered correctly, but…
mojo
  • 329
  • 1
  • 2
  • 11
1
vote
3 answers

Configure IIS 5.1 for SMTP

I've tried a number of solutions that I found on the internet, but none worked. I can telnet to port 25 and send an email via IIS 5.1 listening on that port, but the email never gets delivered. I see that all of the emails end up in :…
user13891