pkgsrc/mail
triaxx 7a9e6bbd17 fetchmail: update to 6.4.1
upstream cheanges:
------------------
fetchmail-6.4.1 (released 2019-09-28, 27473 LoC):

## REGRESSION FIXES:
* The bug fix Debian Bug#941129 was incomplete and caused
  + a regression in the default file locations, so that fetchmail was no longer
    able to find its configuration files in some situations.
    Reported by Cy Schubert.
  + a regression under _FORTIFY_SOURCE where PATH_MAX > minimal _POSIX_PATH_MAX.

--------------------------------------------------------------------------------

fetchmail 6.4.0 (released 2019-09-27, 27429 LoC):

# NOTE THAT FETCHMAIL IS NO LONGER PUBLISHED THROUGH IBIBLIO.
* They have stopped accepting submissions and consider themselves an archive.

## SECURITY FIXES THAT AFFECT BEHAVIOUR AND MAY REQUIRE RECONFIGURATION
* Fetchmail no longer supports SSLv2.

* Fetchmail no longer attempts to negotiate SSLv3 by default,
  even with --sslproto ssl23. Fetchmail can now use SSLv3, or TLSv1.1 or a newer
  TLS version, with STLS/STARTTLS (it would previously force TLSv1.0 with
  STARTTLS).  If the OpenSSL version used at build and run-time supports these
  versions, --sslproto ssl3 and --sslproto ssl3+ can be used to re-enable SSLv3.
  Doing so is discouraged because the SSLv3 protocol is broken.

  Along the lines suggested - as patch - by Kurt Roeckx, Debian Bug #768843.

  While this change is supposed to be compatible with common configurations,
  users may have to and are advised to change all explicit --sslproto ssl2
  (change to newer protocols required), --sslproto ssl3, --sslproto tls1 to
  --sslproto auto, so that they can benefit from TLSv1.1 and TLSv1.2 where
  supported by the server.

  The --sslproto option now understands the values auto, ssl3+, tls1+, tls1.1,
  tls1.1+, tls1.2, tls1.2+, tls1.3, tls1.3+ (case insensitively), see CHANGES
  below for details.

* Fetchmail defaults to --sslcertck behaviour. A new option --nosslcertck to
  override this has been added, but may be removed in future fetchmail versions
  in favour of another configuration option that makes the insecurity in using
  this option clearer.

## SECURITY FIXES
* Fetchmail prevents buffer overruns in GSSAPI authentication with user names
  beyond c. 6000 characters in length. Reported by Greg Hudson.

## CHANGED REQUIREMENTS
* fetchmail 6.4.0 is written in C99 and requires a SUSv3 (Single Unix
  Specification v3, a superset of POSIX.1-2001 aka. IEEE Std 1003.1-2001 with
  XSI extension) compliant system. For now, a C89 compiler should also work
  if the system is SUSv3 compliant.

  In particular, older fetchmail versions had workaround for several functions
  standardized in the Single Unix Specification v3, these have been removed.

  The trio/ library has been removed from the distribution.

## CHANGES
* fetchmail 6.3.X is unsupported.
* fetchmail now configures OpenSSL support by default.
* fetchmail now requires OpenSSL v1.0.2 or newer.
* Fetchmail now supports --sslproto auto and --sslproto tls1+ (same as ssl23).
* --sslproto tls1.1+, tls1.2+, and tls1.3+ are now supported for
  auto-negotiation with a minimum specified TLS protocol version, and --sslproto
  tls1.1, --sslproto tls1.2 and --sslproto tls1.3 to force the specified TLS
  protocol version. Note that tls1.3 requires OpenSSL v1.1.1 or newer.
* Fetchmail now detects if the server hangs up prematurely during SSL_connect()
  and reports this condition as such, and not just as SSL connection failure.
  (OpenSSL 1.0.2 reported incompatible with pop3.live.com by Jerry Seibert).
* A foreground fetchmail can now accept a few more options while another copy is
  running in the background.
* fetchmail now handles POP3 --keep UID lists more efficiently, by using Rainer
  Weikusat's P-Tree implementation. This reduces the complexity for handling
  a large UIDL from O(n^2) to O(n log n) and becomes noticably faster with
  thousands of kept messages.
  (IMAP does not currently track UIDs and is unaffected.)
  At the same time, the UIDL emulation code for deficient servers has been
  removed. It never worked really well.  Servers that do not implement the
  optional UIDL command only work with --fetchall option set, which in itself is
  incompatible with the --keep option (it would cause message duplication).
* fetchmail, when setting up TLS connections, now uses SSL_set_tlsext_host_name()
  to set up the SNI (Server Name Indication). Some servers (for instance
  googlemail) require SNI when using newer SSL protocols.
* Fetchmail now sets the expected hostname through OpenSSL 1.0.2's new
  X509_VERIFY_PARAM_set1_host() function to enable OpenSSL's native certificate
  verification features.
* fetchmail will drop the connection when fetching with IMAP and receiving an
  unexpected untagged "* BYE" response, to work around certain faulty servers.
* The FETCHMAIL_POP3_FORCE_RETR environment variable is now documented,
  it forces fetchmail, when talking POP3, to always use the RETR command,
  even if it would otherwise use the TOP command.
* Fetchmail's configure stage will try to query pkg-config or pkgconf for libssl
  and libcrypto, in case other system use .pc files to document specific library
  dependencies. (contributed by Fabrice Fontaine, GitLab merge request !14.)
* The gethostbyname() API calls and compatibility functions have been removed.
* These translations are shipped but not installed by default because
  they have less than 500 translated messages out of 714: el fi gl pt_BR sk tr
  -> Greek, Finnish, Galician, Brazilian Portuguese, Slovak, Turkish.
* Fetchmail now refuses delivery if the MDA option contains single-quoted
  expansions.

## FIXES
* Fix a typo in the FAQ. Submitted by David Lawyer, Debian Bug#706776.
* Do not translate header tags such as "Subject:".  Reported by Gonzalo Pérez de
  Olaguer Córdoba, Debian Bug#744907.
* Convert most links from berlios.de to sourceforge.net.
* Report error to stderr, and exit, if --idle is combined with multiple
  accounts.
* Point to --idle from GENERAL OPERATION to clarify --idle and multiple
  mailboxes do not mix.  In response to Jeremy Chadwick's trouble 2014-11-19,
  fetchmail-users mailing list.
* Fix SSL-enabled build on systems that do not declare SSLv3_client_method(),
  or that #define OPENSSL_NO_SSL3 inside #include <openssl/ssl.h>
  Related to Debian Bug#775255. Fixes Debian Bug #804604.
* Version report lists -SSLv3 on SSL-enabled no-ssl3 builds.
* Fetchmail no longer adds a NUL byte to the username in GSSAPI authentication.
  This was reported to break Kerberos-based authentication with Microsoft
  Exchange 2013 by Greg Hudson.
* Set umask properly before writing the .fetchids file, to avoid failing the
  security check on the next run.  Reported by Fabian Raab,
  Fixes Debian Bug#831611.
* When forwarding by LMTP, also check antispam response code when collecting
  the responses after the CR LF . CR LF sequence at the end of the DATA phase.
  (Contributed by Evil.2000, GitLab merge request !12.)
* fetchmail will not try other protocols after a socket error. This avoids
  mismatches of how different prococols see messages as "seen" and re-fetches
  of known mail.  (Fix contributed by Lauri Nurmi, GitLab Merge Request !10.)
* fetchmail no longer reports "System error during SSL_connect(): Success."
  Fixes Debian Bug#928916, reported by Paul Kimoto.
* fetchmailconf would ignore Edit or Delete actions on the first (topmost)
  item in a list (no matter if server list, user list, ...).
* The mimedecode feature now properly detects multipart/mixed-type matches, so
  that quoted-printable-encoded multipart messages can get decoded.
  (Regression in 5.0.0 on 1999-03-27, as a side effect of a PGP-mimedecode fix
  attributed to Henrik Storner.)
* FETCHMAILHOME can now safely be a relative path, which will be qualified
  through realpath(). Previously, it had to be absolute in daemon mode.
  Reported by Alex Andreotti, Debian Bug#941129.
2020-01-01 20:36:53 +00:00
..
akonadi Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
alpine mail: align variable assignments 2019-11-02 16:25:17 +00:00
amavisd-milter mail: align variable assignments 2019-11-02 16:25:17 +00:00
amavisd-new Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
anomy-sanitizer Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
archivemail Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
autorespond Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
avenger Deal with stricter constness of OpenSSL 1.1. 2019-12-18 12:39:09 +00:00
balsa balsa: Update to 2.5.9 2019-11-01 17:24:44 +00:00
bbmail Comment out dead sites (DNS problems). 2017-08-01 16:47:35 +00:00
bmf mail: align variable assignments 2019-11-02 16:25:17 +00:00
bogofilter Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
bulk_mailer
clamsmtp mail/clamsmtp: Add SMF support. Make sure $CLAMAV_USER exists, 2018-01-22 15:50:37 +00:00
claws-mail claws-mail: Disable new plugins by default 2019-11-27 14:25:56 +00:00
claws-mail-archive claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-attachwarner claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-attremover claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-bogofilter claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-cachesaver *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
claws-mail-fetchinfo claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-mailmbox claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-managesieve claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-newmail claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-notification claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-pgp claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-pgpcore claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-pgpinline claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-pgpmime claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-rssyl claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-smime claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-spamassassin claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-spamreport claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-synce *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
claws-mail-tnef claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-vcalendar claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
clawsker Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
cone Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
coolmail
courier-analog Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
courier-imap Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
courier-maildir Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
courier-mta Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
courier-unicode Upgrade mail/courier-unicode to v2.1. 2019-05-24 08:38:28 +00:00
cucipop mail: align variable assignments 2019-11-02 16:25:17 +00:00
cue mail/cue: Fix compiler check via pkglint 2019-11-24 01:04:20 +00:00
cyrus-imapd mail/cyrus-imapd: fix location of HTML documentation 2019-10-12 20:07:40 +00:00
cyrus-imapd23 Drop ftp.cyrusimap.org from MASTER_SITES 2019-12-05 10:57:54 +00:00
cyrus-imapd24 Drop ftp.cyrusimap.org from MASTER_SITES 2019-12-05 10:57:54 +00:00
dbmail Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
dcc Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
deforaos-mailer *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
deliver all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
demime Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
distribute mail: align variable assignments 2019-11-02 16:25:17 +00:00
dk-milter mail: align variable assignments 2019-11-02 16:25:17 +00:00
dkim-milter mail: align variable assignments 2019-11-02 16:25:17 +00:00
dnsbl-milter mail: align variable assignments 2019-11-02 16:25:17 +00:00
dot-forward all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
dovecot mail: align variable assignments 2019-11-02 16:25:17 +00:00
dovecot2 mail/dovecot2: update to 2.3.9.2 2019-12-13 15:32:15 +00:00
dovecot2-gssapi dovecot2: updated to 2.3.4 2018-11-30 18:43:09 +00:00
dovecot2-ldap dovecot2: updated to 2.3.4 2018-11-30 18:43:09 +00:00
dovecot2-mysql dovecot2: updated to 2.3.4 2018-11-30 18:43:09 +00:00
dovecot2-pgsql dovecot2: updated to 2.3.4 2018-11-30 18:43:09 +00:00
dovecot2-pigeonhole dovecot-pigeonhole: updated to 0.5.9 2019-12-05 09:37:35 +00:00
dovecot2-sqlite dovecot2: updated to 2.3.5.2 2019-04-19 05:35:03 +00:00
drac mail: align variable assignments 2019-11-02 16:25:17 +00:00
dspam mail: align variable assignments 2019-11-02 16:25:17 +00:00
elm mail/elm: Install manpages into ${PKGMANDIR}. 2017-08-19 00:20:25 +00:00
elm-me mail: align variable assignments 2019-11-02 16:25:17 +00:00
elmo Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
enma
esmtp
etach Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
etpan Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
evolution evolution: Needs itstool 2019-11-17 19:22:01 +00:00
evolution-data-server evolution-data-server: Needs gdbus-codegen 2019-11-06 22:51:29 +00:00
exim exim: updated to 4.93 2019-12-09 18:46:00 +00:00
exim-html exim: updated to 4.93 2019-12-09 18:46:00 +00:00
exim3 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
exmh Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
ezmlm Avoid conflicting declarations of fork() and vfork(). Should fix SmartOS. 2018-12-17 02:33:13 +00:00
ezmlm-idx Really fix rpaths in installed shlibs on Darwin. Bump PKGREVISION. 2019-06-25 14:39:20 +00:00
faces mail: align variable assignments 2019-11-02 16:25:17 +00:00
fastforward all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
fdm fdm: Add a comment about patch-shm-mmap.c 2019-03-24 14:41:05 +00:00
fetchmail fetchmail: update to 6.4.1 2020-01-01 20:36:53 +00:00
fetchmailconf fetchmail: Follow HOMEPAGE redirect 2019-11-09 11:32:14 +00:00
fetchyahoo mail: align variable assignments 2019-11-02 16:25:17 +00:00
fix-mime-charset Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
fml mail: align variable assignments 2019-11-02 16:25:17 +00:00
fml4 mail: align variable assignments 2019-11-02 16:25:17 +00:00
freepops mail: align variable assignments 2019-11-02 16:25:17 +00:00
fromto mail: align variable assignments 2019-11-02 16:25:17 +00:00
getmail Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
gld *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
gmime gmime: Improve DESCR and mention API version 2017-11-23 15:41:40 +00:00
gmime3 gmime3: update to 3.2.5. 2019-11-26 12:32:30 +00:00
gmime24 gmime24: Improve DESCR and mention API version 2017-11-23 15:41:32 +00:00
gnarwl mail: align variable assignments 2019-11-02 16:25:17 +00:00
GNUMail mail: align variable assignments 2019-11-02 16:25:17 +00:00
gnus *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
greetdelay Comment out dead sites. 2017-08-16 20:45:30 +00:00
grepmail Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
greylisting-spp mail: align variable assignments 2019-11-02 16:25:17 +00:00
heirloom-mailx mail: align variable assignments 2019-11-02 16:25:17 +00:00
hypermail mail/hypermail: fix location of HTML documentation 2019-10-12 20:09:24 +00:00
ifile
im Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
imap-uw imap-uw: remove conditional logic for netbsd 1.x 2018-09-02 00:52:50 +00:00
imap-uw-utils
imapfilter
imapproxy mail: align variable assignments 2019-11-02 16:25:17 +00:00
imapsync Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
imp all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
incm
ingo all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
isync Update to 1.3.1 2019-12-29 01:00:22 +00:00
ja-mh mail: align variable assignments 2019-11-02 16:25:17 +00:00
jchkmail mail: align variable assignments 2019-11-02 16:25:17 +00:00
kimap kimap: add version 19.08.3 2019-11-17 05:34:51 +00:00
kmbox kmbox: add version 19.08.3 2019-11-17 05:38:04 +00:00
kmime kmime: add version 19.08.3 2019-11-17 05:32:25 +00:00
ksmtp ksmtp: add version 19.08.3 2019-11-17 05:40:26 +00:00
libesmtp libesmtp: update to 1.0.6nb4. 2019-09-26 10:16:23 +00:00
libetpan Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
libmilter mail: align variable assignments 2019-11-02 16:25:17 +00:00
libsieve Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libspf2 Add proper autoconfery for res_close(), from maya@ (thanks!). 2018-12-17 19:24:44 +00:00
libsrs2 Follow some http redirects. 2017-08-16 20:21:03 +00:00
libsylph Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libytnef set DIST_SUBDIR, and regen distinfo 2019-09-30 15:27:05 +00:00
mail-notification *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
mailagent Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mailcrypt mailcrypt: Support emacs26. Improve grep-ability. 2018-09-13 14:16:04 +00:00
maildrop mail: align variable assignments 2019-11-02 16:25:17 +00:00
mailfront *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
mailgraph mailgraph: update to 1.14nb6 2019-10-02 14:30:31 +00:00
mailhops mail: align variable assignments 2019-11-02 16:25:17 +00:00
mailman mail: align variable assignments 2019-11-02 16:25:17 +00:00
mailsend mailsend: don't use $(SHELL), execute it from #!/bin/sh 2018-12-07 17:34:57 +00:00
mailserv mail: align variable assignments 2019-11-02 16:25:17 +00:00
mailsort mail: align variable assignments 2019-11-02 16:25:17 +00:00
mailsync all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
mailwrapper mail: align variable assignments 2019-11-02 16:25:17 +00:00
mairix
majordomo Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mb2md Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mblaze Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mdfrm Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mess822 mail: align variable assignments 2019-11-02 16:25:17 +00:00
metamail *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
mew mail: align variable assignments 2019-11-02 16:25:17 +00:00
mhonarc Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mhpgp mhpgp: Import mhpgp-20070530 as mail/mhpgp 2019-05-31 17:09:01 +00:00
milter-greylist mail: align variable assignments 2019-11-02 16:25:17 +00:00
milter-manager mail: align variable assignments 2019-11-02 16:25:17 +00:00
milter-regex milter-regex: Add socket libraries on SunOS. 2018-02-06 13:38:11 +00:00
mime-construct Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mimedefang Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mimp all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
mini_sendmail
minimalist Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mopher Sort PLIST files. 2018-01-01 22:29:15 +00:00
mpop *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
msmtp msmtp: Update to 1.8.7 2019-12-29 12:44:26 +00:00
mush mail: align variable assignments 2019-11-02 16:25:17 +00:00
mutt mutt: Update to version 1.13.2 2019-12-19 15:44:40 +00:00
neomutt neomutt: update to 20191129. 2019-12-18 13:47:58 +00:00
netbiff *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
newmail
newspipe mail: align variable assignments 2019-11-02 16:25:17 +00:00
nmh Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
nmzmail Reset maintainer 2017-09-16 19:26:41 +00:00
notmuch Update to 0.29.3 2019-11-27 13:30:53 +00:00
nullmailer mail: align variable assignments 2019-11-02 16:25:17 +00:00
oe2mbx mail: align variable assignments 2019-11-02 16:25:17 +00:00
offlineimap PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
opendkim make this work with OpenSSL-1.1 2019-11-24 23:20:40 +00:00
opendmarc Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
opensmtpd mail: align variable assignments 2019-11-02 16:25:17 +00:00
OSBF-lua *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
p5-App-Siesh Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Catalyst-View-Email mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Email-Abstract Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Address mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Email-Address-List Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Address-XS mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Email-Date Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Date-Format Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Find Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Folder mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Email-FolderType mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Email-LocalDelivery mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Email-MessageID mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Email-MIME Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-MIME-Attachment-Stripper Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-MIME-ContentType Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-MIME-Encodings Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-MIME-RFC2047 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Reply Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Send Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Sender Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Simple Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Stuff Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Valid Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Email-Valid-Loose Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-GMail-IMAPD Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-IMAP-Admin Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-IMAP-Client Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-Alias mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Mail-Audit Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-AuthenticationResults Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-Box Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-Box-IMAP4 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-Box-POP3 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-ClamAV Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
p5-Mail-DeliveryStatus-BounceParser Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-DKIM Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-Ezmlm Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-IMAPClient Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-ListDetector Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-Mbox-MessageParser Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-Message p5-Mail-Message: remove PLIST since PERL5_PACKLIST is in use 2019-09-02 12:26:09 +00:00
p5-Mail-Milter Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-POP3Client Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-RFC822-Address Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-Sender mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Mail-Sender-Easy mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Mail-Sendmail Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-SPF mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Mail-SPF-Query Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-SRS mail: align variable assignments 2019-11-02 16:25:17 +00:00
p5-Mail-Transport Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-Webmail-Gmail Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-MailTools Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-MIME-Charset Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-MIME-EncWords Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-MIME-Lite (mail/p5-MIME-Lite) Updated to 3.031 2019-11-02 13:36:52 +00:00
p5-MIME-Lite-HTML Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-MIME-tools Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-MIME-Types Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-LMTP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-ManageSieve Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-SMTP-SSL Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-SMTP_auth Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-validMX Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Parse-MIME Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-razor-agents Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Sendmail-AccessDB Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Sendmail-PMilter Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Test-Email Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-URI-imap Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-User-Identity Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
Pantomime mail: align variable assignments 2019-11-02 16:25:17 +00:00
pear-Auth_SASL Use https for pear.php.net. 2019-07-03 07:28:21 +00:00
pear-Mail Use https for pear.php.net. 2019-07-03 07:28:21 +00:00
pear-Mail_Mime mail/pear-Mail_Mime: update to 1.10.4 2019-10-22 07:49:03 +00:00
pear-Mail_mimeDecode
perdition mail: align variable assignments 2019-11-02 16:25:17 +00:00
perdition-bdb
perdition-gdbm Bump PKGREVISION for gdbm shlib major bump 2018-01-28 20:10:34 +00:00
perdition-ldap
perdition-mysql
perdition-odbc
perdition-postgresql
pfqueue all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
php-imap pkgsrc: reset PKGREVISION after lang/php{56,70,71,72} update 2018-03-02 02:16:08 +00:00
pine mail: align variable assignments 2019-11-02 16:25:17 +00:00
pine-pgp-filters mail: align variable assignments 2019-11-02 16:25:17 +00:00
policyd
policyd-weight Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
popa3d
poppassd mail: align variable assignments 2019-11-02 16:25:17 +00:00
poppy Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
postfix postfix: update to 3.4.8 2019-12-09 08:45:14 +00:00
postfix-cdb
postfix-ldap
postfix-lmdb
postfix-mysql
postfix-pcre
postfix-pgsql
postfix-sqlite mail/postfix: update to 3.3.3 2019-04-30 03:41:51 +00:00
postforward Revbump all Go packages after Go 1.12.14 update. 2019-12-13 07:43:47 +00:00
postgrey Avoid an error about pidfile removal on service stop 2019-09-07 17:13:56 +00:00
postsrsd postsrsd: install man page. 2017-12-31 13:22:46 +00:00
prayer mail: align variable assignments 2019-11-02 16:25:17 +00:00
procmail mail: align variable assignments 2019-11-02 16:25:17 +00:00
proxsmtp
pst-utils pst-utils: update to 0.6.72nb1. 2019-11-15 14:39:46 +00:00
pulsar
py-aiosmtpd Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-authres py-authres: updated to 1.2.0 2019-09-02 10:24:14 +00:00
py-email_validator Fixed typo 2018-01-18 08:43:40 +00:00
py-flufl.bounce Rewrite PYTHON_VERSIONS_ACCEPTED to PYTHON_VERSIONS_INCOMPATIBLE 2019-09-02 13:33:22 +00:00
py-libgmail mail: align variable assignments 2019-11-02 16:25:17 +00:00
py-policyd-spf py-policyd-spf: updated to 2.0.2 2018-02-22 10:27:00 +00:00
py-sendmail-admin
py-spf
py-ukpostcodeparser py-ukpostcodeparser: added version 1.1.2 2018-01-18 09:55:00 +00:00
py-validate-email-address Reset maintainer 2017-09-16 19:26:41 +00:00
pymsgauth mail/pymsgauth: fix location of HTML documentation 2019-10-12 20:12:47 +00:00
qcheck
qconfirm Initial import of qconfirm, an implementation of a delivery confirmation 2019-07-09 18:23:15 +00:00
qgreylist Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
qmail mail: align variable assignments 2019-11-02 16:25:17 +00:00
qmail-acceptutils qmail.org lapsed; use netqmail.org or qmailorg.schmonz.com. 2019-07-01 15:31:51 +00:00
qmail-autoresponder Handle _XOPEN_SOURCE on SunOS. Should fix SmartOS build. 2018-12-17 16:15:28 +00:00
qmail-conf mail: align variable assignments 2019-11-02 16:25:17 +00:00
qmail-lint Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
qmail-qfilter Remove unnecessary special-case TMPDIR handling. Upstream says typical 2017-10-28 15:56:06 +00:00
qmail-rejectutils qmail.org lapsed; use netqmail.org or qmailorg.schmonz.com. 2019-07-01 15:31:51 +00:00
qmail-run Drop -4 from qmailqread, no longer needed by ucspi-tcp6. Bump version. 2019-08-20 02:42:47 +00:00
qmail-spp-spf Fix patch checksum. 2018-12-17 02:16:36 +00:00
qmailanalog Sort PLIST files. 2018-01-01 22:29:15 +00:00
qmHandle Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
qmqtool Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
qpopper mail: align variable assignments 2019-11-02 16:25:17 +00:00
qtools
queue-fix all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
queue-repair mail: align variable assignments 2019-11-02 16:25:17 +00:00
quickml mail: align variable assignments 2019-11-02 16:25:17 +00:00
R-mime Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
rblcheck
re-alpine mail: align variable assignments 2019-11-02 16:25:17 +00:00
relay-ctrl all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
ripmime mail: align variable assignments 2019-11-02 16:25:17 +00:00
rmail-mime
roundcube roundcube: install 'installer' directory for easier installation/upgrade 2019-11-19 05:26:21 +00:00
roundcube-plugin-enigma mail: align variable assignments 2019-11-02 16:25:17 +00:00
roundcube-plugin-password mail/roundcube-plugin-password: update to 1.3.10 2019-09-01 13:10:39 +00:00
roundcube-plugin-zipdownload mail/roundcube-plugin-zipdownload: update to 1.3.10 2019-09-01 13:11:47 +00:00
rspamd rspamd: update to 2.2 2019-12-08 09:32:05 +00:00
rss2email Update to 3.11. From the changelog: 2019-11-04 00:28:25 +00:00
ruby-actionmailer42 mail/ruby-actionmailer42: update to 4.2.11.1 2019-04-14 10:14:57 +00:00
ruby-actionmailer51 mail/ruby-actionmailer51: update to 5.1.6.2 2019-04-14 10:24:20 +00:00
ruby-actionmailer52 mail/ruby-actionmailer52: update to 5.2.3 2019-04-14 10:34:27 +00:00
ruby-mail mail/ruby-mail: update to 2.7.1 2019-02-03 15:34:51 +00:00
ruby-mailfactory
ruby-mime-types mail/ruby-mime-types: update to 3.3 2019-11-02 15:10:29 +00:00
ruby-mime-types-data mail/ruby-mime-types-data: update to 3.2019.1009 2019-11-02 15:07:16 +00:00
ruby-mime-types1
ruby-mime-types2
ruby-mini_mime Regen distinfo 2019-11-12 14:58:13 +00:00
ruby-tmail Comment out dead sites. 2017-09-04 18:00:49 +00:00
safecat Fix previous: swap link order to unbreak at least NetBSD and SmartOS. 2018-12-17 02:56:42 +00:00
sendmail To resole hostname to IPv6 addresses gethostbyname2() is needed. 2019-12-03 18:51:02 +00:00
sendmail-cidrexpand
sendmail-qtool Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
sendymail Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
serialmail all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
sid-milter Comment out dead sites. 2017-09-04 18:00:49 +00:00
sieve-connect Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
sigrot
sma mail: align variable assignments 2019-11-02 16:25:17 +00:00
smtp-vilter mail/*: fix pkglint warnings 2018-02-02 00:20:44 +00:00
smtpfeed
solid-pop3d Sort PLIST files. 2018-01-01 22:29:15 +00:00
spamass-milter
spamassassin mail: align variable assignments 2019-11-02 16:25:17 +00:00
spamd *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
spamdyke all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
spamprobe
sqlgrey Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
squirrelmail Bump PKGREVISION by changing of default PHP version. 2019-12-09 14:20:54 +00:00
squirrelmail-decode Bump PKGREVISION by changing of default PHP version. 2019-12-09 14:20:54 +00:00
squirrelmail-locales
sqwebmail Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
ssmtp mail: align variable assignments 2019-11-02 16:25:17 +00:00
swaks Update to 20190914.0. From the changelog: 2019-12-02 16:42:14 +00:00
sylpheed *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
sympa mail: align variable assignments 2019-11-02 16:25:17 +00:00
t-prot
teapop Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
thunderbird Update to 68.3.1 2019-12-29 00:51:06 +00:00
thunderbird-enigmail thunderbird-enigmail: update to 2.1.3. 2019-11-06 15:45:07 +00:00
thunderbird-l10n Update to 68.3.1 2019-12-29 00:52:02 +00:00
thunderbird52 mail: align variable assignments 2019-11-02 16:25:17 +00:00
thunderbird52-l10n mail: align variable assignments 2019-11-02 16:25:17 +00:00
thunderbird60 Update to 60.9.1 2019-12-28 05:55:53 +00:00
thunderbird60-l10n Update to 60.9.1 2019-12-28 05:57:15 +00:00
tmda mail: align variable assignments 2019-11-02 16:25:17 +00:00
tnef Update tnef to version 1.4.18 2019-11-12 19:58:41 +00:00
tnef2txt
trojita Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
turba mail: align variable assignments 2019-11-02 16:25:17 +00:00
up-imapproxy mail: align variable assignments 2019-11-02 16:25:17 +00:00
vm vm: update to 8.2.0b 2018-11-29 00:36:23 +00:00
wl emacs22*, emacs23*, emacs24*: remove unmaintained emacs versions 2017-09-29 12:40:26 +00:00
wl-snapshot mail: align variable assignments 2019-11-02 16:25:17 +00:00
wmbiff *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
wmmail
xbiff xbiff: update to 1.0.4. 2019-11-14 11:01:30 +00:00
xbuffy Sort PLIST files. 2018-01-01 22:29:15 +00:00
xfce4-mailwatch-plugin Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
xfmail Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
xmailbox
xmailwatcher mail: align variable assignments 2019-11-02 16:25:17 +00:00
YoSucker Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
ytnef ytnef: Add COMMENT. Change spaces to tabs to please pkglint. 2019-09-16 00:03:25 +00:00
Makefile mail: add kimap kmbox kmime ksmtp 2019-11-17 05:42:30 +00:00