| Linux - Server This 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
03-13-2008, 04:31 PM
|
#16
|
|
Guru
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678
Rep: 
|
Looks more like what I'd expect.
What's happening when you send?
Did you work out the location of sendmail and look at the other logged errors?
|
|
|
|
03-13-2008, 07:35 PM
|
#17
|
|
Senior Member
Registered: Oct 2005
Distribution: Gentoo, Slackware, LFS
Posts: 2,039
Rep: 
|
perhaps you should do things this way:
Code:
127.0.0.1 localhost loopback
192.168.1.22 gameserver.homenetwork gameserver
192.168.1.16 vista vista.homenetwork
192.168.1.19 tony tony.homenetwork
I'm not sure if you can bind your IPV6 same as your IPV4 but just try it.
Code:
::1 gameserver.homenetwork gameserver
I think it's better to bind it with a different name though.
Code:
::1 gameserveralso.homenetwork gameserveralso
or maybe not 
Last edited by konsolebox; 03-13-2008 at 07:38 PM.
|
|
|
|
03-13-2008, 07:50 PM
|
#18
|
|
Member
Registered: Dec 2002
Location: Ellensburg, WA
Distribution: Sabayon Linux 3.5
Posts: 48
Original Poster
Rep:
|
More log output
gameserver sendmail[75530]: m2E0inIA075530: localhost [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during co
nnection to IPv4
|
|
|
|
03-13-2008, 07:53 PM
|
#19
|
|
Member
Registered: Dec 2002
Location: Ellensburg, WA
Distribution: Sabayon Linux 3.5
Posts: 48
Original Poster
Rep:
|
More info.
More server log output.
Code:
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"
|
|
|
|
03-13-2008, 07:59 PM
|
#20
|
|
Guru
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678
Rep: 
|
|
|
|
|
03-14-2008, 09:31 AM
|
#21
|
|
Member
Registered: Nov 2005
Distribution: Fedora 4
Posts: 37
Rep:
|
Test SMTP manually
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.
Hope this helps some...
|
|
|
|
03-19-2008, 07:21 PM
|
#22
|
|
Member
Registered: Dec 2002
Location: Ellensburg, WA
Distribution: Sabayon Linux 3.5
Posts: 48
Original Poster
Rep:
|
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 :'-(
|
|
|
|
03-19-2008, 08:07 PM
|
#23
|
|
Guru
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678
Rep: 
|
Can't help you with sendmail I'm afraid Joe - now if you move to postfix...
|
|
|
|
03-31-2008, 08:05 PM
|
#24
|
|
Member
Registered: Dec 2002
Location: Ellensburg, WA
Distribution: Sabayon Linux 3.5
Posts: 48
Original Poster
Rep:
|
Ok I rebuilt php-extensions with imap, then it works? Sendmail is sort of hanging with sending mail, I don't get errors now. We'll see if it works.
Edit:
Deferred: Name server: mx1.hotmail.com.: host name lookup failure
Last edited by Joe_Bogarde; 03-31-2008 at 08:20 PM.
Reason: additional information.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 01:51 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|