From nobody Thu Dec 01 23:58:25 2022 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4NNY1b2GvWz4jk9b for ; Thu, 1 Dec 2022 23:58:27 +0000 (UTC) (envelope-from iio7@tutanota.com) Received: from w1.tutanota.de (w1.tutanota.de [81.3.6.162]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits)) (Client CN "mail.tutanota.de", Issuer "Sectigo RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4NNY1Z2y6rz3wG4 for ; Thu, 1 Dec 2022 23:58:26 +0000 (UTC) (envelope-from iio7@tutanota.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=tutanota.com header.s=s1 header.b="yej/vyfO"; spf=pass (mx1.freebsd.org: domain of iio7@tutanota.com designates 81.3.6.162 as permitted sender) smtp.mailfrom=iio7@tutanota.com; dmarc=pass (policy=quarantine) header.from=tutanota.com Received: from tutadb.w10.tutanota.de (unknown [192.168.1.10]) by w1.tutanota.de (Postfix) with ESMTP id 961C4FA0EA0; Thu, 1 Dec 2022 23:58:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1669939105; s=s1; d=tutanota.com; h=From:From:To:To:Subject:Subject:Content-Description:Content-ID:Content-Type:Content-Type:Content-Transfer-Encoding:Content-Transfer-Encoding:Cc:Cc:Date:Date:In-Reply-To:In-Reply-To:MIME-Version:MIME-Version:Message-ID:Message-ID:Reply-To:References:References:Sender; bh=MkZxO+QllAKpQprWHfuMRGfb2+D1JCGitlj56qnwJz8=; b=yej/vyfO7VOh9Gnrw4yZ+JX4Hx992m6jSFbZyWKzaRLhB2DWuhpCV7v1C5rGXZdX pxy+UCGs1N757OKN331gGJ5p3kd/zJgYcg2sho3H3ka/8xrt5uqmlsHdi1sPTnO0jZ9 7XdYb+pea6FExcdMtXWRRcHssPgoQySYdDI+cblN3jTkuBgI506W70LFxPviPgFVQRI DFmNdLSJ+VCT8l9scK0mN0MMc1XUIkxs2cKmPq4x9ylgNi9/2ng/5urKAshlScNSNwD 6/w5mweKUSv6DGs8LsaTFgi8SVC1jexHGEe+v1FUy4VVJkReT4PkhJqZ1gs5qqd8JqU FmFRgpB91A== Date: Fri, 2 Dec 2022 00:58:25 +0100 (CET) From: iio7@tutanota.com To: Freebsd Cc: Freebsd Questions Message-ID: In-Reply-To: <0ac821e1-2b78-b1e1-9b6e-399d55deb051@qeng-ho.org> References: <0ac821e1-2b78-b1e1-9b6e-399d55deb051@qeng-ho.org> Subject: Re: What is this sm-mta? List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spamd-Result: default: False [-2.92 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; SUBJECT_ENDS_QUESTION(1.00)[]; NEURAL_HAM_SHORT(-0.92)[-0.922]; DMARC_POLICY_ALLOW(-0.50)[tutanota.com,quarantine]; R_DKIM_ALLOW(-0.20)[tutanota.com:s=s1]; R_SPF_ALLOW(-0.20)[+ip4:81.3.6.160/28]; MIME_GOOD(-0.10)[text/plain]; ARC_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:24679, ipnet:81.3.0.0/18, country:DE]; RCVD_TLS_LAST(0.00)[]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; FROM_NO_DN(0.00)[]; RCPT_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_SOME(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[tutanota.com:+]; RCVD_COUNT_TWO(0.00)[2] X-Rspamd-Queue-Id: 4NNY1Z2y6rz3wG4 X-Spamd-Bar: -- X-ThisMailContainsUnwantedMimeParts: N Nov 26, 2022, 14:18 by freebsd@qeng-ho.org: > On 25/11/2022 19:07, iio7@tutanota.com wrote: > >> I have the following options set in /etc/rc.conf >> >> sendmail_enable="NO" >> sendmail_msp_queue_enable="NO" >> >> Yet I keep seeing a lot of sendmail activitity in /var/log/maillog: >> > > To shut sendmail off completely you want > > sendmail_enable="NONE" > According to the documentation "NONE" is deprecated. The current setting to completely disable Sendmail is, as Kurt wrote, the following 4 lines: sendmail_enable="NO"sendmail_msp_queue_enable="NO"sendmail_submit_enable="NO"sendmail_outbound_enable="NO" Kind regards.