From owner-freebsd-questions@FreeBSD.ORG Tue Mar 10 14:43:25 2009 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 B9A491065670 for ; Tue, 10 Mar 2009 14:43:25 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 070798FC1F for ; Tue, 10 Mar 2009 14:43:24 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n2AEhD6J012833; Tue, 10 Mar 2009 15:43:13 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n2AEhC6U012830; Tue, 10 Mar 2009 15:43:13 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 10 Mar 2009 15:43:12 +0100 (CET) From: Wojciech Puchar To: Giorgos Keramidas In-Reply-To: <87ljrd7je0.fsf@kobe.laptop> Message-ID: References: <87ljrd7je0.fsf@kobe.laptop> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: sendmail limits 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: Tue, 10 Mar 2009 14:43:26 -0000 > On Tue, 10 Mar 2009 08:51:12 +0100 (CET), Wojciech Puchar wrote: >> i'm just asking for sure - do sendmail has any limits of how much >> adresses is put in CC/BCC in single mail? > > Yes, of course. There is *support* for a limit, but the default > is to accept a large number of recipients per-message: > > confMAX_RCPTS_PER_MESSAGE MaxRecipientsPerMessage > > [default: infinite] If set, allow no more than the specified > number of recipients in an SMTP envelope. Further recipients > receive a 452 error code (i.e., they are deferred for the > next delivery attempt). > > You can set this easily, by modifying `sendmail.mc' to include: > > define(`confMAX_RCPTS_PER_MESSAGE', `20') > > thank you very much. that's what i was looking for.