LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-01-2010, 02:23 AM   #1
frustratednewbie
LQ Newbie
 
Registered: Mar 2010
Distribution: Fedora 10
Posts: 16

Rep: Reputation: 0
Can't send mail in Evolution


Hello LQ, after I finally got my DNS working (http://www.linuxquestions.org/questi...webmin-798840/) I configured sendmail and created a user to test it with.

When I try sending an email to myself using Evolution, there is a one minute pause then a box pops up asking me for the SMTP password for the user, I enter it but I keep getting this error:
Quote:
Unable to authenticate to SMTP server.
AUTH command failed: authentication failed
My domain is: radisson.local, and the hostname is linuxserver.radisson.local

These are the settings I used in my user mail account:
Quote:
Identity
Email Address: mm@radisson.local
Receiving Email
Server Type: IMAP
Server: linuxserver.radisson.local
Use Secure Connection: No Encryption
Authentication Type: Password
Receiving Options
[checked] Override server-supplied folder namespace
Namespace: ~mm/mail/
Sending Email
Server Type: SMTP
Server: linuxserver.radisson.local
[checked] Server requires authentication
Use Secure Connection: No encryption
Authentication Type: DIGEST-MD5
Usernamed: mm
 
Old 04-01-2010, 03:30 AM   #2
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,289

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
sounds like a domains issue. To avoid spam, mail servers don't take mail from anyone - they are fussy (who the hell are you?). Those that take mail from anyone and forward it are called open relays, and blacklisted.

If this is just you at home, laziest way through is to pretend to be on your isp's domain. If your mail server thinks it's isp.com, mail will flow to isp.com and addresses@isp.com will usually work
 
Old 04-01-2010, 04:11 AM   #3
frustratednewbie
LQ Newbie
 
Registered: Mar 2010
Distribution: Fedora 10
Posts: 16

Original Poster
Rep: Reputation: 0
Sorry, I should have elaborated better. I am currently connected to a closed LAN network for testing purposes, so I am trying to send mail locally from one client to the server, but right now I'm trying to send mail from the server itself.

I hope that made sense.
 
Old 04-01-2010, 06:07 AM   #4
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,631

Rep: Reputation: Disabled
It seems the authentication type has some issue.
 
Old 04-04-2010, 04:47 AM   #5
frustratednewbie
LQ Newbie
 
Registered: Mar 2010
Distribution: Fedora 10
Posts: 16

Original Poster
Rep: Reputation: 0
Alright, so I went and researched a bit about the dovecot service and it seems like I have not configured anything in that dovecot.conf, so I went and removed some commented lines.

I also modified the Evolution settings a bit:
Quote:
Identity
Email Address: mm@radisson.local
Receiving Email
Server Type: IMAP
Server: 172.32.1.2
Use Secure Connection: No Encryption
Authentication Type: DIGEST-MD5
Receiving Options
[checked] Override server-supplied folder namespace
Namespace: ~mm/mail/
Sending Email
Server Type: SMTP
Server: 172.32.1.2
[checked] Server requires authentication
Use Secure Connection: No encryption
Authentication Type: DIGEST-MD5
Usernamed: smtp
In webmin, I have these settings in the Read User Mail module:
Quote:
System configuration
Mail server installed: Sendmail
Send mail using: SMTP server: 172.32.1.2
SMTP login name for mail server: smtp
SMTP password for mail server: 123456
SMTP authentication method: Digest-MD5
I can start the sendmail service without problems, but when I try to start or restart dovecot, I get the following:
Quote:
Stopping Dovecot Imap: [FAILED]
Starting Dovecot Imap: Warning: Last died with error (see error log for more information): Auth process died too early - shutting down [OK]
Then, I go to the maillog and this entry comes up last:
Quote:
Apr 5 01:30:09 linuxserver dovecot: dovecot v1.1.20 starting up (core dumps disabled)
Apr 5 01:30:10 linuxserver dovecot: Fatal: auth(default): APOP mechanism can't be supported with given passdbs
Apr 5 01:30:10 linuxserver dovecot: Auth process died too early - shuttng down
I'm not sure what I can do to make dovecot start normally, but I also don't know what passdbs is or does?
 
Old 04-04-2010, 03:36 PM   #6
frustratednewbie
LQ Newbie
 
Registered: Mar 2010
Distribution: Fedora 10
Posts: 16

Original Poster
Rep: Reputation: 0
the problem is solved now but i keep getting error from EVOLUTION cannot connect server. connection refused. please help

Last edited by frustratednewbie; 04-04-2010 at 03:37 PM.
 
Old 04-05-2010, 02:20 AM   #7
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,631

Rep: Reputation: Disabled
Have you tried changing the authentication method to Login? Not all servers should support DIGEST.
 
Old 04-06-2010, 05:05 AM   #8
frustratednewbie
LQ Newbie
 
Registered: Mar 2010
Distribution: Fedora 10
Posts: 16

Original Poster
Rep: Reputation: 0
I'm sure that DIGEST-MD5 is supported, because there is a little button next to the authentication type box that checks which ones are not supported and it crosses them out.
I tried other supported types though, and it still gives me an error.

The exact error I'm currently getting when I try to send a mail from Webmin:
Quote:
Failed to send mail: SMTP authentication failed: 535 5.7.0 authentication failed
 
Old 04-06-2010, 05:24 AM   #9
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,631

Rep: Reputation: Disabled
http://www.velocityreviews.com/forum...ntication.html

In this forum in a discussion, it is suggested to use smtp authentication to be PLAIN LOGIN. So you might want to try that as well.

Another forum with similar issues.

http://www.howtoforge.com/forums/arc...p/t-11645.html
 
Old 04-07-2010, 03:31 AM   #10
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,289

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
What's in /etc/hosts?
 
Old 04-08-2010, 01:30 AM   #11
frustratednewbie
LQ Newbie
 
Registered: Mar 2010
Distribution: Fedora 10
Posts: 16

Original Poster
Rep: Reputation: 0
Lightbulb

@linuxlover.chaitanya:
Thanks, I looked through those and tried to apply the same solutions to my problem but it still persists.

@business_kid:
Quote:
127.0.0.1 linuxserver.radisson.local linuxserver
172.32.1.2 linuxserver.radisson.local linuxserver
#::1 localhost.localdomain localhost6
Anyway, I wanted to say thanks for the help guys, but it looks like we're scrapping the whole mail server thing since we're having too many problems and its taking too long. So we'll just stick with apache and FTP since those are working fine.
 
Old 04-09-2010, 03:51 AM   #12
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,289

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
May I say a word here about mail servers?
Postfix seems to me to be one of the easiest to configure. You would be ready for a home for the bewildered before you stand that up - take it from someone who did. On linuxfromscratch.org blfs section there is a compile & configure for postfix that should get you up pretty quick. They also have stuff on all the main pop, imap stuff and hints.
 
Old 04-09-2010, 04:12 AM   #13
spampig
Member
 
Registered: Feb 2010
Location: /Earth/UK/England/Hampshire
Distribution: Debian, Ubuntu, CentOS, Slackware
Posts: 262
Blog Entries: 2

Rep: Reputation: 56
It would be worth a telnet host 25 / nc host 25 and an EHLO to see if it offers DIGEST. If it does, it would then be worth seeing if you can do this by hand - just to rule out Evolution being buggy. I had issues with the check box for 'remember password' screwing with the login settings a while back.
 
Old 04-09-2010, 06:20 AM   #14
bakdong
Member
 
Registered: Apr 2009
Posts: 214

Rep: Reputation: 44
You had some problems with authentication on the smtp server. Probably because the DIGEST-MD5 wasn't set up properly. I haven't used Postfix, or indeed anything but sendmail really. I have to say that looking after a mail server is a lot more work than either ftp or apache.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't Send mail with Evolution acros120 Linux - Software 2 09-22-2007 06:55 AM
Evolution Won't Send Mail Balarabay1 SUSE / openSUSE 5 09-08-2006 11:19 AM
Cannot send mail in Evolution 1.2 unswt101 Linux - Software 2 04-27-2004 08:39 AM
Evolution 1.4.5 send mail problems assatron Linux - Software 8 03-11-2004 09:19 PM
Evolution and Send Mail Problem shanghai Linux - Software 1 06-11-2003 08:41 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:44 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration