pkgsrc/mail
adam 36437ec4c1 exim exim-html: updated to 4.94
Exim version 4.94
-----------------

JH/01 Avoid costly startup code when not strictly needed.  This reduces time
      for some exim process initialisations.  It does mean that the logging
      of TLS configuration problems is only done for the daemon startup.

JH/02 Early-pipelining support code is now included unless disabled in Makefile.

JH/03 DKIM verification defaults no long accept sha1 hashes, to conform to
      RFC 8301.  They can still be enabled, using the dkim_verify_hashes main
      option.

JH/04 Support CHUNKING from an smtp transport using a transport_filter, when
      DKIM signing is being done.  Previously a transport_filter would always
      disable CHUNKING, falling back to traditional DATA.

JH/05 Regard command-line receipients as tainted.

JH/06 Bug 340: Remove the daemon pid file on exit, whe due to SIGTERM.

JH/07 Bug 2489: Fix crash in the "pam" expansion condition.  It seems that the
      PAM library frees one of the arguments given to it, despite the
      documentation.  Therefore a plain malloc must be used.

JH/08 Bug 2491: Use tainted buffers for the transport smtp context.  Previously
      on-stack buffers were used, resulting in a taint trap when DSN information
      copied from a received message was written into the buffer.

JH/09 Bug 2493: Harden ARC verify against Outlook, whick has been seen to mix
      the ordering of its ARC headers.  This caused a crash.

JH/10 Bug 2492: Use tainted memory for retry record when needed.  Previously when
      a new record was being constructed with information from the peer, a trap
      was taken.

JH/11 Bug 2494: Unset the default for dmarc_tld_file.  Previously a naiive
      installation would get error messages from DMARC verify, when it hit the
      nonexistent file indicated by the default.  Distros wanting DMARC enabled
      should both provide the file and set the option.
      Also enforce no DMARC verification for command-line sourced messages.

JH/12 Fix an uninitialised flag in early-pipelining.  Previously connections
      could, depending on the platform, hang at the STARTTLS response.

JH/13 Bug 2498: Reset a counter used for ARC verify before handling another
      message on a connection.  Previously if one message had ARC headers and
      the following one did not, a crash could result when adding an
      Authentication-Results: header.

JH/14 Bug 2500: Rewind some of the common-coding in string handling between the
      Exim main code and Exim-related utities.  The introduction of taint
      tracking also did many adjustments to string handling.  Since then, eximon
      frequently terminated with an assert failure.

JH/15 When PIPELINING, synch after every hundred or so RCPT commands sent and
      check for 452 responses.  This slightly helps the inefficieny of doing
      a large alias-expansion into a recipient-limited target.  The max_rcpt
      transport option still applies (and at the current default, will override
      the new feature).  The check is done for either cause of synch, and forces
      a fast-retry of all 452'd recipients using a new MAIL FROM on the same
      connection.  The new facility is not tunable at this time.

JH/16 Fix the variables set by the gsasl authenticator.  Previously a pointer to
      library live data was being used, so the results became garbage.  Make
      copies while it is still usable.

JH/17 Logging: when the deliver_time selector ise set, include the DT= field
      on delivery deferred (==) and failed (**) lines (if a delivery was
      attemtped).  Previously it was only on completion (=>) lines.

JH/18 Authentication: the gsasl driver not provides the $authN variables in time
      for the expansion of the server_scram_iter and server_scram_salt options.

WB/01 SPF: DNS lookups for the obsolete SPF RR type done by the libspf2 library
      are now specifically given a NO_DATA response without hitting the system
      resolver.  The library goes on to do the now-standard TXT lookup.
      Use of dnsdb lookups is not affected.

JH/19 Bug 2507: Modules: on handling a dynamic-module (lookups) open failure,
      only retrieve the errormessage once.  Previously two calls to dlerror()
      were used, and the second one (for mainlog/paniclog) retrieved null
      information.

JH/20 Taint checking: disallow use of tainted data for
      - the appendfile transport file and directory options
      - the pipe transport command
      - the autoreply transport file, log and once options
      - file names used by the redirect router (including filter files)
      - named-queue names
      - paths used by single-key lookups
      Previously this was permitted.

JH/21 Bug 2501: Fix init call in the heimdal authenticator.  Previously it
      adjusted the size of a major service buffer; this failed because the
      buffer was in use at the time.  Change to a compile-time increase in the
      buffer size, when this authenticator is compiled into exim.

JH/22 Taint-checking: move to safe-mode taint checking on all platforms.  The
      previous fast-mode was untenable in the face of glibs using mmap to
      support larger malloc requests.

PP/01 Update the openssl_options possible values through OpenSSL 1.1.1c.
      New values supported, if defined on system where compiled:
      allow_no_dhe_kex, cryptopro_tlsext_bug, enable_middlebox_compat,
      no_anti_replay, no_encrypt_then_mac, prioritize_chacha, tlsext_padding

JH/23 Performance improvement in the initial phase of a two-pass queue run.  By
      running a limited number of proceses in parallel, a benefit is gained. The
      amount varies with the platform hardware and load.  The use of the option
      queue_run_in_order means we cannot do this, as ordering becomes
      indeterminate.

JH/24 Bug 2524: fix the cyrus_sasl auth driver gssapi usage.  A previous fix
      had introduced a string-copy (for ensuring NUL-termination) which was not
      appropriate for that case, which can include embedded NUL bytes in the
      block of data.  Investigation showed the copy to actually be needless, the
      data being length-specified.

JH/25 Fix use of concurrent TLS connections under GnuTLS.  When a callout was
      done during a receiving connection, and both used TLS, global info was
      used rather than per-connection info for tracking the state of data
      queued for transmission.  This could result in a connection hang.

JH/26 Fix use of the SIZE parameter on MAIL commands, on continued connections.
      Previously, when delivering serveral messages down a single connection
      only the first would provide a SIZE.  This was due to the size information
      not being properly tracked.

JH/27 Bug 2530: When operating in a timezone with sub-minute offset, such as
      TAI (at 37 seconds currently), pretend to be in UTC for time-related
      expansion and logging.  Previously, spurious values such as a future
      minute could be seen.

JH/28 Bug 2533: Fix expansion of ${tr } item.  When called in some situations
      it could crash from a null-deref.  This could also affect the
      ${addresses: } operator and ${readsock } item.

JH/29 Bug 2537: Fix $mime_part_count.  When a single connection had a non-mime
      message following a mime one, the variable was not reset.

JH/30 When an pipelined-connect fails at the first response, assume incorrect
      cached capability (perhaps the peer reneged?) and immediately retry in
      non-pipelined mode.

JH/31 Fix spurious detection of timeout while writing to transport filter.

JH/32 Bug 2541: Fix segfault on bad cmdline -f (sender) argument.  Previously
      an attempt to copy the string was made before checking it.

JH/33 Fix the dsearch lookup to return an untainted result.  Previously the
      taint of the lookup key was maintained; we now regard the presence in the
      filesystem as sufficient validation.

JH/34 Fix the readsocket expansion to not segfault when an empty "options"
      argument is supplied.

JH/35 The dsearch lookup now requires that the directory is an absolute path.
      Previously this was not checked, and nonempty relative paths made an
      access under Exim's current working directory.

JH/36 Bug 2554: Fix msg:defer event for the hosts_max_try_hardlimit case.
      Previously no event was raised.

JH/37 Bug 2552: Fix the check on spool space during reception to use the SIZE
      parameter supplied by the sender MAIL FROM command.  Previously it was
      ignored, and only the check_spool_space option value for the required
      leeway checked.

JH/38 Fix $dkim_key_length.  This should, after a DKIM verification, present
      the size of the signing public-key.  Previously it was instead giving
      the size of the signature hash.

JH/39 DKIM verification: the RFC 8301 restriction on sizes of RSA keys is now
      the default.  See the (new) dkim_verify_min_keysizes option.

JH/40 Fix a memory-handling bug: when a connection carried multiple messages
      and an ACL use a lookup for checking either the local_part or domain,
      stale data could be accessed.  Ensure that variable references are
      dropped between messages.

JH/41 Bug 2571: Fix SPA authenticator.  Running as a server, an offset supplied
      by the client was not checked as pointing within response data before
      being used.  A malicious client could thus cause an out-of-bounds read and
      possibly gain authentication.  Fix by adding the check.

JH/42 Internationalisation: change the default for downconversion in the smtp
      transport to be "if needed".  Previously it was "as previously set" for
      the message, which usually meant "if needed" for message-submission but
      "no" for everything else.  However, MTAs have been seen using SMTPUTF8
      even when the envelope addresses did not need it, resulting in forwarding
      failures to non-supporting MTAs.  A downconvert in such cases will be
      a no-op on the addresses, merely dropping the use of SMTPUTF8 by the
      transport.  The change does mean that addresses needing conversion will
      be converted when previously a delivery failure would occur.

JH/43 Fix possible long line in DSN.  Previously when a very long SMTP error
      response was received it would be used unchecked in a fail-DSN, violating
      standards on line-length limits.  Truncate if needed.

HS/01 Remove parameters of the link to www.open-spf.org. The linked form
      doesn't work. (Additionally add a new main config option to configure the
      spf_smtp_comment)
2020-06-01 19:42:48 +00:00
..
akonadi *: Remove references to mysql55 2020-05-23 13:08:51 +00:00
alpine Update alpine to 2.22. 2020-05-15 17:25:11 +00:00
amavisd-milter mail/amavisd-milter: remove unknown configure options 2020-05-21 07:08:07 +00:00
amavisd-new erlang, amavisd, policyd: remove redundant replace-interpreter 2020-05-22 18:12:15 +00:00
anomy-sanitizer Update MAINTAINER. 2020-01-07 13:47:41 +00:00
archivemail *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
autorespond
avenger Deal with stricter constness of OpenSSL 1.1. 2019-12-18 12:39:09 +00:00
balsa revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
bbmail
bmf mail: align variable assignments 2019-11-02 16:25:17 +00:00
bogofilter Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
bulk_mailer
clamsmtp
claws-mail mail/claws-mail: suppress USE_TOOLS+=perl warning 2020-05-31 09:31:58 +00:00
claws-mail-archive revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-attachwarner revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-attremover revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-bogofilter revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-cachesaver revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-fetchinfo revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-mailmbox revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-managesieve revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-newmail revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-notification revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-pgp claws-mail: Update to 3.17.4 2019-11-26 19:13:25 +00:00
claws-mail-pgpcore revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-pgpinline revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-pgpmime revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-rssyl revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-smime revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-spamassassin revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-spamreport revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-synce revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-tnef revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
claws-mail-vcalendar revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
clawsker Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
cone revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
coolmail
courier-analog all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
courier-imap (mail/courier-imap) Remove (one more) no-op files from SUBST block 2020-05-21 13:31:59 +00:00
courier-maildir all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
courier-mta mail/courier-*: remove unknown configure option 2020-05-25 05:33:59 +00:00
courier-unicode all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
cucipop mail: align variable assignments 2019-11-02 16:25:17 +00:00
cue cue: Update to 20180813. 2020-03-11 19:20:36 +00:00
cyrus-imapd24 Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
dbmail mail/dbmail: remove unknown configure option 2020-05-23 12:36:35 +00:00
dcc mail/dcc: Add patch to deal with pkgsrc permissions issued 2020-04-12 15:04:22 +00:00
deforaos-mailer deforaos-mailer: fix the PLIST for Gtk-Doc 2020-04-11 21:11:26 +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 *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
dkim-milter *: Remove obsolete BUILDLINK_API_DEPENDS.openssl. 2020-01-25 10:45:10 +00:00
dnsbl-milter mail: align variable assignments 2019-11-02 16:25:17 +00:00
dot-forward all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
dovecot2 mail/dovecot2: update to 2.3.10.1 2020-05-18 14:20:46 +00:00
dovecot2-gssapi dovecot2: updated to 2.3.4 2018-11-30 18:43:09 +00:00
dovecot2-ldap mail/dovecot2: update to 2.3.9.3 2020-02-12 14:01:59 +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 dovecot2-pigeonhole: updated to 0.5.10 2020-03-15 22:52:45 +00:00
dovecot2-sqlite mail/dovecot2: update to 2.3.10.1 2020-05-18 14:20:46 +00:00
drac mail: align variable assignments 2019-11-02 16:25:17 +00:00
dspam mail/dspam: remove unknown configure option 2020-05-23 12:33:22 +00:00
elm
elm-me mail/elm-me: document harmless array[char] 2020-05-21 00:00:46 +00:00
elmo Ignore portability of configure.in after patching configure 2020-04-20 00:40:08 +00:00
enma *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
esmtp *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
etach
evolution Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
evolution-data-server revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
exim exim exim-html: updated to 4.94 2020-06-01 19:42:48 +00:00
exim-html exim exim-html: updated to 4.94 2020-06-01 19:42:48 +00:00
exim3 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
exmh Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
ezmlm all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ezmlm-idx mail/ezmlm-idx: does not have error.h 2020-05-16 14:50:27 +00:00
faces mail: align variable assignments 2019-11-02 16:25:17 +00:00
fastforward all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
fdm *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
feed2exec Use the 0.15.0-tagged distfile directly. Extracted, patched trees 2020-03-31 10:31:30 +00:00
fetchmail fetchmail: update to 6.4.2 2020-02-19 16:48:02 +00:00
fetchmailconf fetchmail: update to 6.4.2 2020-02-19 16:48:02 +00:00
fetchyahoo *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
fix-mime-charset Fix const correctness with C++ compliant string.h 2020-03-26 02:30:49 +00:00
fml mail/fml: remove unknown configure option 2020-05-23 12:49:26 +00:00
fml4 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 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
gmime3 mail/gmime3: remove unknown configure option 2020-05-25 05:34:49 +00:00
gmime24 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
gnarwl *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
GNUMail Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
gnus all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
greetdelay
grepmail *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
greylisting-spp Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
heirloom-mailx *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:10 +00:00
imap-uw-utils *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
imapfilter *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
imapproxy Re-add imapproxy, with updated patches to build with OpenSSL 1.1.1 2020-04-16 14:03:28 +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 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ingo all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
isync *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ja-mh mail/ja-mh: document possible array[char] bug 2020-05-25 05:35:35 +00:00
jchkmail mail: align variable assignments 2019-11-02 16:25:17 +00:00
kimap Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
kmbox Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
kmime Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
ksmtp Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
libesmtp *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:10 +00:00
libetpan mail/libetpan: skip bashisms check for macOS 2020-05-25 05:58:40 +00:00
libmilter mail: align variable assignments 2019-11-02 16:25:17 +00:00
libsieve
libspf2 Add proper autoconfery for res_close(), from maya@ (thanks!). 2018-12-17 19:24:44 +00:00
libsrs2
libsylph *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libytnef set DIST_SUBDIR, and regen distinfo 2019-09-30 15:27:05 +00:00
mail-notification librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +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 Build fix for auth_mkhomedir() that is missing from courrier-authlib 2020-04-16 12:49:34 +00:00
mailfront Restore missing .include of options.mk. 2020-05-23 21:32:14 +00:00
mailgraph all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
mailhops all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
mailman mailman: HOMEPAGE is https 2020-05-15 09:42:43 +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 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 Update MASTER_SITES and HOMEPAGE. 2020-03-13 00:06:46 +00:00
mdfrm Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mess822 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
metamail mail/metamail: fix nonexistent files in REPLACE_CSH 2020-03-22 18:28:15 +00:00
mew mail/mew: clean up SUBST_FILES 2020-05-16 14:54:09 +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 revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
milter-manager *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
milter-regex milter-regex: Strip -Werror 2020-03-06 12:33:03 +00:00
mime-construct Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mimedefang all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
mimp all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
mini_sendmail all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
minimalist Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mlmmj Import mlmmj-1.3.0 from wip 2020-03-31 20:37:47 +00:00
mopher
mpop revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
msmtp revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
mush mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
mutt revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
neomutt neomutt: update to 20200424. 2020-04-26 20:18:56 +00:00
netbiff librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
newmail
newspipe *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
nmh revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
nmzmail
notmuch notmuch: Reuse GPGME_GPG variable rather than inventing our own. 2020-03-25 11:06:19 +00:00
nullmailer revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
oe2mbx mail: align variable assignments 2019-11-02 16:25:17 +00:00
offlineimap mail/offlineimap: clean up REPLACE_PYTHON 2020-05-22 21:35:03 +00:00
opendkim *: Remove obsolete BUILDLINK_API_DEPENDS.openssl. 2020-01-25 10:45:10 +00:00
opendmarc *: Remove obsolete BUILDLINK_API_DEPENDS.openssl. 2020-01-25 10:45:10 +00:00
opensmtpd mail: Mark packages that fail with OpenSSL 1.1 BROKEN 2020-04-24 11:23:07 +00:00
OSBF-lua OSBF-lua: limit to lua 5.2 2020-04-28 09:45:26 +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 revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
p5-Mail-DeliveryStatus-BounceParser Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mail-DKIM mail/p5-Mail-DKIM: fix typo in REPLACE_PERL 2020-03-22 20:38:01 +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 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 all: migrate homepages from http to https 2020-01-26 17:30:40 +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 p5-MailTools: Update to 2.21 2020-03-22 21:07:30 +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 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +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: remove no-op SUBST block 2020-04-25 19:03:16 +00:00
pear-Mail_mimeDecode
perdition Fix building with OpenSSL 1.1. 2020-03-27 20:55:58 +00:00
perdition-bdb
perdition-gdbm
perdition-ldap *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
perdition-mysql
perdition-odbc
perdition-postgresql
pfqueue *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
php-imap mail/php-imap: remove unknow configure option 2020-05-31 16:51:29 +00:00
pine mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
pine-pgp-filters mail: align variable assignments 2019-11-02 16:25:17 +00:00
policyd
policyd-weight erlang, amavisd, policyd: remove redundant replace-interpreter 2020-05-22 18:12:15 +00:00
popa3d all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
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.5.2 2020-05-18 14:21:53 +00:00
postfix-cdb
postfix-ldap mail/postfix: update to 3.5.1 2020-04-26 09:33:25 +00:00
postfix-lmdb
postfix-mysql
postfix-pcre
postfix-pgsql
postfix-sqlite mail/postfix: update to 3.5.1 2020-04-26 09:33:25 +00:00
postforward Revbump all Go packages after default version switch to 1.14. 2020-04-12 11:01:37 +00:00
postgrey all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
postsrsd
prayer prayer: Fix building with OpenSSL 1.1. Disable SSLv3. From Debian. 2020-03-19 11:30:26 +00:00
procmail Update MAINTAINER. 2020-01-07 13:47:41 +00:00
proxsmtp
pst-utils pst-utils: Update to 0.6.75 2020-04-09 14:05:31 +00:00
pulsar *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
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 py-email_validator: updated to 1.1.1 2020-05-29 08:56:54 +00:00
py-flufl.bounce Rewrite PYTHON_VERSIONS_ACCEPTED to PYTHON_VERSIONS_INCOMPATIBLE 2019-09-02 13:33:22 +00:00
py-libgmail *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
py-policyd-spf
py-sendmail-admin
py-spf py-spf: fix PKGNAME and DEPENDS for Python 2.7 2020-04-17 12:02:36 +00:00
py-ukpostcodeparser
py-validate-email-address
pymsgauth mail/pymsgauth: fix location of HTML documentation 2019-10-12 20:12:47 +00:00
qcheck
qconfirm mail/qconfirm: does not have error.h 2020-05-16 15:21:29 +00:00
qgreylist Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
qmail Update to notqmail 1.08 (as qmail-1.03nb49). From the changelog: 2020-05-23 20:50:02 +00:00
qmail-acceptutils mail/qmail-acceptutils: does not have error.h 2020-05-16 15:22:20 +00:00
qmail-autoresponder Restore missing .include of options.mk. 2020-05-23 21:32:14 +00:00
qmail-conf Restore missing .include of options.mk. 2020-05-23 21:32:14 +00:00
qmail-lint Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
qmail-qfilter mail/qmail-qfilter: does not have error.h 2020-05-16 15:25:11 +00:00
qmail-rejectutils mail/qmail-rejectutils: does not have error.h 2020-05-16 15:25:49 +00:00
qmail-run Explicitly ulimit qmailsend. Bump PKGREVISION. 2020-05-19 19:45:58 +00:00
qmail-spp-spf Fix patch checksum. 2018-12-17 02:16:36 +00:00
qmailanalog all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
qmHandle *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
qmqtool all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
qpopper *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
qsmtp Avoid conflicting implicit definition of htonl() on NetBSD. 2020-03-06 20:50:24 +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/queue-repair: allow SUBST to be a no-op 2020-04-25 19:37:01 +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 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
re-alpine re-alpine, alpine: remove workarounds for netbsd<5 2020-04-29 20:28:46 +00:00
relay-ctrl mail/relay-ctrl: does not have error.h 2020-04-27 17:31:07 +00:00
ripmime mail: align variable assignments 2019-11-02 16:25:17 +00:00
rmail-mime
roundcube mail/roundcube: update to 1.4.4 2020-04-30 07:09:34 +00:00
roundcube-plugin-carddav roundcube-plugin-carddav: added version 3.0.3 2020-02-11 20:36:49 +00:00
roundcube-plugin-enigma mail/roundcube-plugin-enigma: update to 1.4.2 2020-01-14 14:31:55 +00:00
roundcube-plugin-password mail/roundcube-plugin-password: update to 1.4.4 2020-04-30 07:11:15 +00:00
roundcube-plugin-zipdownload mail/roundcube-plugin-zipdownload: update to 1.4.2 2020-01-14 14:34:08 +00:00
rspamd rspamd: Update to 2.5 2020-05-18 11:10:56 +00:00
rss2email Update to 3.11. From the changelog: 2019-11-04 00:28:25 +00:00
ruby-actionmailbox60 Remove RUBY_VERSIONS_INCOMPATIBLE for ruby24. 2020-05-21 16:04:21 +00:00
ruby-actionmailer51 mail/ruby-actionmailer51: update to 5.1.7 2020-03-20 15:29:48 +00:00
ruby-actionmailer52 mail/ruby-actionmailer52: update to 5.2.4.3 2020-05-19 15:39:54 +00:00
ruby-actionmailer60 Remove RUBY_VERSIONS_INCOMPATIBLE for ruby24. 2020-05-21 16:04:21 +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.1 2020-03-08 16:04:22 +00:00
ruby-mime-types-data mail/ruby-mime-types-data: update to 3.2020.05.12 2020-05-25 14:01:30 +00:00
ruby-mime-types1
ruby-mime-types2
ruby-mini_mime Regen distinfo 2019-11-12 14:58:13 +00:00
ruby-roadie mail/ruby-roadie: add package version 4.0.0 2020-05-25 14:06:14 +00:00
ruby-roadie-rails mail/ruby-roadie-rails: add package version 2.1.1 2020-05-25 14:09:08 +00:00
ruby-tmail
safecat mail/safecat: does not need the error.h hack 2020-04-27 17:37:37 +00:00
sendmail mail/sendmail: fix build in SUBST_NOOP_OK=no mode 2020-05-16 15:36:24 +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: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
sid-milter *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
sieve-connect Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
sigrot all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
sma mail: align variable assignments 2019-11-02 16:25:17 +00:00
smtp-vilter
smtpfeed
solid-pop3d
spamass-milter all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
spamassassin mail/spamassassin: Remove redundant MESSAGE 2020-03-23 18:46:56 +00:00
spamd *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
spamdyke all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
spamprobe *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
sqlgrey *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ssmtp all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
swaks all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
sylpheed mail/sylpheed: remove unknown configure option 2020-05-31 17:26:30 +00:00
sympa Update to 6.2.54. Main changes since 6.2.16: 2020-04-27 17:57:51 +00:00
t-prot
teapop mail/teapop: remove unknown configure option 2020-05-31 17:34:15 +00:00
thunderbird thunderbird: Update to 68.8.1 2020-05-27 11:40:29 +00:00
thunderbird-enigmail thunderbird-enigmail: update to 2.1.6. 2020-03-31 17:39:18 +00:00
thunderbird-l10n thunderbird-l10n: Update to 68.8.1 2020-05-27 11:42:10 +00:00
thunderbird52 thunderbird: Sync DESCR with reality. 2020-05-14 14:12:46 +00:00
thunderbird52-l10n thunderbird*-l10n: Add explicit dependencies on the main package 2020-03-13 15:48:52 +00:00
thunderbird60 mail/thunderbird60: skip shell portability 2020-05-25 05:36:38 +00:00
thunderbird60-l10n thunderbird*-l10n: Add explicit dependencies on the main package 2020-03-13 15:48:52 +00:00
tmda mail: align variable assignments 2019-11-02 16:25:17 +00:00
tnef *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
tnef2txt
trojita *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
turba mail/turba: clean up and sort REPLACE_FILES 2020-05-22 21:28:52 +00:00
up-imappproxy mail/up-imappproxy: remove obsolete patch, fix directories in README 2020-05-02 19:16:15 +00:00
vm vm: update to 8.2.0b 2018-11-29 00:36:23 +00:00
wl *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
wl-snapshot *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
wmbiff revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
wmmail
xbiff all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xbuffy
xfce4-mailwatch-plugin librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +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
ytnef ytnef: Add COMMENT. Change spaces to tabs to please pkglint. 2019-09-16 00:03:25 +00:00
Makefile mail/Makefile: add and enable ruby-roadie-rails 2020-05-25 14:10:11 +00:00