Commit graph

18748 commits

Author SHA1 Message Date
Mark Felder
3315b92969 mail/archiveopteryx-devel: Update to newer git snapshot
- Better interaction with Horde and Nginx IMAP proxy
- Improvements to QRESYNC extension
2016-01-29 17:12:39 +00:00
Vsevolod Stakhov
161d1538d9 - Update to 1.1.2 2016-01-29 16:01:06 +00:00
Alexey Dokuchaev
ff5011faa2 Merge patches that patch the same file. 2016-01-29 03:21:32 +00:00
Vsevolod Stakhov
9c11f12b96 - Update to 1.1.2.b1.28012016 2016-01-28 23:44:47 +00:00
Kurt Jaeger
f4e63f5708 mail/mutt: set GSSAPI default to NONE
- this was the old default

PR:		206220
2016-01-28 12:11:40 +00:00
Kurt Jaeger
39d563e87e mail/mutt: provide options to build with GSSAPI variants
The port rolls its own GSSAPI handling system, looking for installed
libraries, rather than employing the "Uses" knobs (which probably
post-date the mutt Port's GSSAPI support).

When linking against OpenSSL from Ports, this results in one mutt
process pulling in both libcrypto.so.8 from Ports and libcrypto.so.7
from the base system (FreeBSD 10.1), leading to environ corruption
problems when running external commands, which complain at startup
(libc routines detect the corruption).  These look like:

    sh: environment corrupt; missing value for SOME_VAR

and can be seen when, eg, viewing a PGP-signed mail with GnuPG
integration turned on.

This patch switches mail/mutt to use the GSSAPI "Uses" system.

PR:		206220
Submitted by:	Phil Pennock <freebsd@phil.spodhuis.org>
Approved by:	Udo Schweigert <Udo.Schweigert@siemens.com> (maintainer)
2016-01-28 11:50:35 +00:00
Kurt Jaeger
fb33a86545 mail/mutt: update sidebar patch
PR:		205284
Reported by:	Zsolt Udvari <udvzsolt@gmail.com>
Approved by:	Udo Schweigert <Udo.Schweigert@siemens.com> (maintainer)
2016-01-28 08:41:56 +00:00
Dmitry Marakasov
bd3c87b73a - Update to 4.6a1
PR:		206575
Submitted by:	freebsd-ports@dan.me.uk (maintainer)
2016-01-27 20:28:57 +00:00
Dimitry Andric
32446a0f30 During the exp-run in bug 206074, it was found that www/libxul gives
errors with a recent clang 3.8.0 snapshot:

../../dist/include/mozilla/dom/MessageEvent.h:61:32: error: reference to 'MessagePort' is ambiguous
  void SetSource(mozilla::dom::MessagePort* aPort);
                               ^

This is caused by unneeded forward declarations of class MessagePort,
MessagePortBase and MessagePortList.  These can be removed.

Obtained from:	pkgsrc
Approved by:	jbeich (maintainer)
PR:		206333
MFH:		2016Q1
2016-01-26 19:55:13 +00:00
Kubilay Kocak
866c4c9bfa mail/py-pyspf: Fix dependencies (missing & incorrect)
Revision 404778 [1] modified py-pyspf to only use dns/py3dns instead
of conditionally using dns/py-dns and py-py3dns depending on whether
Python 2.x or 3.x was being used.

dns/py-py3dns is a Python 3.x *only* package, but the port does not
currently [2] limit itself to USES=python:3.0+.

This results in errors for all dependent ports of py-pyspf when
Python 2.x is used, which was reported for
mail/postfix-policyd-spf-python. [3]

pyspf's README notes the following requirements:

  This package requires PyDNS (or Py3DNS for running with Python 3) and
  either the ipaddr or python3.3 and later

  This package requires authres from either pypi or
  http://launchpad.net/authentication-results-python to process
  and generate RFC 5451 Authentication Results headers.

  The spf module in this version has been tested with python3.2 and does
  not require using 2to3.

Accordingly, this change:

- Reverts to conditional RUN_DEPENDS on dns/py-dns or py-py3dns
  depending on whether Python 2.x or Python 3.x is being used.
- Adds authres to RUN_DEPENDS
- Adds a conditional RUN_DEPENDS on devel/py-ipaddr, depending on
  Python version.

While I'm here:

- Sort and group USE{S} entries
- Match COMMENT to setup.py:description
- Add test and post-extract targets, TEST_DEPENDS, and patch files
  so that tests can be run properly
- Pet several portlint warnings

[1] https://svnweb.freebsd.org/changeset/ports/404778
[2] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206645
[3] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206643

QA:

 * portlint: OK (WARN: Makefile: [47]: possible use of "${CHMOD}")
 * porttest: OK (poudriere: 11amd64, python27, python34)
 * unittest: OK (Ran 425 tests in 0.155s)

PR:			206643
Reported by:		danger
Approved by:		portmgr (blanket)
MFH:			2016Q1
Differential Revision:	DXXXX
2016-01-26 14:01:37 +00:00
Kurt Jaeger
3f9fb0d306 mail/imaputils: remove redundant GH_PROJECT entry
PR:		206540
Submitted by:	mat
2016-01-25 19:10:39 +00:00
Emanuel Haupt
88de9215b6 Update to 3.5.0 2016-01-25 18:22:40 +00:00
Alexey Dokuchaev
66c5c852ad - Convert manual handling of *-default files in ${ETCDIR} to @sample since
it supports custom suffixes as of r397963
- Bump port revision (due to the change above and the earlier r407194)
2016-01-25 17:18:20 +00:00
Alexey Dokuchaev
7dbd80dede - Unbreak the build on 9.x (against GCC 4.2): it was failing due to -ansi
option passed by default, which does not allow C++-style comments in C
  source code (Clang is more forgiving):

    /usr/local/include/clamav.h:170: error: expected identifier or '('
    before '/' token
    /usr/local/include/clamav.h:170: error: stray '#' in program

- Really respect CFLAGS by fixing configure script
- Do not hardcode DISTVERSION in MASTER_SITES
- Do not install COPYING file as part of portdocs: it's installed via
  LICENSE_FILE already
- Convert the port to use option helpers, fix a typo (VIRUSTAGSC ->
  VIRUSTAG_DESC), wrap overly long lines
- Augment port description text while I'm at it
2016-01-25 07:02:51 +00:00
Kurt Jaeger
a29a1d7b25 mail/imaputils: 1.0.3 -> 1.0.4
- fix connectToHost() call

PR:		206540
Submitted by:	m.tsatsenko@gmail.com (maintainer)
2016-01-25 06:48:27 +00:00
Dmitry Marakasov
576dd6d75e - Clarify LICENSE
- Regenerate patches with `make makepatch`
2016-01-24 20:01:17 +00:00
Thomas Zander
d55a69f049 Fix build failures on current and pkg builds with XFACE option
PR:		205719
Submitted by:	Udo.Schweigert@siemens.com (maintainer)
MFH:		2016Q1
2016-01-24 10:21:26 +00:00
Raphael Kubo da Costa
57dec8d0fd Remove BROKEN for FreeBSD 8, which is no longer supported. 2016-01-23 19:28:00 +00:00
Baptiste Daroussin
2bf276fdb2 Use the test framework 2016-01-23 10:23:40 +00:00
John Marino
783c48502f mail/mailagent: move regression tests to regression-test target
The post-build target is not required for the packages, and the README
indicates that the regression suite is only meant for mailagent developers.
2016-01-23 07:51:21 +00:00
Koop Mast
cf649469f2 Update poppler to 0.40.0. [1]
Add patches to py-poppler [2] and rubygem-poppler [3] to fix the build
of these ports with poppler 0.39+.

PR:		206293 [1]
Submitted by:	olivierd@ [1]
Obtained from:	ubuntu [2], rubygem-poppler upstream [3]
2016-01-21 19:40:10 +00:00
Vsevolod Stakhov
0175b689a0 - Update to 1.1.1 2016-01-21 15:59:40 +00:00
Raphael Kubo da Costa
d24a5155dd Add upstream patch to fix the build with the upcoming Qt 5.5.1. 2016-01-21 15:08:17 +00:00
Vsevolod Stakhov
c10498fc20 - Update to 1.1.1.b2
- Add newsyslog entry [1]

PR:		205456 [1]
Submitted by:	 Alexander Moisseev [1]
2016-01-20 18:18:48 +00:00
Pawel Pekala
cc66fa9343 Update to Claws Mail release 3.13.2
MFH:		2016Q1
Security:	CVE-2015-8614
2016-01-20 06:50:52 +00:00
Vsevolod Stakhov
e97cd4d522 - Update to 1.1.1.b1.19012016 2016-01-19 18:35:02 +00:00
Vsevolod Stakhov
32c014eedd - Update to 1.7.1 2016-01-19 16:37:07 +00:00
Sunpoet Po-Chuan Hsieh
2820159571 - Update to 1.1.2
Changes:	https://github.com/terceiro/rmail/blob/master/ChangeLog
2016-01-19 08:38:04 +00:00
Sunpoet Po-Chuan Hsieh
f1cbf27992 - Update to 0.6.66
- Reformat pkg-descr

Changes:	http://hg.five-ten-sg.com/libpst/file/default/ChangeLog
		http://hg.five-ten-sg.com/libpst/file/default/NEWS
2016-01-19 08:36:18 +00:00
Jimmy Olgeni
aeea9ae8ab Fix a couple of typos. 2016-01-18 21:43:31 +00:00
Kurt Jaeger
3a39651639 mail/postsrsd: 1.1 -> 1.3
Changes:
  https://github.com/roehling/postsrsd/commits/master

PR:		206116
Submitted by:	Krzysztof <ports@bsdserwis.com> (maintainer)
2016-01-18 20:29:11 +00:00
Kurt Jaeger
8a6fe341ce mail/sqlgrey: Fix missing dependencies (bash, wget, md5sum)
PR:		205754
Submitted by:	me@cschwarz.com
2016-01-18 19:48:35 +00:00
Vsevolod Stakhov
8a34fa8f47 - Update rspamd to 1.1.0
- Update rmilter to 1.7.0
- Fix dependencies
- Add UPDATING entry
2016-01-18 17:38:01 +00:00
Pawel Pekala
f253a1dd09 Remove x-generate-plist target using deprecated @dirrm, our make makeplist
generates proper plists now.

PR:		205971
Submitted by:	myself
Approved by:	maintainer
2016-01-18 15:59:11 +00:00
Pawel Pekala
46e99e1fbf Remove deprecated @dirrm
PR:		205835
Submitted by:	myself
Approved by:	maintainer timeout
2016-01-18 15:57:10 +00:00
Pawel Pekala
73c5c2bf77 Remove deprecated @dirrm
PR:		205832
Submitted by:	myself
Approved by:	maintainer timeout
2016-01-18 15:55:31 +00:00
Vsevolod Stakhov
723404ee6c - Update to 1.1.0.b2 which fixes a critical memory leak 2016-01-18 14:40:20 +00:00
Vsevolod Stakhov
a09ffec196 - Update to 1.1.0.b1 2016-01-18 11:05:50 +00:00
Pawel Pekala
e3d89d8683 - Remove deprecated @dirrm
- Use options helper, unmute install command

Approved by:	portmgr blanket
2016-01-17 19:36:12 +00:00
Pawel Pekala
87aed39007 Modernize pkg-plist, remove deprecated @dirrm
Approved by:	portmgr blanket
2016-01-17 19:28:06 +00:00
Pawel Pekala
5af42e3f48 Modernize pkg-plist, remove deprecated @dirrm
Approved by:	portmgr blanket
2016-01-17 18:44:05 +00:00
David Naylor
a784cdebae mail/bayespam: make fetchable
Changes:
 - Change MASTER_SITE to BSDforge.org
 - Assign MAINTAINERship to reporter
 - Remove BROKEN
 - Add LICENSE of GPLv2
 - Make portlint happy:
   - Capitalise start of COMMENT
   - Regenerate patches

PR:		206043
Submitted by:	Chris Hutchinson (portmaster@BSDforge.com)
Approved by:	portmgr (implicit: unmaintained port)
MFH:		2016Q1
2016-01-17 18:13:36 +00:00
Alexey Dokuchaev
8b28f3f3eb - Resurrect `mail/bincimap' port (project was moved to SF.net from the
abandoned http://www.bincimap.org/ website)
- Distfile is .tar.gz now instead of original .tar.bz2, but the contents
  is identical (no changes whatsoever)
- Clean up and modernize the port: convert to OPTIONS, define LICENSE,
  get rid of CONFDIR in favor of ETCDIR, allow to build with GCC 4.7+,
  use @sample in pkg-plist, kill bogus EOL whitespace in pkg-descr, etc.
2016-01-17 17:28:08 +00:00
Sunpoet Po-Chuan Hsieh
b2319c670d - Update to 3.1.1
Changes:	https://github.com/Mange/roadie/blob/master/Changelog.md
Sponsored by:	PortsCamp Taiwan
2016-01-17 13:21:26 +00:00
Sunpoet Po-Chuan Hsieh
cbac2ce80c - Update to 4.1.4
Changes:	https://github.com/smartinez87/exception_notification/blob/master/CHANGELOG.rdoc
Sponsored by:	PortsCamp Taiwan
2016-01-17 13:21:21 +00:00
Steve Wills
f0b0908dc5 mark ports that don't work with Ruby 2.3
PR:		205774
2016-01-17 07:06:25 +00:00
Mathieu Arnold
ef0dd76390 Add missing dependency on GNU sed.
PR:		205744
Submitted by:	Louis Kowolowski
Sponsored by:	Absolight
2016-01-15 16:05:22 +00:00
Martin Wilke
d85f52c9ad - Update to 152
PR:		206250
Submitted by:	ports fury
2016-01-15 15:35:29 +00:00
Koop Mast
2c37f5fc3b Update libmapi to 2.3.
Switch from samba 4.0 and 4.1 choice to only 4.2. Samba 4.0 and 4.1 are
EOL and marked for deletion.

Keep the switch logic around for possible later use, since samba 4.3
is not supported at this time.

A few patches where obtained from archlinux.
2016-01-15 12:45:28 +00:00
Dmitry Marakasov
4705c7aa01 - Add NO_ARCH
- Switch to autoplist which fixes .egg.info handling
2016-01-14 14:00:19 +00:00
Vsevolod Stakhov
aad760dc66 - Update to the recent snapshot
- Drop hiredis dependency (it is bundled now)
2016-01-14 11:34:09 +00:00
Olli Hauer
dfe9f1d41f - fix mutt-lite NLS leftovers [1]
[1] patch by ak@

PR:		206092
2016-01-14 04:49:19 +00:00
Olli Hauer
870c4da692 - fix mutt-lite build
PR:		206092 (follow up)
Approved by:	udo.schweigert@siemens.com (maintainer)
2016-01-13 10:05:33 +00:00
Sunpoet Po-Chuan Hsieh
2e679ad10f - Update to 0.0002
- Add TEST_DEPENDS
- Add NO_ARCH

Changes:	http://search.cpan.org/dist/Dancer2-Plugin-Email/CHANGES
2016-01-12 21:41:35 +00:00
Sunpoet Po-Chuan Hsieh
bae53596e8 - Update to 0.13
- Add NO_ARCH
- Sort PLIST

Changes:	http://search.cpan.org/dist/Net-ManageSieve/Changes
2016-01-12 21:40:16 +00:00
Dmitry Marakasov
b9398223bd Convert LICENSE= "GPLxx # or later" to "GPLxx+"
Approved by:	portmgr blanket
2016-01-12 16:20:31 +00:00
Alex Kozlov
5647688052 - Convert to options helpers when possible
- Add URLVIEW option (on by default)
- Add patch to make parent directory entry (..) always on top of browser menu (with any $sort_browser value)
- Clean up MASTER_SITES

PR:	206092
Approved by:	udo.schweigert@siemens.com (maintainer)
2016-01-12 16:07:12 +00:00
Bernhard Froehlich
4938b0bca3 Hand over maintainership back to ports@ for ports which i'm not using myself anymore. 2016-01-12 15:15:29 +00:00
Dmitry Marakasov
94817f0784 Add Public Domain support to ports license framework. You can now use
LICENSE=  PD

Note that although Public Domain is not technically a license, it's
handled in the same way as licenses here, which is a common practice
(Arch, Gentoo, Fedora, Debian, even FOSSology do the same).

Convert all ports which redefine Public Domain LICENSE to LICENSE=PD.

Approved by:	portmgr (bapt)
Differential Revision:	D4149
2016-01-12 14:33:21 +00:00
Martin Wilke
8228962f14 Mail::DMARC - Perl implementation of DMARC
DMARC: Domain-based Message Authentication, Reporting and Conformance

WWW: https://github.com/msimerson/mail-dmarc

PR:		203208
Submitted by:	dgeo@centrale-marseille.fr
2016-01-12 10:12:56 +00:00
Kurt Jaeger
47f7fe60db mail/imapsync: 1.644 -> 1.670
- many small fixes
2016-01-12 09:54:38 +00:00
Martin Wilke
44045954e6 - Update to 3.2.4
PR:		206114
Submitted by:	maintainer
2016-01-11 07:29:34 +00:00
Thierry Thomas
f05f94553e Use PORTDATA and convert to options helpers.
PR:		ports/205884
Submitted by:	pawel
2016-01-10 22:11:55 +00:00
Olli Hauer
c67b1225c7 - s/SQLITE_USE/SQLITE_USES/ 2016-01-10 18:48:18 +00:00
Antoine Brodin
4802a46d7a Unbreak bogofilter-sqlite 2016-01-10 17:01:04 +00:00
Baptiste Daroussin
72a6ab7988 Convert categories m* and m* to USES=sqlite and USES=firebird 2016-01-10 16:44:24 +00:00
Martin Wilke
605de7ca6c - Update to 0.6.1
PR:		205866
Submitted by:	Torsten Zuehlsdorff
2016-01-10 07:30:05 +00:00
Martin Wilke
90cab65391 - Update to 0.4.11
PR:		206042
Submitted by:	maintainer
2016-01-09 12:51:56 +00:00
Bernhard Froehlich
ce375404e1 - Update to 1.00 2016-01-08 15:29:01 +00:00
Bartek Rutkowski
a6c54336cb mail/dcc-dccd: change maintainer to Piotr Kubaj <pkubaj@anongoth.pl>
PR:		205985
Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
2016-01-08 12:21:26 +00:00
Emanuel Haupt
520afcaff1 Add cleanup-maildir 0.1.0.2016010801, a script for cleaning up mails in
Maildir folders based on the arival date.

The script supports thread detection and can distinguish between read and
partially read threads.
2016-01-08 11:45:27 +00:00
Jan Beich
b88d91d721 gecko: unbreak FFMPEG=off build on esr38
PR:		205747
MFH:		2016Q1
2016-01-08 00:47:13 +00:00
Jason E. Hale
781dae49d7 - Convert to OPTIONS helpers where possible
- Rename GPGME option to GNUPG as it better describes the functionality
  provided
- Bump PORTREVISION due to option name change
2016-01-07 17:26:33 +00:00
Pawel Pekala
b707ac80a4 - Remove deprecated @dirrm's from pkg-plist
- Add NO_ARCH
- DOCS is default, no need to set it
- Use options helper

PR:		205847
Submitted by:	myself
Approved by:	maintainer
2016-01-07 16:57:21 +00:00
Pawel Pekala
ebcab3f0e5 - Remove x-generate-plist target using deprecated @dirrm, our make makeplist
generates proper plists now
- Add NO_ARCH

PR:		205969
Submitted by:	myself
Approved by:	maintainer
2016-01-07 16:53:44 +00:00
Pawel Pekala
eab54a0a9e Remove x-generate-plist target using deprecated @dirrm, our make makeplist
generates proper plists now.

PR:		205970
Submitted by:	myself
Approved by:	maintainer
2016-01-07 16:48:13 +00:00
Jason E. Hale
42b0bae34f Add USES=pathfix support for CMake. Some ports that use CMake to build
already had USES=pathfix, although it did nothing.  For those ports, I
either removed it as they were handling the pkgconfig files differently
or I removed patches and substitutions that accomplished the same thing
as pathfix.

Differential Revision:	https://reviews.freebsd.org/D850
Reviewed by:	antoine, bapt, tijl
Approved by:	portmgr (bapt)
2016-01-07 14:54:03 +00:00
Pawel Pekala
0668e57966 - Remove x-generate-plist target using deprecated @dirrm, our make makeplist
generates proper plists now
- Add NO_ARCH

PR:		205968
Submitted by:	myself
Approved by:	maintainer
2016-01-06 21:38:59 +00:00
Pawel Pekala
07f7b7ecb8 - Update to version 1.1.3, development moved to GitHub
- Keep edited configuration file on port deinstallation
- Add NO_ARCH
- Update LICENSE
- Fix x-generate-plist target (remove deprecated @dirrm)

PR:		205972
Submitted by:	maintainer
2016-01-06 21:34:33 +00:00
Pawel Pekala
ccd24e24ed - Remove x-generate-plist target using deprecated @dirrm, our make makeplist
generates proper plists now
- Add NO_ARCH
2016-01-06 18:03:51 +00:00
Pawel Pekala
ce791c07a0 - Remove usage of deprecated @dirrm
- Switch to options helpers

PR:		205957
Submitted by:	myself
Approved by:	maintainer
2016-01-06 16:48:13 +00:00
Mathieu Arnold
5e0e495855 Resign from this one, I don't use it any more.
Sponsored by:	Absolight
2016-01-06 16:16:22 +00:00
Guido Falsi
fae60e1278 Stop DOCS option appearing twice in this port.
PR:		205924
Submitted by:	marino@
MFH:		2016Q1
2016-01-06 11:34:36 +00:00
Adam Weinberger
090523dbd3 Execute run_rc_command even if the config file doesn't exist. Previously,
until you followed the instructions in pkg-message, the config file didn't
exist and rc.d/dovecot would just silently exit.

While here, also spit out a message reminding you to create the config
files if necessary.

PR:		205761
Submitted by:	me@cschwarz.com
2016-01-05 20:59:02 +00:00
John Marino
120409991c mail/qmail: Rename Make var from SELECTED_OPTIONS to SEL_OPTIONS
SELECTED_OPTIONS is now a framework informational variable, so there
is a name clash with qmail and its slave ports.  Just rename the
variable here to remove the conflict (No-op)

Approved by:	Just fix it
2016-01-05 16:08:15 +00:00
Olli Hauer
7a5b13abcd - fix misplaced strip flag
MFH:		2016Q1
2016-01-05 06:40:47 +00:00
Pawel Pekala
b5b7931cca Remove deprecated @dirrm's from pkg-plist
PR:		205833
Submitted by:	myself
Approved by:	maintainer
2016-01-04 16:31:13 +00:00
Vsevolod Stakhov
b5ac65280b - Update to 1.1.0.a2.04012016
- Move to USE_GITHUB knobs

Submitted by:	az via email
2016-01-04 15:41:47 +00:00
Olli Hauer
8c3dbcf8bd - rework pkg-install and pkg-message [1]
- 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
2016-01-04 10:33:26 +00:00
Olli Hauer
28eb67e0f7 - rework pkg-install and pkg-message [1]
- install postfix specific mailer.conf.postfix into DATADIR [2]

- make EAI the default, postfix will reject messages if build
  w.o. EAI and compatibility_level is set to a value >=1 [3]

- 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)

3) Issue noted by Melissa Pilgrim by PM
   Short description of the issue:
    If compatibility_level is set to a value >= 1, then postfix set
    smtputf8_enable=yes.  For more information see
     $ postconf -d | grep compatibility_level
    and
     http://www.postfix.org/SMTPUTF8_README.html

MFH:		2016Q1
2016-01-04 10:31:51 +00:00
Martin Wilke
c5d31dd10b - Update to 4.85.2-3
PR:		205010
Submitted by:	Talal Al Dik
Approved by:	maintainer timeout (3 weeks+)
2016-01-04 07:16:00 +00:00
Martin Wilke
79281a4d27 - Make IPV6 optional
On system without any IPv6 addresses emailrelay fails to start with messages:
# service emailrelay start
emailrelay: error: cannot bind the listening port: :::25
emailrelay: exception: cannot bind the listening port: :::25
/usr/local/etc/rc.d/emailrelay: WARNING: failed to start emailrelay

PR:		204126
Submitted by:	Dmitry Afanasiev
Approved by:	maintainer timeout
2016-01-04 07:10:15 +00:00
Pawel Pekala
ab2ec1a1ba Remove deprecated @dirrmtry 2016-01-02 20:45:29 +00:00
Pawel Pekala
a67bbb9dbf Remove deprecated @dirrm 2016-01-02 20:39:14 +00:00
Pawel Pekala
4408185287 Remove deprecated @dirrm's from pkg-plist 2016-01-02 20:25:02 +00:00
Pawel Pekala
5c3d915149 - Convert to options helpers
- Allow to build as normal user, remove chmod/chown opertaions
  requiring root priviledges
- Modernize pkg-plist
2016-01-02 20:07:47 +00:00
Dirk Meyer
2cd394ce34 - update to 1.1.Alpha2.0 2016-01-02 10:40:16 +00:00
Alex Dupre
6c833f2110 Update to 1.1.4 release.
PR:		205779
Submitted by:	Vladimir Krstulja
2016-01-02 08:58:32 +00:00
Thomas Zander
147e94a9d4 Fix IPv6 patch
PR:		205752
Submitted by:	takefu@airport.fm
Approved by:	andrey@bsdnir.info (maintainer)
2016-01-01 16:40:04 +00:00
Raphael Kubo da Costa
161ab8327c Fix MASTER_SITES and unmark BROKEN. 2016-01-01 13:38:29 +00:00
Raphael Kubo da Costa
e62c164e63 Deprecate and set to expire in 1 month.
This version is very old, has not been updated since 2009 and has been broken
for several months.
2016-01-01 13:36:58 +00:00
Sunpoet Po-Chuan Hsieh
3a88662d26 - Use USE_PYTHON=autoplist to fix packaging when DEFAULT_VERSIONS=python=3.*
- Allow concurrent installation (USE_PYTHON=concurrent)
- While I'm here, convert to new options target helper

PR:		205745
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org> (maintainer)
2016-01-01 08:07:19 +00:00
Sunpoet Po-Chuan Hsieh
abf5cbb595 - Use USE_PYTHON=autoplist to fix packaging when DEFAULT_VERSIONS=python=3.*
- Allow concurrent installation (USE_PYTHON=concurrent)

PR:		205745
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org> (maintainer)
2016-01-01 06:36:22 +00:00
Chris Rees
ebe8a24550 Fix bashism
PR:		ports/164901
Submitted by:	Martin Waschbuesch
2015-12-31 18:04:31 +00:00
Vsevolod Stakhov
d2316af581 - Update to 1.1.0.a1.30122015
- Enable debug flags by default [1]

Submitted by:	az via telegram [1]
2015-12-30 15:17:17 +00:00
Matthias Andree
4d4e2f35e8 Fix a leftover in rcfile, make more robust.
Make things more robust such that options in mailman_flags don't kill
the start.
2015-12-30 15:00:35 +00:00
Matthias Andree
3c21594264 Fix stop method in rc.d script to wait for process to exit.
To that end, simplify and use rc.subr default methods where possible.
2015-12-30 14:21:33 +00:00
Sunpoet Po-Chuan Hsieh
4d148c5514 - Add DOCS to OPTIONS_DEFINE
- Convert to new options target helper

Approved by:	portmgr (blanket)
2015-12-30 12:14:07 +00:00
Raphael Kubo da Costa
cb2c733b13 Fix MASTER_SITES and unmark BROKEN. 2015-12-30 12:13:02 +00:00
Sunpoet Po-Chuan Hsieh
93bcf85c7b - Move databases/py-memcached to databases/py-python-memcached
- Bump PORTREVISION for dependent ports
2015-12-30 08:06:13 +00:00
Sunpoet Po-Chuan Hsieh
37da862c8d - Add LICENSE_FILE
- Add NO_ARCH
- Update WWW
2015-12-29 19:10:14 +00:00
Sunpoet Po-Chuan Hsieh
f30213f868 - Add LICENSE
- Update and sort RUN_DEPENDS
- Add NO_ARCH
- Remove blank line
- Use = instead of ?=
- Rename patch file
- Pet portlint: fix diff header of patch files
2015-12-29 19:10:07 +00:00
Sunpoet Po-Chuan Hsieh
2328bfb8fe - Move mail/py-spf to mail/py-pyspf
- Update MASTER_SITES: change from SF to CHEESESHOP
- Update RUN_DEPENDS: always use dns/py-py3dns
- Bump PORTREVISION for dependency change
- Bump PORTREVISION for dependent ports
2015-12-29 19:03:25 +00:00
Sunpoet Po-Chuan Hsieh
e9f5f4530e - Move dns/py-dns3 to dns/py-py3dns
- Update MASTER_SITES: change from launchpad.net to CHEESEHOP
- Remove PKGNAMESUFFIX
- Add NO_ARCH
- Relax USES=python
- Add PyPI as primary WWW
- Bump PORTREVISION for dependent ports
2015-12-29 17:29:51 +00:00
Dmitry Marakasov
4aee74a6a8 - Update to 2.3.0
PR:		205213
Submitted by:	tkato432@yahoo.com
2015-12-29 17:09:29 +00:00
Mathieu Arnold
7823fa4b7e Cleanup GH_* and variables order.
Sponsored by:	Absolight
2015-12-29 14:30:46 +00:00
Matthias Andree
5181935100 Find Postfix also if installed with INST_BASE option.
Submitted by:	Roger Marquis
2015-12-29 11:56:20 +00:00
Raphael Kubo da Costa
110f6c1243 Unmark BROKEN, the port fetches fine. 2015-12-28 23:34:01 +00:00
Jan Beich
a03fb9505a mail/thunderbird: update to 38.5.0
Changes:	https://hg.mozilla.org/releases/comm-esr38/rev/b88229610b41
PR:		205653
Submitted by:	Christoph Moench-Tegeder <cmt@burggraben.net>
Security:	2c2d1c39-1396-459a-91f5-ca03ee7c64c6
MFH:		2015Q4
2015-12-28 18:20:02 +00:00
Jan Beich
8af65d5d19 gecko: phase out GStreamer support
H.264 is decoded by FFmpeg directly since Firefox 43.0. GStreamer
doesn't support DASH and no longer used by default since r397984
brings libavcodec.so.

https://bugzilla.mozilla.org/show_bug.cgi?id=1234092
2015-12-28 18:18:03 +00:00
Jan Beich
8be5bca6a8 gecko: enable PULSEAUDIO by default (mainly for WebRTC)
ALSA currently relies on in-kernel support to enumerate available audio
devices for getUserMedia i.e., to detect a microphone. So, build with
PULSEAUDIO late bindings by default preferred over ALSA, over OSS.

Nop for RUN_DEPENDS or users who previously disabled PULSEAUDIO.
2015-12-28 18:17:22 +00:00
Sunpoet Po-Chuan Hsieh
f19579b920 - Add rubygem-mailboxer 0.13.0
This project is based on the need for a private message system for ging /
social_stream. Instead of creating our core message system heavily dependent on
our development, we are trying to implement a generic and potent messaging gem.

After looking for a good gem to use we noticed the lack of messaging gems and
functionality in them. Mailboxer tries to fill this void delivering a powerful
and flexible message system. It supports the use of conversations with two or
more participants, sending notifications to recipients (intended to be used as
system notifications “Your picture has new comments”, “John Doe has updated his
document”, etc.), and emailing the messageable model (if configured to do so).
It has a complete implementation of a Mailbox object for each messageable with
inbox, sentbox and trash.

The gem is constantly growing and improving its functionality. As it is used
with our parallel development ging / social_stream we are finding and fixing
bugs continously. If you want some functionality not supported yet or marked as
TODO, you can create an issue to ask for it. It will be great feedback for us,
and we will know what you may find useful in the gem.

WWW: https://github.com/mailboxer/mailboxer
2015-12-28 16:30:30 +00:00
Raphael Kubo da Costa
bbf73ab96e Make the port fetchable again.
Switch to the new location where the tarball is hosted. It is now served as
a tar.bz2 file.

diff -uprN between the old tar.gz file from distcache.FreeBSD.org and the
new one shows no differences.
2015-12-28 15:01:18 +00:00
Adam Weinberger
1d725d4e83 Reassign perl modules from ports@ to the perl@ collective. 2015-12-26 16:53:30 +00:00
Dmitry Marakasov
1a202a687b - Add NO_ARCH
- Drop @dirrm* from plist

Approved by:	portmgr blanket
2015-12-26 16:19:12 +00:00
Dmitry Marakasov
ee74467ab7 - Drop @dirrm* from plist
Approved by:	portmgr blanket
2015-12-26 15:31:02 +00:00
Dmitry Marakasov
b973963717 - Drop @dirrm* from plist
Approved by:	portmgr blanket
2015-12-26 15:30:45 +00:00
Dmitry Marakasov
6b86f30b90 - Add LICENSE
- Add NO_ARCH
2015-12-25 23:19:40 +00:00
Dmitry Marakasov
08b996e8d6 - Reset maintainer by his own request
PR:		205570
2015-12-25 23:19:02 +00:00
Dmitry Marakasov
661134d799 - Add NO_ARCH
- Style nits
- Switch to options helpers
- Drop dirrm's from plist
- Handle links properly
- Switch to @postunexec

PR:		205570
Submitted by:	amdmi3
Approved by:	rnejdl@ringofsaturn.com (maintainer)
2015-12-25 18:27:25 +00:00
Dmitry Marakasov
d7663243e2 - Add license
- Style nits
- Switch to options helpers
- Modernize plist
- Drop @dirrm's

PR:		205571
Submitted by:	amdmi3
Approved by:	naddy (maintainer)
2015-12-25 13:59:50 +00:00
Pawel Pekala
d01e3f95f5 Update Claws Mail to release 3.13.1
Release notes: http://claws-mail.org/news.php
2015-12-25 11:48:58 +00:00
Dmitry Marakasov
f89d96542a - Add LICENSE
- Switch to USES=tar
- Cosmetic fixes
- Drop @dirrm* from plist
- Switch to options helpers

Approved by:	portmgr blanket
2015-12-24 11:49:48 +00:00
Martin Wilke
29848a7ea9 - Add DKIM support
- Convert to Options helper

PR:		2028660
Submitted by:	maintainer
Approved by:	mat (mentor)
Differential Revision:	D4428
2015-12-23 23:35:54 +00:00
Vsevolod Stakhov
72b513207d - Update to 1.0.11
- Add newsyslog entry creation [1]
- Add hiredis option (enabled by default) [2]

PR:		205456 [1]
Submitted by:	Alexander Moisseev <moiseev at mezonplus.ru> [1],
		Alexandre Perrin via IRC [2]
2015-12-22 17:33:04 +00:00
Dmitry Marakasov
bdf0104016 - Modernize plist
Approved by:	portmgr blanket
2015-12-21 20:58:08 +00:00
Dmitry Marakasov
a3681ead1f - Modernize plist
Approved by:	portmgr blanket
2015-12-21 20:55:08 +00:00
Dmitry Marakasov
ae97331459 - Add NO_ARCH
- Switch to options helpers
- Drop @dirrm* from plist

Approved by:	portmgr blanket
2015-12-21 20:54:31 +00:00
Sunpoet Po-Chuan Hsieh
28cec6e879 - Update to 2.9.5
Changes:	https://github.com/danchoi/vmail/commits/master
PR:		204867
Submitted by:	sunpoet (myself)
Approved by:	maintainer (timeout, 23 days)
2015-12-21 18:35:42 +00:00
Mathieu Arnold
d091c3f049 Fix build as a user.
Sponsored by:	Absolight
2015-12-21 16:02:50 +00:00
Sunpoet Po-Chuan Hsieh
72ee1dba7a - Sort SUBDIRs 2015-12-21 15:49:39 +00:00
Martin Wilke
132f9fc61e - Update to 0.9.15
PR:		204199
Submitted by:	Ports Fury
Approved by:	mat (mentor)
Differential Revision:	D4617
2015-12-21 13:30:21 +00:00
Antoine Brodin
b19cb9c54f Fix PKGBASE collision with mail/rspamd 2015-12-17 19:25:51 +00:00
Mathieu Arnold
7c47779cb9 Fix usage of ${PERL5}.
${PERL5} points to a specific version of perl, say, perl5.22.1, it is
fine to use it in a ports Makefile to do Perly things, but ports using
it must use ${PERL}, that points to /usr/local/bin/perl so that if the
minor version is updated, the shebang keep working.

While there, make some ports use shebangfix, regen a few patches, and
bump PORTREVISION where a shebang went from PERL5 to PERL.

PR:		205367
With hat:	portmgr
Sponsored by:	Absolight
2015-12-17 17:19:48 +00:00
Vsevolod Stakhov
3ba3a2574f Add rspamd-devel - development version of rspamd spam filter 2015-12-17 16:29:22 +00:00
Jan Beich
93ed85032b audio/soundtouch: update to 1.9.2
ABI isn't compatible, so bump PORTREVISION in consumers.

Changes:	http://www.surina.net/soundtouch/README.html
ACC report:	https://people.freebsd.org/~jbeich/compat_reports/soundtouch/1.9.0_to_1.9.2/compat_report.html
2015-12-16 09:39:40 +00:00
Jan Beich
ab9e0736d5 gecko: drop FreeBSD 8.x and 9.0 support
DragonFly has a similar getchar() workaround in DPorts, so this would be
a bit bumpy due to USES=dos2unix removal causing a patchconflict. However,
OS X (since 10.3) and other BSDs (except OpenBSD) fixed stdio.h instead.

f2cea021ab
1abd6adb31
d782c95120
dd1ce6fd6c
569b0a5190/include/stdio.h
2015-12-16 09:37:45 +00:00
Kurt Jaeger
fb72b35655 mail/dkimproxy: Add IPv6 support, submitter takes MAINTAINER
See also:
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656041

PR:		205300
Submitted by:	Andrey Fesenko <andrey@bsdnir.info>
Reviewed by:	koobs
2015-12-15 18:47:48 +00:00
Martin Wilke
bca8d1d581 - Update to 0.4.10
PR:		205303
Submitted by:	maintainer
Approved by:	mat (mentor)
Differential Revision:	D4567
2015-12-15 14:57:14 +00:00
Adam Weinberger
937e42438a Update dovecot2 to 2.2.21, and bump PORTREVISION in consumers.
While here, fix up some paths in the decode2text plugin, and add a note
to pkg-message about how to make it work. [1]

Changes:
 - doveadm mailbox list (and some others) were broken in v2.2.20
 - director: Fixed making backend changes when running with only a
   single director server.
 - virtual plugin: Fixed crash when trying to open nonexistent
   autocreated backend mailbox.

PR:		205231 [1]
Submitted by:	andrej@ebert.su
2015-12-12 16:47:12 +00:00
Martin Matuska
b9767d7625 Horde package update:
comms/pear-Horde_ActiveSync 2.30.0 -> 2.30.2
devel/pear-Horde_Core 2.22.1 -> 2.22.3
databases/pear-Horde_Db 2.2.3 -> 2.3.0
devel/pear-Horde_Icalendar 2.1.1 -> 2.1.2
mail/pear-Horde_Imap_Client 2.29.3 -> 2.29.4
security/pear-Horde_Perms 2.1.5 -> 2.1.6
2015-12-12 14:29:08 +00:00
Jason Unovitch
0f59cbeda2 mail/py-dkimpy: update 0.5.4 -> 0.5.6
Changes:
2015-12-07 Verion 0.5.6
* Brown paper bag release, 0.5.5 tarball inadvertently included pyc files
  and other artifacts from development
2015-12-07 Version 0.5.5
* Fix and test case for case insensitive subdomain matching.
* Python3 compatibility fixes and test cases thanks to Diane Trout

PR:		205128
Submitted by:	Kevin Golding <ports@caomhin.org> (maintainer)
2015-12-12 01:08:26 +00:00
Pawel Pekala
911977153f Switch to options helpers 2015-12-11 22:34:20 +00:00
Pawel Pekala
fb21ed6e89 Switch to options helper 2015-12-11 22:28:38 +00:00
Kurt Jaeger
5673a4498d mail/postfix-policyd-weight: Fix with new Net::DNS version
- Fix bug that re-appeared after Net::DNS was updated to most recent version

PR:		201753, 205253
Submitted by:	Herbert J. Skuhra <h.skuhra@gmail.com>
2015-12-11 21:14:27 +00:00
Michael Moll
83837b3d0e new port: mail/rubygem-roadie-rails
Hooks Roadie into Rails applications to help with HTML email generation.

WWW: https://github.com/Mange/roadie-rails
2015-12-11 20:39:55 +00:00
Michael Moll
6bb40e5f95 new port: mail/rubygem-roadie
Roadie tries to make sending HTML emails less painful by inlining
stylesheets and rewriting relative URLs in mails.

WWW: https://github.com/Mange/roadie
2015-12-11 20:37:49 +00:00
Martin Wilke
afc52f8ce1 Python binding of the notmuch mail search and indexing library.
WWW: http://notmuchmail.org

PR:		204981
Submitted by:	geier@lostpackets.de
Approved by:  mat (mentor)
Differential Revision:  D4510
2015-12-11 14:29:41 +00:00
Dmitry Marakasov
4babb74c41 - Add LICENSE
- Switch to options helpers
2015-12-11 11:09:26 +00:00
Ryan Steinmetz
2f19f9593a - Bump PORTREVISION after security/clamav update
PR:		205086
Submitted by:	me
2015-12-11 01:08:08 +00:00
Vanilla I. Shu
caf473c824 Upgrade to 2.0.7. 2015-12-10 02:21:04 +00:00
Adam Weinberger
b0d3addb56 Update dovecot2 to 2.2.20, and bump PORTREVISION on antispam-plugin and
pigeonhole.

Also, remove the GC option from dovecot2. As reported in bug #205035,
reported by sebastian@wolfgarten.com, all it does it cause leaks and
spam the logs about it.

Changes:
 + Added mailbox { autoexpunge=<time> } setting. See
   http://wiki2.dovecot.org/MailboxSettings for details.
 + ssl_options: Added support for no_ticket
 + imap/pop3/managesieve-login: Added postlogin_socket=path passdb extra
   field. This allows replacing the default service
   imap/pop3/managesieve {} settings for specific users (e.g. running
   their imap process via valgrind or strace).
 + doveadm fetch: Added date.sent/received/saved.unixtime
 + fs-posix: Added mode=auto parameter to set the created files' and
   directories' mode based on the parent dir if it has setgid-bit.
 + director: Support backends having hostnames, which makes it possible
   to verify their SSL certificates.
 - director: Directors' state became desynchronized if doveadm director
   commands were used to modify the same backend in multiple directors
   at the same time with conflicting changes. This fix includes some
   extra checks, which makes sure that if such a conflict still happens
   it's automatically fixed. In some situations such an automatic fix
   may now be unnecessarily triggered and an error logged.
 - director: Backend tags weren't working correctly.
 - ldap: tls_* settings weren't used for ldaps URIs.
 - ldap, mysql: Fixed setting connect timeout.
 - auth: userdb lookups via auth-worker couldn't change username
 - dsync: Fixed handling deleted directories. Make sure we don't go to
   infinite mailbox renaming loop.
 - imap: Fixed crash in NOTIFY when there were watched namespaces that
   didn't support NOTIFY.
 - imap: After SETMETADATA was used, various commands (especially FETCH)
   could have started hanging when their output was large.
 - stats: Idle sessions weren't refreshed often enough, causing stats
   process to forget them and log errors about unknown sessions when
   they were updated later.
 - stats: Fixed "Duplicate session ID" errors when LMTP delivered to
   multiple recipients and fts_autoindex=yes.
 - zlib plugin: Fixed copying causing cache corruption when zlib_save
   wasn't set, but the source message was compressed.
 - fts-solr: Fixed escaping Solr query parameters.
 - lmtp: quota_full_tempfail=yes was ignored with
   lmtp_rcpt_check_quota=yes
2015-12-09 15:39:21 +00:00
Emanuel Haupt
f161327dc0 Update to 1.2.1 2015-12-09 10:17:40 +00:00
Martin Wilke
8357bb11ba - Fix typo
PR:		202122
Submitted by:	Chris Petrik
Approved by:	mat (mentor)
Differential Revision:	https://reviews.freebsd.org/D4392
2015-12-08 17:47:17 +00:00
Baptiste Daroussin
f3a4c3361f Drop maintainership on a bunch of ports 2015-12-08 14:37:30 +00:00
Sunpoet Po-Chuan Hsieh
ae71f78b74 - Update to 4.1.2
Changes:	https://github.com/smartinez87/exception_notification/blob/master/CHANGELOG.rdoc
2015-12-06 17:52:22 +00:00
Antoine Brodin
0e8c3bf1b3 Update giflib to 5.1.1
PR:		204492
2015-12-03 20:01:03 +00:00
Dmitry Marakasov
daa37a8e0d - Update to 5.2.14
- Pass maintainership to submitter

PR:		204500
Submitted by:	ports@toco-domains.de
MFH:		2015Q4
Security:	8a90dc87-89f9-11e5-a408-00248c0c745d
2015-12-03 16:40:06 +00:00
Mathieu Arnold
99266c47f5 Add two dependencies forgotten in the previous commit.
Pointy hat to:	mat
Sponsored by:	Absolight
2015-12-02 13:29:30 +00:00
Mathieu Arnold
c49f60a339 Add mail/p5-Mojolicious-Plugin-Mail, a Mojolicious Plugin for sending mail.
Sponsored by:	Absolight
2015-12-02 13:22:17 +00:00
Jan Beich
ca345504ce mail/mpop: update description from homepage 2015-12-02 12:36:14 +00:00
Jan Beich
06297ba860 mail/mpop: unbreak build on 11.0-CURRENT after r402658
INFO page is now always regenerated (more correct) except -CURRENT
removed texinfo from base

https://svnweb.freebsd.org/changeset/base/276551

.../build-aux/missing: makeinfo: not found
WARNING: 'makeinfo' is missing on your system.
         You should only need it if you modified a '.texi' file, or
         any other file indirectly affecting the aspect of the manual.
         You might want to install the Texinfo package:
         <http://www.gnu.org/software/texinfo/>
         The spurious makeinfo call might also be the consequence of
         using a buggy 'make' (AIX, DU, IRIX), in which case you might
         want to install GNU make:
         <http://www.gnu.org/software/make/>
Makefile:369: recipe for target 'mpop.info' failed

Pointy hat to:	jbeich (for often only locally testing 11.0)
Reported by:	pkg-fallout
2015-12-02 12:35:46 +00:00
Hajimu UMEMOTO
daa36bfe2b Fix build on 9.X.
Reported by:	Andrea Venturoli <ml__at__netfence.it>
2015-12-02 11:46:15 +00:00
Mark Felder
cf29d5940e mail/archiveopteryx-devel: Update to new snapshot
Notable improvement: PGP mail is now stored correctly!
2015-12-01 20:47:45 +00:00
Sunpoet Po-Chuan Hsieh
2270ccc871 - Update to 1.1.1
Changes:	https://github.com/terceiro/rmail/blob/master/ChangeLog
2015-12-01 16:06:00 +00:00
Hajimu UMEMOTO
8800d58526 Apply upstream patches to fix CVE-2015-8077 and CVE-2015-8078.
Obtained from:	https://cyrus.foundation/cyrus-imapd/patch/?id=745e161c834f1eb6d62fc14477f51dae799e1e08,
		https://cyrus.foundation/cyrus-imapd/patch/?id=6fb6a272171f49c79ba6ab7c6403eb25b39ec1b2
MFH:		2015Q4
Security:	d62ec98e-97d8-11e5-8c0e-080027b00c2e
2015-12-01 14:33:31 +00:00
Hajimu UMEMOTO
be0298fbdc Update to 2.5.7.
This release fixes CVE-2015-8077 and CVE-2015-8078.

MFH:		2015Q4
Security:	d62ec98e-97d8-11e5-8c0e-080027b00c2e
2015-12-01 14:30:48 +00:00
Andrey A. Chernov
da41230aed 1) Makes opendmarc rc script more local: sockets friendly (create
directory with needed permissions, start/stop cleanups).

2) Move pidfile to newly created /var/run/opendmarc by default.
This directory is perfectly suitable and needed mainly for local: sockets,
but to not violate POLA socket still remains as "inet:8893@localhost".

Approved by:    maintainer timeout
2015-12-01 03:02:16 +00:00
Dmitry Marakasov
1d7ea38f94 - Switch to options helpers 2015-11-30 16:52:50 +00:00
Dmitry Marakasov
3c873aa194 - Fix installation, no more need for uidfix
- Pet portlint
2015-11-30 16:48:10 +00:00
Dmitry Marakasov
3767140013 - Switch to options helpers
- Minor cleanup
2015-11-30 16:47:24 +00:00
Dmitry Marakasov
6c34e142aa - Add LICENSE
- Add NO_ARCH
- Switch to options helpers
2015-11-30 16:46:44 +00:00
Vsevolod Stakhov
d8ce832ff3 - Update to 1.6.7 2015-11-30 15:36:10 +00:00
Jan Beich
44a9221460 mail/mpop: update to 1.2.3
- Add CPE information
- Let pkg-config handle flags for WITH_OPENSSL_PORT in order to
  - Make sure ld(1) finds correct library
  - Avoid -I/usr/include -L/usr/lib poisoning ports compiler
- Convert the patch to sed(1) line in order to
  - Respect LOCALBASE for ca_root_nss paths
  - Apply the fix against INFO page as well
  - Avoid having to pet portlint with |make makepatch|
- Simplify GNUTLS=off + OPENSSL=off logic
- Simplify GSASL option a bit more
- Take maintainership

Changes:	http://sourceforge.net/p/mpop/code/ci/e3eff0/log/
2015-11-30 10:05:01 +00:00
Muhammad Moinur Rahman
15712a82b6 mail/imapfilter: Update version 2.6.1=>2.6.3 2015-11-28 14:40:18 +00:00
Jan Beich
2b44ff7dc9 mail/thunderbird: don't depend on already disabled system opus 2015-11-28 14:13:14 +00:00
Jan Beich
41f1e3c1a1 gecko: add missing PORTEPOCH to required libvorbis version
Reported by:	Takeshi Hashimoto
2015-11-28 14:12:40 +00:00
Roman Bogorodskiy
dc5d07fed9 mail/msmtp: update to 1.6.3 2015-11-28 00:18:56 +00:00
Roman Bogorodskiy
ac3c933946 mail/msmtp: fix configuration for gnome password management
In order to enable password management, now '--with-libsecret'
option should be used instead of '--with-gnome-keyring'.

So fix configure args and rename the GNOMEKEYRING option to
LIBSECRET.

Also modernize options usage and bump PORTREVISION due to
package change.

PR:		204760 (with minor edits)
Submitted by:	John Hein
MFH:		2015Q4
2015-11-26 22:20:28 +00:00
Martin Wilke
db53585487 - Take Maintainership
Approved by:	mat (mentor)
2015-11-26 14:39:58 +00:00
Martin Wilke
b233276d78 - Take Maintainership
Approved by:	mat (mentor)
2015-11-26 12:04:00 +00:00
Vsevolod Stakhov
96dfa5abaf - Do not install libmilter.pc
PR:		204807
Submitted by:	pavel at onlyfriends.info
2015-11-26 11:25:41 +00:00
Wen Heping
bd1fa735d8 - Update to 0.15
- Add LICENSE
- Pet portlint

PR:		203980
Submitted by:	ports@toco-domains.de
Approved by:	maintainer(timeout, >30 days)
2015-11-25 06:11:21 +00:00
Sunpoet Po-Chuan Hsieh
c9a79f52ad - Use ASCII characters 2015-11-23 19:01:10 +00:00
Sunpoet Po-Chuan Hsieh
2c18e90c9c - Add rubygem-mail_room 0.5.2
- While I'm here:
  - Add LICENSE_FILE
  - Add NO_ARCH
  - Fix PLIST_FILES

mail_room is a configuration based process that will idle on IMAP connections
and execute a delivery method when a new message is received.
Examples of delivery methods include:

POST to a delivery URL (Postback)
Queue a job to Sidekiq or Que for later processing (Sidekiq or Que)
Log the message or open with LetterOpener (Logger or LetterOpener)

WWW: https://github.com/tpitale/mail_room

PR:		203583
Submitted by:	Michael Fausten <ports@michael-fausten.de>
2015-11-23 18:32:58 +00:00
Sunpoet Po-Chuan Hsieh
a9693e7e3a - Add rubygem-email_reply_parser 0.5.8
- While I'm here:
  - Add LICENSE
  - Add NO_ARCH

EmailReplyParser is a small library to parse plain text email content.
See the rocco-documented source code for specifics on how it works.

WWW: https://github.com/github/email_reply_parser

PR:		203558
Submitted by:	Michael Fausten <ports@michael-fausten.de>
2015-11-23 18:31:26 +00:00
Adam Weinberger
b4a3b2f221 Add two patches from upstream bug #7265, which fixes incompatibilities with
Net::DNS 1.03. The FreeBSD p5-Net-DNS port has been downgraded to 1.02 but
Net::DNS will be re-issued at some point soon. The changes in these patches
seem to work well with Net::DNS 1.02.

While here, add some TEST_DEPENDS so I can run the plugin-based tests as well.

Bump PORTREVISION for spamassassin and japanese/spamassassin.

PR:		204682
Submitted by:	Mark.Martinec@ijs.si
Obtained from:	https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7265
2015-11-23 17:00:18 +00:00
Jason Unovitch
256fab819d mail/phplist: fix spelling error LICENSE_FILe -> LICENSE_FILE (portlint) 2015-11-22 15:56:09 +00:00
Jason Unovitch
fde06c9470 mail/phplist: update 3.2.1 -> 3.2.3
Changes:	https://github.com/phpList/phplist3/compare/v3.2.1...v3.2.3

PR:		204726
Submitted by:	Krzysztof <ports@bsdserwis.com> (maintainer)
2015-11-22 15:54:03 +00:00
Jan Beich
8c436fd7ac mail/thunderbird: update to 38.4.0
Changes:	https://www.mozilla.org/en-US/thunderbird/38.4.0/releasenotes/
MFH:		2015Q4
Security:	9d04936c-75f1-4a2c-9ade-4c1708be5df9
2015-11-21 20:05:03 +00:00