summaryrefslogtreecommitdiff
path: root/mail/postfix/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* mail/postfix: Fix x25519 kex with LibreSSLBernard Spil2017-05-202-4/+30
| | | | | | PR: 216790 Obtained from: OpenBSD ports Approved by: ohauer (maintainer)
* - restore svn:keywordsOlli Hauer2016-10-021-1/+1
|
* mail/postfix: Fix typo in LibreSSL patchBernard Spil2016-08-301-1/+1
| | | | | | | - Fix DANE support with LibreSSL PR: 212223 Reported by: Markus Kohlmeyer <rootservice@gmail.com>
* mail/postfix: Fix runtime issues with LibreSSLBernard Spil2016-08-295-0/+102
| | | | | | | | | | | - Add LibreSSL checks to <> 1.1.0 OpenSSL checks - Bump portrevision PR: 212223 Submitted by: Markus Kohlmeier <rootservice@gmail.com> Reported by: Markus Kohlmeier <rootservice@gmail.com> Approved by: ohauer (via PR) MFH: 2016Q3
* - fix build with libressl-develOlli Hauer2016-08-021-0/+14
| | | | | | PR: 211502 Reported by: Helmut Ritter Obtained from: http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/mail/postfix/stable/patches/
* - fix build on FreeBSD 12Olli Hauer2016-07-092-5/+14
| | | | - s/USE_OPENSSL=yes/USES=ssl/
* - update to postfix 3.1Olli Hauer2016-02-283-6/+15
| | | | | | Users updating from postfix 2.11 should read: ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-3.0.0.RELEASE_NOTES ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-3.1.0.RELEASE_NOTES
* - add missing reload part into pkg-installOlli Hauer2016-02-251-0/+16
|
* - rework SASL OPTIONSOlli Hauer2016-02-253-34/+104
| | | | | | | | | | | | | | | | Dovecot SASL does not need any dependency, from now it will be always build into postfix and the default SASL unless Cyrus is also added (there is no conflict between them) - add support for FreeBSD 10.3 mailwrapper (install mailer.conf into LOCALBASE/mail instead /etc/mail) - add better reload support to rc script - display correct path in pkg-message - add support for postfix-sasl slave port - bump PORTREVISION Many Thanks to all testers! PR: 195662 PR: 205162
* - rework pkg-install and pkg-message [1]Olli Hauer2016-01-043-38/+64
| | | | | | | | | | | | | | | | | - install postfix specific mailer.conf.postfix into DATADIR [2] - use new notation instead PATCH_DIST_STRIP - bump PORTREVISION 1) detect if the port is installed without TERM, in this case do not ask the to make postfix the default mailer and respect the env POSTFIX_DEFAULT_MTA. This helps tools like salt, ansible, cfengine and puppet during the first package installation. 2) $DATADIR/mailer.conf.postfix can be used by the tools in 1) MFH: 2016Q1
* - update to version 2.11.5Olli Hauer2015-05-103-27/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - rename OPTIONS to match default name of most ports - SASL2 -> SASL - OPENLDAP -> LDAP - install main.cf and master.cf with the @sample macro - rework pkg-install - fix wrong permission for /var/db/postfix [1] - sets WANT_OPENLDAP_SASL option for openldap port when postfix LDAP_SASL option is set [2] - make usage of new ${opt}_DEPENDS notation Changelog: 20150324 Bugfix (introduced: Postfix 2.6): sender_dependent_relayhost_maps ignored the relayhost setting in the case of a DUNNO lookup result. It would use the recipient domain instead. Viktor Dukhovni. Wietse took the pieces of code that enforce the precedence of a sender-dependent relayhost, the global relayhost, and the recipient domain, and put that code together in once place so that it is easier to maintain. File: trivial-rewrite/resolve.c. 20150330 Bitrot: prepare for future changes in OpenSSL API. Viktor Dukhovni. File: tls_dane.c. 20150408 Portability: FreeBSD10 support. Files: makedefs, util/sys_defs.h. Incompatibility: specifying "make makefiles" with "CC=command" will no longer override the default WARN setting. PR: 198215 [1] 198857 [2]
* - update to 2.11.3Olli Hauer2014-11-021-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add CPE support - use PORTDOCS macro - remove check for OSVERSION >= 800037 - fix OPENLDAP_VER usage - set PORTSCOUD - always call set-permissions in post-install to set correct spool/postfix/* permissions this is required with pkg to support non interrupted upgrade Changes: ======== 20140619 Bugfix (introduced: 2001): qmqpd null pointer bug when it logs a lost connection while not in a mail transaction. Reported by Michal Adamek. File: qmqpd/qmqpd.c. 20140920 Bugfix (introduced: 20080212): incorrect client name in reject messages from check_reverse_client_hostname_access and check_reverse_client_hostname_{mx,ns}_access. They replied with the verified client name, instead of the name that was rejected. Problem reported by Reindl Harald. File: smtpd/smtpd_check.c. 20141012 Bugfix (introduced: Postfix 2.3): the PREPEND access/policy action added headers ABOVE Postfix's own Received: header, exposing Postfix's own Received: header to Milters (protocol violation) and hiding the PREPENDed header from Milters. The latter caused problems for DMARC implementations with SPF policy plus DKIM Milter. PREPENDed headers are now added BELOW Postfix's own Received: header and remain visible to Milters. File: smtpd/smtpd.c. 20141018 Bugfix (introduced: Postfix 2.3): when a Milter inserted a header ABOVE Postfix's own Received: header, Postfix would expose its own Received: header to Milters (violating protocol) and hide the Milter-inserted header from Milters (wtf). Files: cleanup/cleanup.h, cleanup/cleanup_message.c, cleanup/cleanup_state.c, milter/milter.[hc], milter/milter8.c. Cleanup: revert the workaround that places headers inserted with PREPEND actions or policy requests BELOW Postfix's own Received: message header. File: smtpd/smtpd.c. PR: 194396 Submitted by: Yasuhiro KIMURA Approved by: sahil (explicit per PM)
* Rename all patches that contain '::' as a path separator, and useAdam Weinberger2014-07-291-0/+0
| | | | '__' instead.
* - Update to 2.10.2Sahil Tandon2013-10-272-9/+10
|
* Update to 2.9.5 and revise the PKGINSTALL script toSahil Tandon2013-01-282-9/+13
| | | | | | distinguish between upgrades and fresh installs. Also, mark BROKEN when users try to build WITH_LDAP_SASL but WITHOUT_SASL2.
* Move the rc.d scripts of the form *.sh.in to *.inDoug Barton2012-08-051-0/+0
| | | | | | Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op
* Update to 2.9.0 and revise IS_INTERACTIVE logic toSahil Tandon2012-02-111-4/+2
| | | | account for additional situations.
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
* - Fix build on FreeBSD 10Martin Wilke2011-11-052-4/+6
|
* Update to 2.8.4 and use the ports framework toSahil Tandon2011-07-261-71/+1
| | | | | | | | create USERS and GROUPS. Also remove replace() function from pkg-install script. PR: ports/158765 Submitted by: ohauer
* - Update to 2.8.2Sahil Tandon2011-03-221-12/+2
|
* Update to 2.8.0, tweak CONFLICTS, mark MAKE_JOBS_SAFESahil Tandon2011-01-241-2/+2
| | | | | | | and note that the SPF and VDA options are unavailable with this release. Feature safe: yes
* Update to 2.7.2 and modify pkg-install script to checkSahil Tandon2010-11-271-11/+21
| | | | | | whether Postfix is already enabled in mailer.conf[1]. Submitted by: ohauer (via email) [1]
* - Update VDA patch to version 2.7.0 [1]Sahil Tandon2010-09-131-1/+0
| | | | | | | | | | | | | - Remove "empty variable" assignment from rc script [1] - Re-introduce optional SPF support [2] - Remove default DISTNAME assignment from Makefile - The affected OPTIONS are off by default, so do not bump PORTREVISION PR: [1]: ports/147731 [2]: ports/150428 Submitted by: [1]: ohauer@ [2]: mm@
* Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1
| | | | s#. %%RC_SUBR%%#. /etc/rc.subr#
* - Update to 2.7.0Ion-Mihai Tetcu2010-03-042-15/+12
| | | | | | | | - users wanting to continue on 2.6 series should use mail/postfix26 PR: 144189 Submitted by: Sahil Tandon (maintainer) Feature safe: yes
* - Add a note about possibly needing to create /etc/periodic.conf if itWesley Shields2010-01-221-0/+2
| | | | | | does not exist. Approved by: Sahil Tandon <sahil@tandon.net> (maintainer)
* Fix build on 9.Dag-Erling Smørgrav2009-09-142-4/+7
| | | | | Approved by: maintainer Reviewed by: wxs@, keramida@
* Now that closefrom() has been merged to 7.X too, we have to patch sys_defs.hGiorgos Keramidas2009-07-222-12/+15
| | | | | | | of Postfix to use closefrom() for __FreeBSD_version >= 702104 too. Submitted by: Sahil Tandon, sahil at tandon.net (maintainer) Tested by: wxs (7.X), keramida (head)
* Patch the src/util/sys_defs.h file of Postfix to fix the build onGiorgos Keramidas2009-07-091-0/+18
| | | | | | | | FreeBSD-8.0 after the new closefrom() system call was added. PR: ports/136459 Submitted by: Eygene Ryabinkin Approved by: erwin (portmgr), Sahil Tandon (maintainer)
* - Cleanup pkg-install script to handle documentation installation correctly.Wesley Shields2009-06-111-2/+12
| | | | | | | | | | | | This resulted in a bizarre case where making a backup package after an upgrade would fail (ports/135051). - Don't install obsolete files by adding them to ${WRKSRC}/conf/postfix-files. - Whitespace cleanup. - Define and pass DAEMONDIR to the pkg-install script. PR: ports/135051 Submitted by: Takefu Kenji <takefu@airport.fm>, Yarema <yds@CoolRat.org> Approved by: sahil@tandon.net (maintainer)
* - Fix install with defined NOPORTEXAMPLES [1]Martin Matuska2009-06-041-9/+1
| | | | | | | | | | - Do not install clones of man pages [1] - Add POSTFIX_DEFAULT_MTA to SCRIPTS_ENV [2] - Bump PORTREVISION PR: ports/135241 [1], ports/123812 [2] Submitted by: Sahil Tandon <sahil@tandon.net> (maintainer) [1] Reported by: Marco Walraven <m.walraven@terantula.com> [2]
* - refactor the port to ease maintenance [1]Alexander Leidinger2009-05-267-140/+190
| | | | | | | | | | | - update to 2.6.1 [1] - remove IGNORE in the VDA case, the patch is available now [2] [2] is from me (compile tested), maintainer informed. PR: 134728 [1] Submitted by: Yarema <yds@CoolRat.org> [1] Approved by: maintainer [1]
* - Update to 2.6.0Pav Lucistnik2009-05-181-11/+0
| | | | | | | | - Transfer maintainership to the submitter PR: ports/134497 Submitted by: Sahil Tandon <sahil@tandon.net> Approved by: Vick Khera <vivek@khera.org> (old maintainer)
* - Update to 2.5.4Marcus Alves Grando2008-08-171-36/+0
| | | | - Update VDA patch to 2.5.3
* - Fix paths in mail_perams.hBeech Rintoul2008-07-151-6/+15
| | | | | | PR: ports/125133 Submitted by: Sahil Tandon <sahil@tandon.net> Approved by: Vivek Khera <vivek@khera.org> (maintainer)
* - Fix milter macros (patch from Wietse Venema) [1]Marcus Alves Grando2008-03-241-0/+36
| | | | | | | - Update VDA patch to 2.5.1 [2] PR: 121652 [1], 122029 [2] Submitted by: dmx___dmx.org.ru [1], ShuenBin Hsu <sbhsu___mail.a6.idv.tw> [2]
* - Fix data_directoryMarcus Alves Grando2008-03-012-5/+23
| | | | | PR: 121236 Submitted by: Artis Caune <Artis.Caune___latnet.lv>
* - Update to 2.4.6Marcus Alves Grando2007-10-221-6/+6
| | | | | | | | | - Update VDA patch to 2.4.5 - Teach postfix to 8.0 [1] PR: 117304 [1] Submitted by: Oliver Peter <hoschi___mouhaha.de> [1] Approved by: maintainer
* - Add mail to PROVIDE line. This fixes other scripts that require mailRong-En Fan2007-02-211-1/+1
| | | | | | | | starts first. PR: ports/109336 Submitted by: Dan D Niles <dan at more.net> Approved by: Vivek Khera <vivek at khera.org> (maintainer)
* Addition of postfix_flags variable to rc.subr startup script.Jeremy Chadwick2007-02-201-2/+5
| | | | | | | | | | | This variable is passed to postfix-script on startup, allowing administrators to do things like postfix_flags="-c /my/place/postfix" (alternate location of main.cf and master.cf), or postfix_flags="-v" (for verbose logging). See postfix(1) manpage for flags. PR: ports/109137 Reviewed by: Vivek Khera <vivek@khera.org> Approved by: philip
* * UPDATINGMarcus Alves Grando2006-07-193-11/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add entry about OPTIONS and SPF patch in mail/postfix * mail/Makefile Add postfix22 * mail/postfix [1] Update to 2.3.0 Use OPTIONS instead of scripts Add message about unsupported POSTFIX_OPTIONS Remove SPF patch since that's not apply clean Update pkg-descr Change rcNG to rc only Update CONFLICTS * mail/postfix-current Now postfix-current are called postfix-current instead of postfix. Update CONFLICTS Bump PORTREVISION Store OPTIONSFILE in another local to not conflict with mail/postfix Change rcNG to rc only * mail/postfix1 Update CONFLICTS * mail/postfix21 Update CONFLICTS Change rcNG to rc only * mail/postfix22 [2] Update CONFLICTS Change rcNG to rc only Approved by: maintainer [1] Repocopy by: marcus [2]
* - Update to 2.2.10Marcus Alves Grando2006-04-061-2/+11
| | | | | | | - Trust only in host instead of subnet in default instalation. [1] - Update VDA patch to 2.2.9 Notified by: Anton Yuzhaninov <citrin__citrin.ru>
* Modify rc.d script like example in Porters Handbook.Marcus Alves Grando2006-01-161-11/+15
|
* Fix rc.d/postfix.sh restart adding pidfile and procnameMarcus Alves Grando2006-01-121-0/+6
| | | | | | | | Bump PORTREVISION PR: 91721 Submitted by: NIIMI Satoshi <sa2c@sa2c.net> Approved by: maintainer
* Add rcNG script to start postfixMarcus Alves Grando2006-01-121-0/+35
| | | | | | | Update pkg-message to reflect rcNG script Bump PORTREVISION Approved by: Vivek Khera <vivek@khera.org> (maintainer)
* Update to 2.2.8Marcus Alves Grando2006-01-051-7/+5
|
* - Fix build on FreeBSD 7Pav Lucistnik2005-07-131-3/+5
| | | | | | PR: ports/83414 Submitted by: Marcus Grando <marcus@corp.grupos.com.br> Approved by: Vivek Khera <vivek@khera.org> (maintainer)
* - Update to 2.2.1Pav Lucistnik2005-03-197-179/+100
| | | | | | PR: ports/78852 Submitted by: Marcus Grando <marcus@corp.grupos.com.br> Approved by: Vivek Khera <vivek@khera.org> (maintainer)
* [PATCH] mail/postfix: Update to libspf2-2.1.5-5Edwin Groothuis2004-11-271-18/+0
| | | | | | | | | | | | | | | | | update the SPF patch to latest release which fixes bug exposed by gcc in FreeBSD 5.3. it is otherwise identical to prior version, so no upgrade is necessary if you have it compiled and workign in FreeBSD 4.10 already (thus no version bump). removed "extra libspf2" patch that tried to work around failure of IPv6+TLS patch when used in conjunction with SPF patch. It just doesn't work, and I can't figure out exactly what it is supposed to do. As it was, this would cause failures when selecting just the SPF patch. PR: ports/74095 Submitted by: Vivek Khera <vivek@khera.org>