From owner-freebsd-questions@FreeBSD.ORG Thu Mar 23 17:23:11 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D38DD16A400 for ; Thu, 23 Mar 2006 17:23:11 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id A26DB43D5A for ; Thu, 23 Mar 2006 17:23:10 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id DDF6B5D9C; Thu, 23 Mar 2006 12:23:09 -0500 (EST) Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20745-08; Thu, 23 Mar 2006 12:23:03 -0500 (EST) Received: from [199.103.21.238] (pan.codefab.com [199.103.21.238]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 1B2955C82; Thu, 23 Mar 2006 12:23:03 -0500 (EST) In-Reply-To: <20060323082835.A9959@aslan.camp.com> References: <20060323082835.A9959@aslan.camp.com> Mime-Version: 1.0 (Apple Message framework v746.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <018BE64B-AF82-47FE-8A01-FC56BC95EEC9@mac.com> Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Thu, 23 Mar 2006 12:22:59 -0500 To: Steve Camp X-Mailer: Apple Mail (2.746.3) X-Virus-Scanned: amavisd-new at codefab.com Cc: "freebsd-questions@freebsd.org List" Subject: Re: e-mail relaying without forwarding the entire message? 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: Thu, 23 Mar 2006 17:23:11 -0000 On Mar 23, 2006, at 10:28 AM, Steve Camp wrote: > The conversation that I envision would look something like: > > -> MAIL FROM: > <- 250 2.1.0 Sender ok > -> RCPT TO: > <- XYZ X.W.V Go See someotherserver.otherdomain.com for > > > Is such a redirection possible? > Is it hard to configure? Yes, it's possible, and no, it's fairly easy to configure. You want: FEATURE(redirect) ...if using sendmail, which does: redirect Reject all mail addressed to "address.REDIRECT" with a ``551 User has moved; please try
'' message. If this is set, you can alias people who have left to their new address with ".REDIRECT" appended. -- -Chuck