Zimbra offers Open Source email server software and shared calendar for Linux and the Mac
 
Go Back   Zimbra - Forums > Zimbra Collaboration Suite > Administrators

Welcome to the Zimbra - Forums!
Welcome, if you would like to post a comment please register. We also encourage you to explore all things Zimbra with our team and members of the community.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-13-2009, 03:14 AM
Active Member
 
Posts: 25
Default message in /var/spool

I have logged installed but still the report are not received, manullay sending them are not delivered in the admin account while in /var/spool i receive the following:

Reporting-MTA: dns; mbzimbra.domain.com
Received-From-MTA: DNS; localhost.localdomain
Arrival-Date: Tue, 13 Oct 2009 11:34:55 +0300

Final-Recipient: RFC822; admin@domain.com
Action: failed
Status: 5.7.1
Remote-MTA: DNS; mtazimbra.domain.com
Diagnostic-Code: SMTP; 554 5.7.1 <zimbra@mbzimbra.domain.com>: Sender address rejected: Access denied
Last-Attempt-Date: Tue, 13 Oct 2009 11:34:55 +0300

--n9D8YtmP009273.1255422895/mbzimbra.domain.com
Content-Type: message/rfc822

Return-Path: <zimbra@mbzimbra.domain.com>
Received: from localhost.localdomain (localhost.localdomain [127.0.0.1])
by mbzimbra.domain.com (8.13.1/8.13.1) with ESMTP id n9D8YtmP009270
for <admin@domain.com>; Tue, 13 Oct 2009 11:34:55 +0300
Date: Tue, 13 Oct 2009 11:34:55 +0300
Message-Id: <200910130834.n9D8YtmP009270@mbzimbra.domain.com >
Subject: Daily mail report from 2009-10-12 00:00:00 to 2009-10-13 00:00:00
X-Mailer: Mail::Mailer[v2.03] Net::SMTP[v2.31]
To: admin@domain.com
From: admin@domain.com

Can anyone please help me..

I am new to zimbra,linux ....would be thankful for ur help...
Reply With Quote
  #2 (permalink)  
Old 10-13-2009, 03:22 AM
Elite Member
 
Posts: 369
Default

Error says
> zimbra@mbzimbra.domain.com>: Sender address rejected: Access denied

Do you really have domain with name mbzimbra.domain.com ? It seems to be taking the hostname in domain part which you would like to change to correct one.
Reply With Quote
  #3 (permalink)  
Old 10-13-2009, 03:49 AM
Active Member
 
Posts: 25
Question

It is taking the hostname..CAn i know where to make the changes?
Reply With Quote
  #4 (permalink)  
Old 10-13-2009, 05:25 AM
Active Member
 
Posts: 32
Default

Quote:
Originally Posted by chelea View Post
Return-Path: <zimbra@mbzimbra.domain.com>
Received: from localhost.localdomain (localhost.localdomain [127.0.0.1])
by mbzimbra.domain.com (8.13.1/8.13.1) with ESMTP id n9D8YtmP009270
for <admin@domain.com>; Tue, 13 Oct 2009 11:34:55 +0300
It looks like sendmail is running on your system. RedHat? Try:

/etc/init.d/sendmail stop
chkconfig sendmail off

Now, restart Zimbra and see if something is listening on port 25:

/etc/init.d/zimbra restart
netstat -atn | grep LISTEN | grep ":25"

You may have to reconfigure Zimbra if the MTA isn't listening on port 25.

Didn't you get any warnings during installation about port 25 and perhaps some other ports?
__________________
Menno Pieters
IGI Group
Reply With Quote
  #5 (permalink)  
Old 10-14-2009, 01:45 AM
Active Member
 
Posts: 25
Default

Quote:
Originally Posted by menno.pieters View Post
It looks like sendmail is running on your system. RedHat? Try:

/etc/init.d/sendmail stop
chkconfig sendmail off

Now, restart Zimbra and see if something is listening on port 25:

/etc/init.d/zimbra restart
netstat -atn | grep LISTEN | grep ":25"

You may have to reconfigure Zimbra if the MTA isn't listening on port 25.

Didn't you get any warnings during installation about port 25 and perhaps some other ports?
netstat -atn | grep LISTEN | grep ":25" returns :
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN

how can I check if send mail is running?
Reply With Quote
  #6 (permalink)  
Old 10-14-2009, 01:55 AM
Active Member
 
Posts: 32
Default

Well, the message header shows a certain version number that really is something sendmail inserts... Definitely not Postfix (Zimbra).

To see if sendmail is running:

ps auwwx | grep sendmail

But if you just run "service sendmail stop" or "/etc/init.d/sendmail stop" it will stop... Then, run "chkconfig sendmail off" to make sure it will not start at boot time again.
__________________
Menno Pieters
IGI Group
Reply With Quote
  #7 (permalink)  
Old 10-14-2009, 02:02 AM
Active Member
 
Posts: 25
Default

Quote:
Originally Posted by menno.pieters View Post
Well, the message header shows a certain version number that really is something sendmail inserts... Definitely not Postfix (Zimbra).

To see if sendmail is running:

ps auwwx | grep sendmail

But if you just run "service sendmail stop" or "/etc/init.d/sendmail stop" it will stop... Then, run "chkconfig sendmail off" to make sure it will not start at boot time again.
On MTA
ps auwwx | grep sendmail
root 15728 0.0 0.0 5476 652 pts/1 S+ 10:39 0:00 grep sendmail

ON Mailbox

ps auwwx | grep sendmail
root 6618 0.0 0.0 10316 2144 ? Ss Sep28 0:00 sendmail: accepting connections
smmsp 6627 0.0 0.0 6800 1620 ? Ss Sep28 0:00 sendmail: Queue runner@01:00:00 for /var/spool/clientmqueue
root 19162 0.0 0.0 5108 656 pts/2 S+ 10:46 0:00 grep sendmail
sorry about my ignorance i was not able this
Reply With Quote
  #8 (permalink)  
Old 10-14-2009, 02:04 AM
Active Member
 
Posts: 32
Default

So, no sendmail running, you just see the grep command. Is anything listening on port 25 now?

netstat -rn | grep LISTEN | grep :25
__________________
Menno Pieters
IGI Group
Reply With Quote
  #9 (permalink)  
Old 10-14-2009, 02:09 AM
Active Member
 
Posts: 25
Default

Quote:
Originally Posted by menno.pieters View Post
So, no sendmail running, you just see the grep command. Is anything listening on port 25 now?

netstat -rn | grep LISTEN | grep :25
Nothign is returned when netstat -rn | grep LISTEN | grep :25
Reply With Quote
  #10 (permalink)  
Old 10-14-2009, 02:12 AM
Active Member
 
Posts: 32
Default

Sorry, my fault... Should be:

netstat -atn | grep LISTEN | grep :25

The result should look like:

tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN

...if anything is listen.
__________________
Menno Pieters
IGI Group
Reply With Quote
Reply


Thread Tools
Display Modes


Similar Threads

Why Join?

Registering let's you ask questions, makes it easier to search, displays any files attached to posts, and notifies you about replies.

Zimbrablog.com




 

Search Engine Optimization by vBSEO 3.1.0