<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>431b9b66 - pkgbase: Put sendmail example in the sendmail package</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#431b9b66</link>
        <description>pkgbase: Put sendmail example in the sendmail packageReviewed by:	baptSponsored by:	Beckhoff Automation GmbH &amp; Co. KGDifferential Revision:	https://reviews.freebsd.org/D38297

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Tue, 31 Jan 2023 15:15:11 +0000</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a67b925f - mail: make The Dragonfly Mail Agent (dma) the default mta.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#a67b925f</link>
        <description>mail: make The Dragonfly Mail Agent (dma) the default mta.dma accepts mail from a local Mail User Agent (MUA) and delivers itlocally or to a smarthost for delivery. dma does not accept inboundmail (i.e., it does not listen on port 25) and is not intended toprovide the same functionality as a full MTA like postfix or sendmail.It is intended for use cases such as delivering cron(8) mail. whichis the default configuration and usage of sendmail in the defaultsetup of the base system.In order to switch the default from sendmail to dma, we teachmailwrapper to fallback on dma directly if the mailer.conf file cannotbe opened.We install by default a mailer.conf file which points at dmaWe install a mailer.conf file for sendmail in the examples.Relnotes:	yesDifferential Revision:	https://reviews.freebsd.org/D37035

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Thu, 13 Oct 2022 09:37:21 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3467e28f - mailwrapper: create mailwrapper symlinks for dma(8)</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#3467e28f</link>
        <description>mailwrapper: create mailwrapper symlinks for dma(8)The Dragonfy Mail Agent (dma) can be used with mailwrapper as areplacement for sendmail(8)Even if mailwrapper and sendmail are disabled from the build butdma is not create all the expect symlinks on mailwrapper and makemailwrapper a symlink to dma, the same way it was done before whenmailwrapper is disabled by sendmail was not.Discussed with:	emaste

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Tue, 18 Oct 2022 14:37:53 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>70448a54 - mailwrapper: switch mailer.conf to CONFS</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#70448a54</link>
        <description>mailwrapper: switch mailer.conf to CONFSThis matches what was already being done in dma(8), and should again makethis merge with etcupdate/mergemaster.Reported by:	jhb

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Mon, 29 Jun 2020 18:06:00 +0000</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cb99e935 - pkgbase: resolve mailer.conf conflict WITHOUT_SENDMAIL</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#cb99e935</link>
        <description>pkgbase: resolve mailer.conf conflict WITHOUT_SENDMAILWhen WITHOUT_SENDMAIL is set, we end up with two different mailer.conf thatconflict, and hilarity ensues. There&apos;s currently three different places thatwe might install mailer.conf:- ^/etc/Makefile (package=runtime, contingent on MK_MAIL != no)- ^/libexec/dma/dmagent/Makefile (package=dma, contingent on MK_SENDMAIL !=no)- ^/usr.sbin/mailwrapper/Makefile (package=utilities, contingent onnot-installed)The mailwrapper installation will effectively never happen because the ^/etcone will first.This patch simplifies the whole situation; remove the ^/etc/Makefile versionand install it primarily in mailwrapper if MK_MAILWRAPPER != &quot;no&quot;. Thescenarios covered in mailwrapper are:- sendmail(8) is installed, dma(8) may or may not be installed- neither sendmail(8) nor dma(8) is installedIn the first scenario, sendmail(8) is dominant so we can go ahead andinstall the version in ^/etc/mail. In the unlisted scenario, sendmail(8) isnot installed but dma(8) is, we&apos;ll let ^/libexec/dma/dmagent do theinstallation. In the second listed scenario, we still want to install anexample mailer.conf so just install the base sendmail(8) version.Reviewed by:	baptMFC after:	1 weekDifferential Revision:	https://reviews.freebsd.org/D24924

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Tue, 02 Jun 2020 02:38:54 +0000</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8b081eaa - Revert r326844</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#8b081eaa</link>
        <description>Revert r326844There has been some fallout from the change. The change itself was not valueableenough to spend time investigating the corner cases, let&apos;s just back it out.Reported by:	flo

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Tue, 02 Jan 2018 16:50:57 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b37b0924 - Replace usage of fparselen(3) by a getline(3)</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#b37b0924</link>
        <description>Replace usage of fparselen(3) by a getline(3)This allow to remove the dependency on libutil

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Thu, 14 Dec 2017 08:57:37 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ce9f2d31 - Convert absolute links to relative links.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#ce9f2d31</link>
        <description>Convert absolute links to relative links.Style.Makefile(9) has been ignored to produce minimal diffs.Approved by:	grehan (mentor)MFC after:	1 week

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Tue, 07 Mar 2017 05:10:38 +0000</pubDate>
        <dc:creator>Rodney W. Grimes &lt;rgrimes@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>64a0982b - usr.sbin: normalize paths using SRCTOP-relative paths or :H when possible</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#64a0982b</link>
        <description>usr.sbin: normalize paths using SRCTOP-relative paths or :H when possibleThis simplifies make logic/outputMFC after:	1 monthSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 11:38:03 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c6db8143 - Convert usr.sbin to LIBADD</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#c6db8143</link>
        <description>Convert usr.sbin to LIBADDReduce overlinking

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Tue, 25 Nov 2014 16:57:27 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c6063d0d - Use src.opts.mk in preference to bsd.own.mk except where we need stuff</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#c6063d0d</link>
        <description>Use src.opts.mk in preference to bsd.own.mk except where we need stufffrom the latter.

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Tue, 06 May 2014 04:22:01 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4f6fbcd5 - Create the /bin/rmail symlink (which mailers such as postfix</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#4f6fbcd5</link>
        <description>Create the /bin/rmail symlink (which mailers such as postfixand Exim can use).This is something I thought I committed MONTHS ago, but it appearsthat I fatfingered it and made a local commit.Pass the pointy hat, please.

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Tue, 12 Oct 2010 21:01:26 +0000</pubDate>
        <dc:creator>Mark Murray &lt;markm@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>71ccf092 - The last big commit: let usr.sbin/ use WARNS=6 by default.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#71ccf092</link>
        <description>The last big commit: let usr.sbin/ use WARNS=6 by default.

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Sat, 02 Jan 2010 11:07:44 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8fe1b8c0 - Cleanups for mailwrapper(8):</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#8fe1b8c0</link>
        <description>Cleanups for mailwrapper(8): - K&amp;R -&gt; ANSI prototype [O] - Do not bother to do free right before exit() or execve() [O] - Remove some dead code in addarg() - Make additional parameters specified in mailer.conf(5)   actually work and document the fact. [N] - Avoid using __progname but instead use getprogname()   and setprogname() to provide more sensible messages. [O, N] - Update $OpenBSD$ and $NetBSD$ to reflect the fact that we   have sync&apos;ed with their code. - WARNS=6Obtained from/Inspired by:	OpenBSD [O], NetBSD [N] (partially)

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Tue, 06 Jun 2006 05:01:12 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e1fe3dba - Reimplementation of world/kernel build options.  For details, see:</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#e1fe3dba</link>
        <description>Reimplementation of world/kernel build options.  For details, see:http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.htmlThe src.conf(5) manpage is to follow in a few days.Brought to you by:	imp, jhb, kris, phk, ru (all bugs are mine)

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Fri, 17 Mar 2006 18:54:44 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a5d15979 - Replaced afterinstall: with FILES.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#a5d15979</link>
        <description>Replaced afterinstall: with FILES.

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Mon, 18 Oct 2004 17:20:29 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ef271e58 - Do not install SYMLINKS if both NO_MAILWRAPPER and</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#ef271e58</link>
        <description>Do not install SYMLINKS if both NO_MAILWRAPPER andNO_SENDMAIL is defined.PR:		57058Reported by:	Henri Hennebert &lt;hlh@cocoon.cercle.be&gt;		Melvyn Sopacua on current@Submitted by:	ru@MFC after:	2 weeks

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Sat, 17 Jan 2004 23:58:23 +0000</pubDate>
        <dc:creator>Johan Karlsson &lt;johan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d2893b16 - Drop support for COPY, -c has been the default mode of install(1)</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#d2893b16</link>
        <description>Drop support for COPY, -c has been the default mode of install(1)for a long time now.Approved by:	bde

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Mon, 29 Jul 2002 09:40:17 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2632dac8 - If NO_MAILWRAPPER is set, and sendmail is still enabled, then install</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/mailwrapper/Makefile#2632dac8</link>
        <description>If NO_MAILWRAPPER is set, and sendmail is still enabled, then installa direct symlink to sendmail.

            List of files:
            /freebsd-14.2/usr.sbin/mailwrapper/Makefile</description>
        <pubDate>Wed, 24 Jul 2002 22:17:22 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
