Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems getting sendmail to relay to exchange.

Status
Not open for further replies.

Albion

IS-IT--Management
Aug 8, 2000
517
US
I am trying to get sendmail to relay email to my local exchange server. For some reason it's not doing anything with the e-mail onace it comes into the sendmail SMTP server.

Here is my Access database

Code:
localhost.localdomain           RELAY
localhost                       RELAY
127.0.0.1                       RELAY
hamprecision.com                RELAY
10.168.36                       RELAY
10.168.36.6                     RELAY

Here is my mailertable

Code:
hamprecision.com        esmtp:[10.168.36.6]

Here is my sendmail.cf

Code:
divert(-1)
dnl This is the sendmail macro config file. If you make changes to this file,
dnl you need the sendmail-cf rpm installed and then have to generate a
dnl new /etc/sendmail.cf by running the following command:
dnl
dnl        m4 /etc/mail/sendmail.mc > /etc/sendmail.cf
dnl
include(`/usr/lib/sendmail-cf/m4/cf.m4')
VERSIONID(`linux setup for Red Hat Linux')dnl
OSTYPE(`linux')
define(`confDEF_USER_ID',``8:12'')dnl
undefine(`UUCP_RELAY')dnl
undefine(`BITNET_RELAY')dnl
define(`confAUTO_REBUILD')dnl
define(`confTO_CONNECT', `1m')dnl
define(`confTRY_NULL_MX_LIST',true)dnl
define(`confDONT_PROBE_INTERFACES',true)dnl
define(`PROCMAIL_MAILER_PATH',`/usr/bin/procmail')dnl
define(`ALIAS_FILE', `/etc/aliases')dnl
dnl define(`STATUS_FILE', `/etc/mail/statistics')dnl
define(`UUCP_MAILER_MAX', `2000000')dnl
define(`confUSERDB_SPEC', `/etc/mail/userdb.db')dnl
define(`confPRIVACY_FLAGS', `authwarnings,novrfy,noexpn,restrictqrun')dnl
dnl define(`confAUTH_OPTIONS', `A')dnl
dnl TRUST_AUTH_MECH(`DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
dnl define(`confAUTH_MECHANISMS', `DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
dnl define(`confTO_QUEUEWARN', `4h')dnl
dnl define(`confTO_QUEUERETURN', `5d')dnl
dnl define(`confQUEUE_LA', `12')dnl
dnl define(`confREFUSE_LA', `18')dnl
dnl FEATURE(delay_checks)dnl
FEATURE(`no_default_msa',`dnl')dnl
FEATURE(`smrsh',`/usr/sbin/smrsh')dnl
FEATURE(`mailertable',`hash -o /etc/mail/mailertable.db')dnl
FEATURE(`virtusertable',`hash -o /etc/mail/virtusertable.db')dnl
FEATURE(redirect)dnl
FEATURE(always_add_domain)dnl
FEATURE(use_cw_file)dnl
FEATURE(use_ct_file)dnl
FEATURE(local_procmail,`',`procmail -t -Y -a $h -d $u')dnl
FEATURE(`access_db',`hash -o /etc/mail/access.db')dnl
FEATURE(`blacklist_recipients')dnl
EXPOSED_USER(`root')dnl
dnl This changes sendmail to only listen on the loopback device 127.0.0.1
dnl and not on any other network devices. Comment this out if you want
dnl to accept email over the network.
dnl DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')
dnl NOTE: binding both IPv4 and IPv6 daemon to the same port requires
dnl       a kernel patch
dnl DAEMON_OPTIONS(`port=smtp,Addr=::1, Name=MTA-v6, Family=inet6')
dnl We strongly recommend to comment this one out if you want to protect
dnl yourself from spam. However, the laptop and users on computers that do
dnl not have 24x7 DNS do need this.
FEATURE(`accept_unresolvable_domains')dnl
dnl FEATURE(`relay_based_on_MX')dnl
MAILER(smtp)dnl
MAILER(procmail)dnl
Cwlocalhost.localdomain

Here are the maillog logs when an email ment to be relayed comes into the linux sendmail server.

Code:
Jul  5 08:01:12 server sendmail[11342]: j65D1BV11342: from=<craig.manske@stanektool.com>, size=763, class=0, nrcpts=0, msgid=<E86E25A242471F498EFD35C6F63B7088119077@dantooine.stanek.domain>, proto=ESMTP, daemon=MTA, relay=[216.47.252.86]
Jul  5 08:01:12 server sendmail[11342]: j65D1BV11342: to=<ldempsey@hamprecision.com>, delay=00:00:01, mailer=esmtp, pri=763, dsn=4.4.3, stat=queued

Does anyone have any idea why it isn't relaying?

Thanks

-Craig


 
So I realize now that I had the wrong DNS server in /etc/resolv.conf. Once I set that correctly it started to send the mail to the exchange server. No I have a problem where the exchange server is giving me a

Code:
Jul  5 08:39:26 server sendmail[11429]: j65DdKs11427: to=<info@hamprecision.com>, delay=00:00:06, xdelay=00:00:05, mailer=esmtp, pri=30736, relay=[10.168.36.6] [10.168.36.6], dsn=5.7.1, stat=User unknown

Any ideas?

-Craig
 
While this is the wrong group for your second question, are you sure there is a user with "info@hamprecision.com" as an assigned email address? Can you send mail to "info@hamprecision.com" within your Exchange organization?
 
I figured out the problem. It turns out that I needed to allow a relay for my local domain in the Exchange virtual SMTP server. Everything is working great now.

I do apologize for not asking in the correct place, but since many software packages have started to becomes integrated together in an environment it's difficult to draw the line between which software is at fault. So I feel it better to ask the entire question in multiple groups dealing with both software packages. Remember, not everyone uses JUST sendmail these days, and there are not Sendmail+Exchange groups.

-Craig
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top