Current time: 04-19-2024, 11:54 AM Hello There, Guest! (LoginRegister)


Post Reply 
[SOLVED] Can't send Email via smtp
Author Message
victor531 Offline
Junior Member
*

Posts: 167
Joined: Oct 2007
Reputation: 3
Post: #11
RE: Can't send Email via smtp
(11-11-2008 09:36 AM)Gymnogyp Wrote:  OK... this still isn't working. I can send email from web mail, but not from Thunderbird or Outlook.

Its just outlook configuration, check if in :
Tools
->Accounts
->Properties
->Servers the "MY SERVER REQUIRES AUTHENTIFICATIONS" box is marked.

Victor
11-11-2008 10:43 AM
Find all posts by this user Quote this message in a reply
Gymnogyp Offline
Junior Member
*

Posts: 20
Joined: Nov 2008
Reputation: 0
Post: #12
RE: Can't send Email via smtp
i think i got mine working.

I needed to use password authentication.
I also set the server name as JUST the domain name (i.e. domain.com, NOT mail.domain.com or smtp.domain.com)

This seems to work. Now I just need to figure out my FTP prob. Wink
11-11-2008 10:46 AM
Find all posts by this user Quote this message in a reply
joximu Offline
helper
*****
Moderators

Posts: 7,024
Joined: Jan 2007
Reputation: 92
Post: #13
RE: Can't send Email via smtp
SMTP Auth is important but the hostname should be the same (if it's the same machine...) - it doesn't care (as long as you don't use ssl etc) but it's more simple with speaking names... :-)

You also can try sending on Port 587 (also with SMTP auth enabled) which is encouraged by some providers...

/J
11-11-2008 05:38 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Shayne Offline
Junior Member
*

Posts: 53
Joined: Oct 2008
Reputation: 0
Post: #14
RE: Can't send Email via smtp
Hey guys I am also struggling with this issue.

I can send mail via webmail and everything but NOt from out look. and I have tried ALL the settings.

My main.cf looks fine and everything joximu has suggested for main.cf is right!!

PLEASE HELP!

My Mail log gives this error

Jan 29 08:41:11 wor001 postfix/smtpd[17387]: connect from unknown[**.**.**.**]
Jan 29 08:41:11 wor001 postfix/smtpd[17387]: warning: SASL authentication failure: cannot connect to saslauthd server: No such file or directory

Been fiddeling and checking and this error also shows if I take the Authenticate option out.. seems to be a dns issue.

Jan 29 09:32:39 wor001 postfix/smtpd[17774]: fatal: parameter "smtpd_recipient_restrictions": specify at least one working instance of: check_relay_domains, reject_unauth_destination, reject, defer or defer_if_permit
Jan 29 09:32:40 wor001 postfix/master[17589]: warning: process /usr/lib/postfix/smtpd pid 17774 exit status 1
Jan 29 09:32:40 wor001 postfix/master[17589]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling

Jan 29 08:41:11 wor001 postfix/smtpd[17387]: warning: unknown[**.**.**.**]: SASL LOGIN authentication failed: generic failure
Jan 29 08:41:11 wor001 postfix/smtpd[17387]: lost connection after AUTH from unknown[196.211.227.155]
Jan 29 08:41:11 wor001 postfix/smtpd[17387]: disconnect from unknown[**.**.**.**]
(This post was last modified: 01-29-2009 05:34 PM by Shayne.)
01-29-2009 04:38 PM
Find all posts by this user Quote this message in a reply
joximu Offline
helper
*****
Moderators

Posts: 7,024
Joined: Jan 2007
Reputation: 92
Post: #15
RE: Can't send Email via smtp
Jan 29 09:32:39 wor001 postfix/smtpd[17774]: fatal: parameter "smtpd_recipient_restrictions": specify at least one working instance of: check_relay_domains, reject_unauth_destination, reject, defer or defer_if_permit

could you have a look at the master.cf?


ist there a smtp.conf file somewhere on the system? (or maybe smtpd.conf)

/J
01-29-2009 11:56 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Shayne Offline
Junior Member
*

Posts: 53
Joined: Oct 2008
Reputation: 0
Post: #16
RE: Can't send Email via smtp
(01-29-2009 11:56 PM)joximu Wrote:  Jan 29 09:32:39 wor001 postfix/smtpd[17774]: fatal: parameter "smtpd_recipient_restrictions": specify at least one working instance of: check_relay_domains, reject_unauth_destination, reject, defer or defer_if_permit

could you have a look at the master.cf?


ist there a smtp.conf file somewhere on the system? (or maybe smtpd.conf)

/J

Yeah its here

/etc/postfix/sasl/smtpd.conf and looks like this:

pwcheck_method: saslauthd
mech_list: plain login
pwcheck_method: saslauthd
mech_list: plain login


Sad
01-30-2009 04:09 PM
Find all posts by this user Quote this message in a reply
joximu Offline
helper
*****
Moderators

Posts: 7,024
Joined: Jan 2007
Reputation: 92
Post: #17
RE: Can't send Email via smtp
ok, rename this file.
we often have problems when the file exists (postfix has its own routines for saslauth there is no need for an external daemon).
Restart postfix and test...
if ok, you can delete the smtpd.conf... :-)

But also look in the /etc/postfix/master.cf about the "fatal" line in the logfile...

/J
01-30-2009 04:33 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Shayne Offline
Junior Member
*

Posts: 53
Joined: Oct 2008
Reputation: 0
Post: #18
RE: Can't send Email via smtp
(01-30-2009 04:33 PM)joximu Wrote:  ok, rename this file.
we often have problems when the file exists (postfix has its own routines for saslauth there is no need for an external daemon).
Restart postfix and test...
if ok, you can delete the smtpd.conf... :-)

But also look in the /etc/postfix/master.cf about the "fatal" line in the logfile...

/J

Joximo You are a genius Smile)

I will check the fata line and get back to you.. Wooohoo.. mail is working!!
01-30-2009 07:12 PM
Find all posts by this user Quote this message in a reply
soho Offline
Newbie
*

Posts: 5
Joined: Dec 2008
Reputation: 0
Post: #19
RE: Can't send Email via smtp
(01-30-2009 04:33 PM)joximu Wrote:  ok, rename this file.
we often have problems when the file exists (postfix has its own routines for saslauth there is no need for an external daemon).
Restart postfix and test...
if ok, you can delete the smtpd.conf... :-)

But also look in the /etc/postfix/master.cf about the "fatal" line in the logfile...

/J


Perfect... now, working !!!

Thanks joximu.
03-16-2009 11:20 AM
Find all posts by this user Quote this message in a reply
unpankele Offline
Banned

Posts: 1
Joined: Oct 2011
Post: #20
How to make a website
Figure out the finest process which will develop a website step-by-step beginning from how you can set it up on Photo shop, silce after that it submitted also am with instructions on the easiest way to make skins and employ DotNetNuke all this via training videos in my little Video Tutorials Site.
10-29-2011 11:01 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)