From owner-freebsd-questions@FreeBSD.ORG Sat Jun 4 13:59:11 2005 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 B68FA16A41C for ; Sat, 4 Jun 2005 13:59:11 +0000 (GMT) (envelope-from jtrigg@spamcop.net) Received: from argent.heraldsnet.org (argent.heraldsnet.org [64.83.41.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 689CA43D48 for ; Sat, 4 Jun 2005 13:59:11 +0000 (GMT) (envelope-from jtrigg@spamcop.net) Received: from [192.168.1.4] (unknown [192.168.1.4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by argent.heraldsnet.org (Postfix) with ESMTP id 7833A872; Sat, 4 Jun 2005 09:59:10 -0400 (EDT) Message-ID: <42A1B3A4.3040708@spamcop.net> Date: Sat, 04 Jun 2005 09:59:00 -0400 From: Jim Trigg User-Agent: Mozilla Thunderbird 1.0.2 (Macintosh/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: racielprz@minsap.pri.sld.cu, freebsd-questions@freebsd.org References: <1498.192.168.41.1.1117860784.squirrel@192.168.41.1> In-Reply-To: <1498.192.168.41.1.1117860784.squirrel@192.168.41.1> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: Postfix Problem (urgent) 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, 04 Jun 2005 13:59:11 -0000 Raciel Perez Hernandez wrote: > Helo list I have postfix installed and working, it only have a problem, I > connect to internet trougth a leased line of 144Kbs but this line > sometimes gets unstable and goes down, so if the connection is down and > somebody try to send a message, postfix tells me (Server replied: 450 > : Recipient address rejected: Domain not found) > and reject the message, I put this two lines on the main.cf file without > any results disable_dns_lookups=yes and deffer_transport=smtp but postfix > do not hear me, I need postfix put mail on the queue even if is connected > or not, rigth now it represent a big problem to me Best Regards. > There is my main.cf file. > > smtpd_recipient_restrictions = > reject_invalid_hostname, > reject_non_fqdn_sender, > reject_non_fqdn_recipient, > reject_unknown_sender_domain, > reject_unknown_recipient_domain, > check_sender_access proxy:mysql:/etc/postfix/mysql-sender-access.cf, > permit_sasl_authenticated, permit_mynetworks, > # reject_unauth_destination, > # permit_sasl_authenticated, > reject_unauth_pipelining, > reject The problem is the order of your recipient restrictions. Move permit_sasl_authenticated and permit_mynetworks above reject_unknown_sender_domain. Jim