here goes:
> Hi, thank you for the reply.
> > Let me see if I understand. You want to send mail from you solaris boxes
> to
> > your exchange server? If you insist on sendmail, try setting up a
internal
> > dns, or even better, only use IP addresses when refering to machines
when
> > configuring sendmail.
> I do not want to setup internal dns. (there is some polictics in the
> company)
> Instead, I'd like to know how to configure sendmail only to use IP
> addresses. Can you give me a pointer?
From the sendmail FAQ: http://www.sendmail.org/faq/
Q3.22 -- How do I configure sendmail not to use DNS?
Date: March 24, 1997
Updated: April 6, 2000
In situations where you're behind a firewall, or across a dial-up line,
there are times when you need to make sure that programs (such as sendmail)
do not use the DNS at all.
With older releases of version 8 sendmail (8.7 and earlier), you need to
recompile the binary and make sure that "NAMED_BIND" is turned off in
src/conf.h.
With versions 8.8 and later, you change the service switch file to omit
"DNS" and use only NIS, files, and other map types as appropriate. More
information about the service switch file can be found under the
ServiceSwitchFile option in 5.6 (Options) of the Installation and Operation
Guide and all of 4.9 (Name Server Access).
Also, starting with 8.9, it may help to include the following in your .mc
file:
FEATURE(`accept_unresolvable_domains')dnl
FEATURE(`accept_unqualified_senders')dnl
Note that you'll need to forward all your outbound mail to another machine
as a "relay" (one that does use DNS, and understands how to properly use MX
records, etc...), otherwise you won't be able to get mail to any site(s)
other than the one(s) you configure in your /etc/hosts file (or whatever).
See the appropriate section for your version.
Quote:> > I guess my question is, why do you need sendmail? Exchange server can
> handle
> > legacy clients with SMTP, POP3 and IMAP interfaces. Just set up your
> solaris
> > desktops (if you have any) to use the exchange server as a mail server.
> And
> You mean I can use Solaris Gui based mailtool to go to Exchange, right? My
> final goal is sending mails programatically without X Windows. Is it
> possible to do so using those mailtool?
I know that pine can use IMAP, so that's one option. I don't know about
mailtool, maybe someone else can help you with it. I hope this answers your
question, email me if it doesn't and I'll try to answer more clearly.
Jason
Quote:> Thank you!
> poseidon