From owner-freebsd-questions@FreeBSD.ORG Sat Dec 8 20:21:42 2007 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 1469216A41A for ; Sat, 8 Dec 2007 20:21:42 +0000 (UTC) (envelope-from cptsalek@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.freebsd.org (Postfix) with ESMTP id 9030113C4CE for ; Sat, 8 Dec 2007 20:21:41 +0000 (UTC) (envelope-from cptsalek@gmail.com) Received: by ug-out-1314.google.com with SMTP id y2so2024067uge for ; Sat, 08 Dec 2007 12:21:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=qd4PnHCGtW7x78j3H7yZwNwdzGmtMqeGMTpxKsOGiuQ=; b=x66Va1fAdy81SvygIJc2hNVkrI0FaPyTQIxlRY616ypvXt0+FHrbxrN5zaBdbU4Jh8kdUkPH+T68SxbSmlAS8KGYDBSLKl7G2KdiBcSjzcIMXT6xKpeEsro4k4m1H0S1J9oCdnrrCAv7DVQGxHYgfcMzUsAD2P64RJB9GL2FG9w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=D+NG74Y6gs9rBfcOqUGNa33sjh/6eZU9kZPwNDb77uQg+MNAANGzwmifLoiDz/AmWXsSYmrfpqjqFHb94TdB8++xUtJms+E6cEPANRtUanycz/iPsD+GTf1WxBTmzD+IFS6CuvfA5rDRIlztYTYfRBTT2piJTNIlW+n0gygrGmM= Received: by 10.66.243.13 with SMTP id q13mr4358660ugh.1197145300242; Sat, 08 Dec 2007 12:21:40 -0800 (PST) Received: by 10.66.222.19 with HTTP; Sat, 8 Dec 2007 12:21:40 -0800 (PST) Message-ID: <14989d6e0712081221s7997cbb6jfafcc7a0ccb6d2b2@mail.gmail.com> Date: Sat, 8 Dec 2007 20:21:40 +0000 From: "Christian Walther" To: jekillen In-Reply-To: <31322205af1848d55900544163c31dd3@prodigy.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <31322205af1848d55900544163c31dd3@prodigy.net> Cc: User Questions Subject: Re: relay host in sendmail? 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: Sat, 08 Dec 2007 20:21:42 -0000 Hi, On 08/12/2007, jekillen wrote: > Hello: > I am using Absolute BSD, Second Ed. > and am looking in the section on Sendmail. > I cannot find where to specify a relay host. > I have a hosts that originate mail to remote > recipients but use a mail hub (Postfix) on > another machine on local network to > relay this mail to the outside. It is not spam. > These messages will be used to verify web > client supplied e-mail addresses. > Thank you in advance; > Jeff K > you can specify a smart host in sendmail.mc (or the mc-file created for your host). The macro you need is already in there, you just need to uncomment it. It's something like: dnl Dialup users should uncomment and define this appropriately define(`SMART_HOST', `your.relay.host') where your.relay.host is the hostname of your relay, respectively. There's an alternative called the "nullhost", which just sends mail to a relay. The host won't be able to receive mails, though: FEATURE(`nullclient',`your.relay.host') HTH Christian PS: There are some