send mail error

Post feedback about our hosted demo or your local install. Tell us what you love and/or what you’d like to see added in the future.
Post Reply
rmvg
Outstanding Member
Outstanding Member
Posts: 208
Joined: Fri Sep 12, 2014 9:54 pm

send mail error

Post by rmvg »

Having trouble sending mail i get this error
THIS MESSAGE HAS BEEN EDITED
msg - Message not sent to any recipients because of these failed addresses:

code - mail.SEND_FAILURE

method - ZmCsfeCommand.invoke

detail - soap:Sender

constructor -

function ZmCsfeException(msg, code, method, detail) {

if (arguments.length == 0) {

return;

}

AjxException.call(this, msg, code, method, detail);

}
toString -

function () {

return "ZmCsfeException";

}
dump -

function () {

return "AjxException: msg=" + this.msg + " code=" + this.code + " method=" + this.method + " detail=" + this.detail;

}
msg - Message not sent to any recipients because of these failed addresses:

code - mail.SEND_FAILURE

method - ZmCsfeCommand.invoke

detail - soap:Sender

constructor -

function ZmCsfeException(msg, code, method, detail) {

if (arguments.length == 0) {

return;

}

AjxException.call(this, msg, code, method, detail);

}
toString -

function () {

return "ZmCsfeException";

}
dump -

function () {

return "AjxException: msg=" + this.msg + " code=" + this.code + " method=" + this.method + " detail=" + this.detail;

}
msg - Message not sent to any recipients because of these failed addresses:

code - mail.SEND_FAILURE

method - ZmCsfeCommand.invoke

detail - soap:Sender

constructor -

function ZmCsfeException(msg, code, method, detail) {

if (arguments.length == 0) {

return;

}

AjxException.call(this, msg, code, method, detail);

}
toString -

function () {

return "ZmCsfeException";

}
dump -

function () {

return "AjxException: msg=" + this.msg + " code=" + this.code + " method=" + this.method + " detail=" + this.detail;

}
This is what i get in my postfix log
Oct 2 16:17:25 mx1 postfix/smtpd[23949]: connect from mx1.canmail.org[68.146.204.153]

Oct 2 16:17:55 mx1 postfix/smtpd[23949]: warning: dict_ldap_lookup: Search error -5: Timed out

Oct 2 16:17:55 mx1 postfix/smtpd[23949]: NOQUEUE: reject: RCPT from mx1.canmail.org[68.146.204.153]: 451 : Temporary lookup failure; from= to= proto=ESMTP helo=

Oct 2 16:18:01 mx1 postfix/smtpd[10922]: connect from localhost.localdomain[127.0.0.1]

Oct 2 16:18:01 mx1 postfix/smtpd[10922]: disconnect from localhost.localdomain[127.0.0.1]

Oct 2 16:18:11 mx1 postfix/cleanup[1571]: DE826F0C63: message-id=

Oct 2 16:18:11 mx1 postfix/smtpd[23949]: disconnect from mx1.canmail.org[68.146.204.153]

Oct 2 16:18:11 mx1 postfix/qmgr[23843]: DE826F0C63: from=, size=839, nrcpt=1 (queue active)

Oct 2 16:18:11 mx1 postfix/smtp[1940]: DE826F0C63: to=, orig_to=, relay=none, delay=16, status=bounced (mail for mx1.canmail.org loops back to myself)

Oct 2 16:18:11 mx1 postfix/bounce[1949]: warning: DE826F0C63: undeliverable postmaster notification discarded

Oct 2 16:18:11 mx1 postfix/qmgr[23843]: DE826F0C63: removed

Oct 2 16:18:23 mx1 postfix/smtpd[10922]: connect from localhost.localdomain[127.0.0.1]

Oct 2 16:18:23 mx1 postfix/smtpd[10922]: disconnect from localhost.localdomain[127.0.0.1]
marcmac
Elite member
Elite member
Posts: 2091
Joined: Fri Sep 12, 2014 9:53 pm

send mail error

Post by marcmac »

There are 3 problems. You don't have a postmaster account set up, so you're not getting bounce notifications - you can add postmaster as an alias to another account, if you like - this will help debug further mail problems.
The 2nd problem is that ldap lookups are timing out - how high is the load on this server? We've seen this when the host is overloaded, at times.
The main problem, however, seems to be DNS - it appears that your host can't find a valid MX record for hotmail.com, and is refusing the message (a retryable error - 4xx error codes are non-fatal)
rmvg
Outstanding Member
Outstanding Member
Posts: 208
Joined: Fri Sep 12, 2014 9:54 pm

send mail error

Post by rmvg »

[quote user="marcmac"]There are 3 problems. You don't have a postmaster account set up, so you're not getting bounce notifications - you can add postmaster as an alias to another account, if you like - this will help debug further mail problems.
I set up a hostmaster instead of postmaster just a typo
The 2nd problem is that ldap lookups are timing out - how high is the load on this server? We've seen this when the host is overloaded, at times.
not loaded very little activity and ample hardware 1200Mhz CPU 700Mb RAM
The main problem, however, seems to be DNS - it appears that your host can't find a valid MX record for hotmail.com, and is refusing the message (a retryable error - 4xx error codes are non-fatal)[/QUOTE]
DNS is working fine and i can find hotmail.com without error see below

[rmvg@mx1 ~]$ nslookup hotmail.com

Server: 64.59.135.133

Address: 64.59.135.133#53
Non-authoritative answer:

Name: hotmail.com

Address: 64.4.33.7

Name: hotmail.com

Address: 64.4.32.7
My /etc/hosts file reads like this
# Do not remove the following line, or various programs

# that require network functionality will fail.

127.0.0.1 localhost.localdomain localhost

68.146.204.153 mx1.canmail.org mx1
Do i need to add a line for canmail.org because that is what i have called my server?

Do i need an interal address line like
192.168.0.100 canmail.org
I am stuck any ideas???
Post Reply