From patchwork Sun May 17 15:58:21 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mirko Langisch X-Patchwork-Id: 473184 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id C057314077A for ; Mon, 18 May 2015 02:09:13 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A6559876E7; Sun, 17 May 2015 16:09:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YqxnqM_6J2jq; Sun, 17 May 2015 16:09:10 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1818887D4F; Sun, 17 May 2015 16:09:10 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id CBFA11C100A for ; Sun, 17 May 2015 16:09:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CB4888B4E9 for ; Sun, 17 May 2015 16:09:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3jtEUlwrR--D for ; Sun, 17 May 2015 16:09:08 +0000 (UTC) X-Greylist: delayed 00:05:02 by SQLgrey-1.7.6 Received: from nerdpunx.net (nerdpunx.net [130.255.185.203]) by whitealder.osuosl.org (Postfix) with ESMTPS id D3B708B59B for ; Sun, 17 May 2015 16:09:07 +0000 (UTC) Received: from sama32.homenet.org ([2a02:2450:102f:463:dcab:1a51:5c18:7914]) (AUTH: PLAIN mailout, TLS: TLSv1/SSLv3, 256bits, DHE-RSA-AES256-SHA) by nerdpunx.net with ESMTPSA; Sun, 17 May 2015 18:04:02 +0200 id 0000000002E81645.000000005558BBF3.00004CD8 Received: from sama32.homenet.org ([::1]) by sama32.homenet.org with SMTP; Sun, 17 May 2015 17:59:00 +0200 id 00000000032801C1.000000005558BAC4.00001954 Received: by sama32.homenet.org (sSMTP sendmail emulation); Sun, 17 May 2015 17:59:00 +0200 From: Mirko Langisch To: buildroot@buildroot.org Date: Sun, 17 May 2015 17:58:21 +0200 Message-Id: <1431878301-13745-1-git-send-email-pud@nerdpunx.net> X-Mailer: git-send-email 2.4.0 Cc: Mirko Langisch Subject: [Buildroot] [PATCH 1/1] exim: enable plaintext and cram-md5 authenticators X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Mirko Langisch Acked-by: Bernd Kuhls --- package/exim/exim.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/exim/exim.mk b/package/exim/exim.mk index ed309de..b852793 100644 --- a/package/exim/exim.mk +++ b/package/exim/exim.mk @@ -46,6 +46,8 @@ define EXIM_USE_DEFAULT_CONFIG_FILE $(call exim-config-change,PCRE_CONFIG,no) $(call exim-config-change,HAVE_ICONV,no) $(call exim-config-unset,EXIM_MONITOR) + $(call exim-config-change,AUTH_PLAINTEXT,yes) + $(call exim-config-change,AUTH_CRAM_MD5,yes) endef ifeq ($(BR2_PACKAGE_DOVECOT),y)