From owner-freebsd-questions@FreeBSD.ORG Sun Aug 17 09:58:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF026106564A for ; Sun, 17 Aug 2008 09:58:38 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id 4CF288FC08 for ; Sun, 17 Aug 2008 09:58:38 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (adsl11-42.kln.forthnet.gr [77.49.138.42]) (authenticated bits=128) by igloo.linux.gr (8.14.3/8.14.3/Debian-5) with ESMTP id m7H9wCRq019384 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 17 Aug 2008 12:58:18 +0300 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.2/8.14.2) with ESMTP id m7H9wBs2003085; Sun, 17 Aug 2008 12:58:11 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.2/8.14.2/Submit) id m7H9w9eO003084; Sun, 17 Aug 2008 12:58:09 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: "Tom Stuart" References: <5cdef660808151349j462df140pcec0d76109ac17b3@mail.gmail.com> <6.0.0.22.2.20080815192128.024bf890@mail.computinginnovations.com> <5cdef660808151749n722a5b92ufcf85e59b1e0b4b@mail.gmail.com> <871w0pqtw7.fsf@kobe.laptop> <5cdef660808161527y96510dfte86e08a5dbc7a9e2@mail.gmail.com> Date: Sun, 17 Aug 2008 12:58:08 +0300 In-Reply-To: <5cdef660808161527y96510dfte86e08a5dbc7a9e2@mail.gmail.com> (Tom Stuart's message of "Sat, 16 Aug 2008 16:27:50 -0600") Message-ID: <87wsignetr.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-MailScanner-ID: m7H9wCRq019384 X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-2.485, required 5, ALL_TRUSTED -1.80, AWL -0.78, BAYES_00 -2.60, WHOIS_CONTACTPRIV 2.70) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org, Derek Ragona Subject: Re: Sendmail email delays X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2008 09:58:38 -0000 On Sat, 16 Aug 2008 16:27:50 -0600, "Tom Stuart" wrote: > Here are my diffs for the files as requested. I'm thinking the actual > issue may lay in my submit.mc configuration. Right now I have just the > base file as I've tried editing it to no success so I changed it back > to normal. I "assumed" you had to edit this line. I'll also note that > the "smarthost" is a Windows 2003 Server running Exchange, relaying is > enable > > FEATURE(`msp', `[127.0.0.1]')dnl > > and change the value to 10.0.0.2(which is the Smarthost IP), > > The Diffs: > > firewall-1# diff freebsd.mc firewall-1.xxx.com.mc > 77c77 > < dnl define(`SMART_HOST', `your.isp.mail.server') > --- >> define(`SMART_HOST', `smtp.xxx.com') > firewall-1# > firewall-1# diff freebsd.submit.mc firewall-1.xxx.com.submit.mc > firewall-1# Hmmm. Then this is probably the problem... If the remote server is an Exchange system, I am not sure if using it as an MSP in `submit.mc' is supposed to work. Try resetting the `msp' value in `submit.mc' to: FEATURE(`msp', `[127.0.0.1]')dnl and set `SMART_HOST' in `firewall-1.xxx.com.mc' (not in the `firewall-1.xxx.com.submit.mc' file): define(`SMART_HOST', `smtp.xxx.com') Then you should enable the `submit' and `msp_queue' sendmail processes in `/etc/rc.conf' too: sendmail_enable="NO" sendmail_outbound_enable="NO" sendmail_submit_enable="YES" sendmail_msp_queue_enable="YES"