From owner-freebsd-questions@FreeBSD.ORG Wed Jun 13 02:58:32 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED05C16A46E for ; Wed, 13 Jun 2007 02:58:32 +0000 (UTC) (envelope-from on@cs.ait.ac.th) Received: from mail.cs.ait.ac.th (mail.cs.ait.ac.th [192.41.170.16]) by mx1.freebsd.org (Postfix) with ESMTP id 6AEAE13C4B0 for ; Wed, 13 Jun 2007 02:58:32 +0000 (UTC) (envelope-from on@cs.ait.ac.th) Received: from banyan.cs.ait.ac.th (banyan.cs.ait.ac.th [192.41.170.5]) by mail.cs.ait.ac.th (8.13.1/8.12.11) with ESMTP id l5D2wIFS079440 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 13 Jun 2007 09:58:18 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id l5D2wGXT017437; Wed, 13 Jun 2007 09:58:16 +0700 (ICT) Date: Wed, 13 Jun 2007 09:58:16 +0700 (ICT) Message-Id: <200706130258.l5D2wGXT017437@banyan.cs.ait.ac.th> From: Olivier Nicole To: jhfoo-ml@extracktor.com In-reply-to: <466EBC05.3020202@extracktor.com> (message from Foo JH on Tue, 12 Jun 2007 23:30:13 +0800) References: <466CB2DF.30808@extracktor.com> <9ADFB3BA-F02E-458D-80C1-2F13EAC769EF@mac.com> <466E695E.8030300@extracktor.com> <200706120949.l5C9nrPB088807@banyan.cs.ait.ac.th> <466EBC05.3020202@extracktor.com> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: freebsd-questions-local@be-well.ilk.org, freebsd-questions@freebsd.org Subject: Re: Shorten delay in sending mail to SMTP 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: Wed, 13 Jun 2007 02:58:33 -0000 > Can anyone confirm that Qmail/ inetd/ FreeBSD does some form of dns > lookup on it's SMTP? It most certainly does, that would be configurable, but you can confirm that by yourself: look at the full headers of the email you receive, you should see some headers saying something like: Received: from mx2.freebsd.org (mx2.freebsd.org [69.147.83.53]) by mail.cs.ait.ac.th (8.13.1/8.12.11) with ESMTP id l5CFXURR030909 for ; Tue, 12 Jun 2007 22:33:34 +0700 (ICT) Now consider the top most of the Received-by headers, this top most one has been generated by your qmail server. Does it have an IP address associated to the the name of the sending machine (mx2.freebsd.org [69.147.83.53])? If yes, it means qmail did some DNS resolving. bests, Olivier