slijtan
Programmer
- Dec 16, 2007
- 1
So I had sendmail working from a ubuntu server @ home and all of a sudden it stopped working without me changing a thing. I think it has to do with it trying to send from root@comcast.net, which is not a recognized email address? The authentication seems to work fine, but I do get an error message in the log below that reads "550 5.1.0 Not our Customer". I use the following command to try to send the email from the command line. This command used to work a few weeks back, but it just randomly stopped working recently without me changing a thing:
sendmail -Am -v -t < test_email
test_email contains the following:
Date: Fri, 28 Sep 2007 11:28:32 -0700
Message-Id: <200709281828.l8SISWXg027022@server.hsd1.ca.comcast.net.>
From: notify@lijen.dnsdojo.com
To: lijentantan@gmail.com
Subject: Test Email
Mime-Version: 1.0
Content-Type: text/html
TEST!!
The resulting log reads:
lijentan@gmail.com... Connecting to smtp.comcast.net port 587 via relay...
220 OMTA02.westchester.pa.mail.comcast.net comcast ESMTP server ready
>>> EHLO comcast.net.
250-OMTA02.westchester.pa.mail.comcast.net hello [98.207.98.195], pleased to meet you
250-HELP
250-AUTH LOGIN PLAIN CRAM-MD5
250-SIZE 15728640
250-ENHANCEDSTATUSCODES
250-8BITMIME
250-STARTTLS
250 OK
>>> STARTTLS
220 2.0.0 Ready to start TLS
>>> EHLO comcast.net.
250-OMTA02.westchester.pa.mail.comcast.net hello [98.207.98.195], pleased to meet you
250-HELP
250-AUTH LOGIN PLAIN CRAM-MD5
250-SIZE 15728640
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 OK
>>> AUTH PLAIN Y2hhcmxlc3NoaWVoQGNvbWNhc3QubmV0AGNoYXJsZXNzaGllaEBjb21jYXN0Lm5ldABzb25nY2FrZQ==
235 2.7.0 ... authentication succeeded
>>> MAIL From:<root@comcast.net> SIZE=455 AUTH=root@comcast.net.
550 5.1.0 Not our Customer
root... aliased to lijen
/root/dead.letter... Saved message in /root/dead.letter
Closing connection to smtp.comcast.net
>>> QUIT
221 2.0.0 OMTA02.westchester.pa.mail.comcast.net comcast closing connection
Thanks in advance!
sendmail -Am -v -t < test_email
test_email contains the following:
Date: Fri, 28 Sep 2007 11:28:32 -0700
Message-Id: <200709281828.l8SISWXg027022@server.hsd1.ca.comcast.net.>
From: notify@lijen.dnsdojo.com
To: lijentantan@gmail.com
Subject: Test Email
Mime-Version: 1.0
Content-Type: text/html
TEST!!
The resulting log reads:
lijentan@gmail.com... Connecting to smtp.comcast.net port 587 via relay...
220 OMTA02.westchester.pa.mail.comcast.net comcast ESMTP server ready
>>> EHLO comcast.net.
250-OMTA02.westchester.pa.mail.comcast.net hello [98.207.98.195], pleased to meet you
250-HELP
250-AUTH LOGIN PLAIN CRAM-MD5
250-SIZE 15728640
250-ENHANCEDSTATUSCODES
250-8BITMIME
250-STARTTLS
250 OK
>>> STARTTLS
220 2.0.0 Ready to start TLS
>>> EHLO comcast.net.
250-OMTA02.westchester.pa.mail.comcast.net hello [98.207.98.195], pleased to meet you
250-HELP
250-AUTH LOGIN PLAIN CRAM-MD5
250-SIZE 15728640
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 OK
>>> AUTH PLAIN Y2hhcmxlc3NoaWVoQGNvbWNhc3QubmV0AGNoYXJsZXNzaGllaEBjb21jYXN0Lm5ldABzb25nY2FrZQ==
235 2.7.0 ... authentication succeeded
>>> MAIL From:<root@comcast.net> SIZE=455 AUTH=root@comcast.net.
550 5.1.0 Not our Customer
root... aliased to lijen
/root/dead.letter... Saved message in /root/dead.letter
Closing connection to smtp.comcast.net
>>> QUIT
221 2.0.0 OMTA02.westchester.pa.mail.comcast.net comcast closing connection
Thanks in advance!