Linux - ServerThis forum is for the discussion of Linux Software used in a server related context.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Mar 13 17:43:38 gameserver sendmail[75505]: starting daemon (8.14.2): SMTP+queueing@00:30:00
Mar 13 17:44:01 gameserver dovecot: imap-login: Login: user=<eric>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured
Mar 13 17:44:01 gameserver dovecot: IMAP(eric): Disconnected: Logged out
Mar 13 17:44:49 gameserver sendmail[75530]: m2E0inIA075530: localhost [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during co
nnection to IPv4
Mar 13 17:45:28 gameserver sendmail[75529]: m2E0iAxq075529: localhost [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during co
nnection to IPv4
Mar 13 17:48:43 gameserver sendmail[82476]: m2E0kdrE082476: localhost [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during co
nnection to IPv4
Output of telnet
Code:
gameserver# telnet localhost 25
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 192.168.1.22 ESMTP Sendmail 8.14.2/8.13.8; Thu, 13 Mar 2008 17:51:13 -0700 (PDT)
EHLO localhost
250-192.168.1.22 Hello localhost [127.0.0.1], pleased to meet you
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-8BITMIME
250-SIZE
250-DSN
250-ETRN
250-DELIVERBY
250 HELP
AUTH LOGIN
500 5.5.1 Command unrecognized: "AUTH LOGIN"
First, ensure that your sendmail server is working by manually sending a message using Telnet:
Here are the commands/replies from sendmail.
My comments are in []
Prompt is represented by $
Your commands are bold
Replies are italicized
$ telnet localhost 25 [connect to the SMTP interface]
Trying 127.0.0.1...
Connected to hostname (127.0.0.1).
Escape character is '^]'.
220 hostname ESMTP Sendmail 8.13.6/8.13.4; Fri, 14 Mar 2008 10:25:35 -0400
mail from: test@test.com 250 2.1.0 test@test.com... Sender ok rcpt to: test2@test.com [put your email address here] 250 2.1.5 test2@test.com... Recipient ok data 354 Enter mail, end with "." on a line by itself This is the email text
. [note the period by itself on a line. this ends the data.] 250 2.0.0 m29CFEFT901481344 Message accepted for delivery quit 221 2.0.0 hostname closing connection
Connection closed by foreign host.
If you can't send mail this way, you have a problem with your SMTP server, not squirrelmail.
It appears that squirrelmail is trying to use a different smtp authentication that is not enabled in your sendmail config files.
Yeah I'm at a brick wall. I just keep getting the 500 5.5.1 Command unrecognized: "AUTH LOGIN"
I would really like to get this working. But nothing I'm doing seems to work :'-(
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.