pkgsrc/mail
taca ed9624858a mail/dovecot2: update to 2.3.13
Update mail/dovecot2 pacakge to 2.3.13, including security fixes.


v2.3.13 2021-01-04	Aki Tuomi <aki.tuomi@open-xchange.com>

	* CVE-2020-24386: Specially crafted command can cause IMAP hibernate to
	  allow logged in user to access other people's emails and filesystem
	  information.
	* Metric filter and global event filter variable syntax changed to a
	  SQL-like format. See https://doc.dovecot.org/configuration_manual/event_filter/
	* auth: Added new aliases for %{variables}. Usage of the old ones is
	  possible, but discouraged.
	* auth: Removed RPA auth mechanism, SKEY auth mechanism, NTLM auth
	  mechanism and related password schemes.
	* auth: Removed passdb-sia, passdb-vpopmail and userdb-vpopmail.
	* auth: Removed postfix postmap socket
	+ auth: Added new fields for auth server events. These fields are now
	  also available for all auth events. See
	  https://doc.dovecot.org/admin_manual/list_of_events/#authentication-server
	  for details.
	+ imap-hibernate: Added imap_client_hibernated, imap_client_unhibernated
	  and imap_client_unhibernate_retried events. See
	  https://doc.dovecot.org/admin_manual/list_of_events/ for details.
	+ lib-index: Added new mail_index_recreated event. See
	  https://doc.dovecot.org/admin_manual/list_of_events/#mail-index-recreated
	+ lib-sql: Support TLS options for cassandra driver. This requires
	  cpp-driver v2.15 (or later) to work reliably.
	+ lib-storage: Missing $HasAttachment / $HasNoAttachment flags are now
	  added to existing mails if mail_attachment_detection_option=add-flags
	  and it can be done inexpensively.
	+ login proxy: Added login_proxy_max_reconnects setting (default 3) to
	  control how many reconnections are attempted.
	+ login proxy: imap/pop3/submission/managesieve proxying now supports
	  reconnection retrying on more than just connect() failure. Any error
	  except a non-temporary authentication failure will result in reconnect
	  attempts.
	- auth: Lua passdb/userdb leaks stack elements per call, eventually
	  causing the stack to become too deep and crashing the auth or
	  auth-worker process.
	- auth: SASL authentication PLAIN mechanism could be used to trigger
	  read buffer overflow. However, this doesn't seem to be exploitable in
	  any way.
	- auth: v2.3.11 regression: GSSAPI authentication fails because dovecot
	  disallows NUL bytes for it.
	- dict: Process used too much CPU when iterating keys, because each key
	  used a separate write() syscall.
	- doveadm-server: Crash could occur if logging was done outside command
	  handling. For example http-client could have done debug logging
	  afterwards, resulting in either segfault or
	  Panic: file http-client.c: line 642 (http_client_context_close):
	  assertion failed: (cctx->clients_list == NULL).
	- doveadm-server: v2.3.11 regression: Trying to connect to doveadm server
	  process via starttls assert-crashed if there were no ssl=yes listeners:
	  Panic: file master-service-ssl.c: line 22 (master_service_ssl_init):
	  assertion failed: (service->ssl_ctx_initialized).
	- fts-solr: HTTP requests may have assert-crashed:
	  Panic: file http-client-request.c: line 1232 (http_client_request_send_more):
	  assertion failed: (req->payload_input != NULL)
	- imap: IMAP NOTIFY could crash with a segmentation fault due to a bad
	  configuration that causes errors. Sending the error responses to the
	  client can cause the segmentation fault. This can for example happen
	  when several namespaces use the same mail storage location.
	- imap: IMAP NOTIFY used on a shared namespace that doesn't actually
	  exist (e.g. public namespace for a nonexistent user) can crash with a panic:
	  Panic: Leaked view for index /tmp/home/asdf/mdbox/dovecot.list.index: Opened in (null):0
	- imap: IMAP session can crash with QRESYNC extension if many changes
	  are done before asking for expunged mails since last sync.
	- imap: Process might hang indefinitely if client disconnects after
	  sending some long-running commands pipelined, for example FETCH+LOGOUT.
	- lib-compress: Mitigate crashes when configuring a not compiled in
	  compression. Errors with compression configuration now distinguish
	  between not supported and unknown.
	- lib-compression: Using xz/lzma compression in v2.3.11 could have
	  written truncated output in some situations. This would result in
	  "Broken pipe" read errors when trying to read it back.
	- lib-compression: zstd compression could have crashed in some situations:
	  Panic: file ostream.c: line 287 (o_stream_sendv_int): assertion failed: (!stream->blocking)
	- lib-dict: dict client could have crashed in some rare situations when
	  iterating keys.
	- lib-http: Fix several assert-crashes in HTTP client.
	- lib-index: v2.3.11 regression: When mails were expunged at the same
	  time as lots of new content was being saved to the cache (e.g. cache
	  file was lost and is being re-filled) a deadlock could occur with
	  dovecot.index.cache / dovecot.index.log.
	- lib-index: v2.3.11 regression: dovecot.index.cache file was being
	  purged (rewritten) too often when it had a field that hadn't been
	  accessed for over 1 month, but less than 2 months. Every cache file
	  change caused a purging in this situation.
	- lib-mail: MIME parts were not returned correctly by Dovecot MIME parser.
	  Regression caused by fixing CVE-2020-12100.
	- lib-mail: When max nested MIME parts were reached, IMAP BODYSTRUCTURE
	  was written in a way that may have caused confusion for both IMAP
	  clients and Dovecot itself when parsing it. The truncated part is now
	  written out using application/octet-stream MIME type.
	- lib-mail: v2.3.11 regression: Mail delivery / parsing crashed when the
	  10000th MIME part was message/rfc822 (or if parent was multipart/digest):
	  Panic: file message-parser.c: line 167 (message_part_append):
	  assertion failed: (ctx->total_parts_count <= ctx->max_total_mime_parts).
	- lib-oauth2: Dovecot incorrectly required oauth2 server introspection
	  reply to contain username with invalid token.
	- lib-ssl-iostream, lib-dcrypt: Fix building with OpenSSL that has
	  deprecated APIs disabled.
	- lib-storage: When mail's size is different from the cached one (in
	  dovecot.index.cache or Maildir S=size in the filename), this is
	  handled by logging "Cached message size smaller/larger than expected"
	  error. However, in some situations this also ended up crashing with:
	  Panic: file istream.c: line 315 (i_stream_read_memarea):
	  assertion failed: (old_size <= _stream->pos - _stream->skip).
	- lib-storage: v2.3 regression: Copying/moving mails was taking much more
	  memory than before. This was mainly visible when copying/moving
	  thousands of mails in a single transaction.
	- lib-storage: v2.3.11 regression: Searching messages assert-crashed
	  (without FTS): Panic: file message-parser.c: line 174 (message_part_finish):
	  assertion failed: (ctx->nested_parts_count > 0).
	- lib: Dovecot v2.3 moved signal handlers around in ioloops,
	  causing more CPU usage than in v2.2.
	- lib: Fixed JSON parsing: '\' escape sequence may have wrongly resulted
	  in error if it happened to be at read boundary. Any NUL characters and
	  '\u0000' will now result in parsing error instead of silently
	  truncating the data.
	- lmtp, submission: Server may hang if SSL client connection disconnects
	  during the delivery. If this happened repeated, it could have ended
	  up reaching process_limit and preventing any further lmtp/submission
	  deliveries.
	- lmtp: Proxy does not always properly log TLS connection problems as
	  errors; in some cases, only a debug message is logged if enabled.
	- lmtp: The LMTP service can hang when commands are pipelined. This can
	  particularly occur when one command in the middle of the pipeline fails.
	  One example of this occurs for proxied LMTP transactions in which the
	  final DATA or BDAT command is pipelined after a failing RCPT command.
	- login-proxy: The login_source_ips setting has no effect, and therefore
	  the proxy source IPs are not cycled through as they should be.
	- master: Process was using 100% CPU in some situations when a broken
	  service was being throttled.
	- pop3-login: POP3 login would fail with "Input buffer full" if the
	  initial response for SASL was too long.
	- stats: Crash would occur when generating openmetrics data for metrics
	  using aggregating functions.
2021-01-04 14:57:18 +00:00
..
akonadi *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
alpine Update alpine to 2.24. 2020-11-23 16:36:03 +00:00
amavisd-milter mail/amavisd-milter: remove unknown configure options 2020-05-21 07:08:07 +00:00
amavisd-new *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
anomy-sanitizer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
archivemail Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
autorespond
avenger *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
balsa *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
bbmail
bmf mail: align variable assignments 2019-11-02 16:25:17 +00:00
bogofilter *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
bulk_mailer
clamsmtp
claws-mail claws-mail: Fix MASTER_SITES 2020-12-08 09:22:14 +00:00
claws-mail-archive claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-attachwarner claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-attremover claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-bogofilter claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-cachesaver *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
claws-mail-fetchinfo claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-mailmbox claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-managesieve *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
claws-mail-newmail claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-notification claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +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.8 2020-11-26 15:06:35 +00:00
claws-mail-pgpinline claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-pgpmime claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-rssyl claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-smime claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-spamassassin claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-spamreport claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-synce *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
claws-mail-tnef claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
claws-mail-vcalendar claws-mail: Update to 3.17.8 2020-11-26 15:06:35 +00:00
clawsker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cone *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
coolmail
courier-analog *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
courier-imap Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
courier-maildir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
courier-mta Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +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 revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
dbmail *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
dcc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
deforaos-mailer *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
deliver
demime *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
distribute *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
dk-milter *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
dkim-milter dkim-milter: NOT_FOR_UNPRIVILEGED (because of PKG_DESTDIR_SUPPORT=destdir) 2020-08-18 03:30:03 +00:00
dnsbl-milter mail: align variable assignments 2019-11-02 16:25:17 +00:00
dot-forward Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
dovecot2 mail/dovecot2: update to 2.3.13 2021-01-04 14:57:18 +00:00
dovecot2-gssapi mail/dovecot2: update to 2.3.13 2021-01-04 14:57:18 +00:00
dovecot2-ldap mail/dovecot2: update to 2.3.9.3 2020-02-12 14:01:59 +00:00
dovecot2-mysql
dovecot2-pgsql
dovecot2-pigeonhole Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
dovecot2-sqlite mail/dovecot2: update to 2.3.13 2021-01-04 14:57:18 +00:00
drac mail: align variable assignments 2019-11-02 16:25:17 +00:00
dspam *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
elm
elm-me Use http with ftp.funet.fi 2020-09-02 22:16:48 +00:00
elmo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +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 revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
evolution-data-server (mail/evolution-data-server) remove p5-XML-Parser from TOOL_DEPENDS, tks wiz@) 2020-11-08 00:56:53 +00:00
exim *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
exim-html exim exim-html: updated to 4.94 2020-06-01 19:42:48 +00:00
exim3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
exmh *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
ezmlm Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
ezmlm-idx Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
faces *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
fastforward Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
fdm fdm: Sync OAUTHBEARER patch with the version applied upstream 2020-09-03 10:46:38 +00:00
feed2exec Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
fetchmail mail/fetchmail: fix build on Darwin with gssapi or kerberos options 2020-12-14 00:41:03 +00:00
fetchmailconf Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
fetchyahoo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
fix-mime-charset *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
fml *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
fml4 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
fromto *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
getmail Update to 5.15. From the changelog: 2020-12-16 20:19:43 +00:00
gld building the gld package against pgsql broke, this commit fixes it. 2020-11-01 14:21:43 +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 revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gnus all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
greetdelay
grepmail *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
greylisting-spp *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
heirloom-mailx heirloom-mailx: wants mime.types in SYSCONFDIR 2020-06-09 10:36:43 +00:00
hypermail mail/hypermail: fix location of HTML documentation 2019-10-12 20:09:24 +00:00
ifile
im *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
imap-uw Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
imap-uw-utils Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
imapfilter imapfilter: Update to 2.7.4 - via snow flurry in wip, thx! 2020-11-26 20:17:56 +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 PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
imp
incm all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ingo
isync *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +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 revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kmbox *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
kmime *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
ksmtp *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +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
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 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
mailagent *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mailcrypt
maildrop Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
mailfront Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
mailgraph *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mailhops *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mailman Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
mailsend
mailserv *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mailsort *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
mailsync Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
mailwrapper mail: align variable assignments 2019-11-02 16:25:17 +00:00
mairix (mail/mairix) build fix, probably bison 3.4.2 to 3.7.1 adaptation 2020-09-26 14:25:52 +00:00
majordomo majordomo: make the List-Id header RFC2919 compliant 2020-12-20 12:50:44 +00:00
mb2md *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mblaze Update to 1.0, provided by maintainer in PR pkg/55732. From the changelog: 2020-10-19 08:18:46 +00:00
mdfrm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mess822 Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +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 PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +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 PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mimedefang *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mimp
mini_sendmail mini_sendmail: avoid reference to non-existent package 2020-12-05 11:41:48 +00:00
minimalist *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mlmmj Import mlmmj-1.3.0 from wip 2020-03-31 20:37:47 +00:00
mopher
mpop mpop: Update to 1.4.10 2020-06-18 20:50:26 +00:00
msmtp msmtp: Update to 1.8.12 2020-09-28 10:54:27 +00:00
mush mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
mutt mutt: Update to version 2.0.4 2021-01-01 09:19:27 +00:00
neomutt neomutt: update to 20201127. 2020-12-09 23:10:01 +00:00
netbiff *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
newmail
newspipe newspipe: mark as python 2.x only 2020-12-28 21:27:58 +00:00
nmh revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
nmzmail
nopop3d Fix RCS Id. 2020-11-23 18:17:22 +00:00
notmuch notmuch: Update to 0.31.3 2021-01-02 14:51:55 +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 Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
opendkim *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
opendmarc Updated mail/opendmarc to 1.4.0beta1 2020-12-24 01:10:22 +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 PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Catalyst-View-Email *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Abstract *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Address *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Address-List *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Address-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Date *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Date-Format *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Find *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Folder *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-FolderType *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-LocalDelivery *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-MessageID *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-MIME p5-Email-MIME: update to 1.949. 2020-09-07 11:30:10 +00:00
p5-Email-MIME-Attachment-Stripper *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-MIME-ContentType p5-Email-MIME-ContentType: update to 1.024. 2020-09-07 11:29:07 +00:00
p5-Email-MIME-Encodings *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-MIME-RFC2047 *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Email-Reply *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Email-Send *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Sender p5-Email-Sender: update to 1.300034. 2020-09-07 11:30:48 +00:00
p5-Email-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Stuff *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Valid *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Email-Valid-Loose *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-GMail-IMAPD *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IMAP-Admin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IMAP-Client *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Alias *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Audit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-AuthenticationResults p5-Mail-AuthenticationResults: update to 1.20200824.1. 2020-09-07 11:31:59 +00:00
p5-Mail-Box p5-Mail-Box: update to 3.009. 2020-09-07 11:33:19 +00:00
p5-Mail-Box-IMAP4 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Box-POP3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-DeliveryStatus-BounceParser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-DKIM p5-Mail-DKIM: update to 1.20200907. 2020-09-13 07:57:39 +00:00
p5-Mail-Ezmlm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-IMAPClient p5-Mail-IMAPClient: update to 3.42. 2020-09-07 11:44:23 +00:00
p5-Mail-ListDetector *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Mbox-MessageParser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Message p5-Mail-Message: update to 3.009. 2020-09-07 11:45:02 +00:00
p5-Mail-Milter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-POP3Client *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-RFC822-Address *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Sender *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Sender-Easy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Sendmail *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-SPF *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-SPF-Query *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-SRS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Transport *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mail-Webmail-Gmail *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MailTools *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MIME-Charset *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MIME-EncWords *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MIME-Lite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MIME-Lite-HTML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MIME-tools *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MIME-Types *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-LMTP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-ManageSieve *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-SMTP-SSL *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-SMTP_auth *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-validMX p5-Net-validMX: update to 2.5.0. 2020-09-07 11:45:46 +00:00
p5-Parse-MIME *: remove p5-JSON-PP, part of perl 2020-09-04 11:51:12 +00:00
p5-razor-agents *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sendmail-AccessDB *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sendmail-PMilter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Email *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-URI-imap *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-User-Identity *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
Pantomime *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +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.9 2020-06-30 15:26:02 +00:00
pear-Mail_mimeDecode
perdition Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
perdition-bdb Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
perdition-gdbm Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
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 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
php-imap Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
php-mailparse mail/php-mailparse: update to 3.1.1 2021-01-03 07:48:26 +00:00
pine Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
pine-pgp-filters pine-pgp-filters: update to 1.8. 2020-09-07 06:38:27 +00:00
policyd
policyd-weight *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +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 PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
postfix postfix: updated to 3.5.8 2020-11-22 11:14:44 +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 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
postforward Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
postgrey *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
postsrsd
prayer Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
procmail Update MAINTAINER. 2020-01-07 13:47:41 +00:00
proxsmtp
pst-utils *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
pulsar *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
py-aiosmtpd py-aiosmtpd: updated to 1.2.2 2020-11-26 10:40: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-imapclient Add py-imapclient-2.1.0: 2020-11-01 20:54:11 +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 Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
qcheck
qconfirm Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
qgreylist *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
qmail Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
qmail-acceptutils Update to 20201214. From the changelog: 2020-12-14 11:57:25 +00:00
qmail-autoresponder Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
qmail-conf Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
qmail-lint *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
qmail-qfilter Remove unneeded bglibs dependency. Bump PKGREVISION. 2021-01-01 15:07:59 +00:00
qmail-rejectutils Define QMAIL_QUEUE_CUSTOM_ERROR. Ride recent update. 2020-12-15 11:00:24 +00:00
qmail-run Depend on qmail-acceptutils 20201214 for fixsmtpio(8) segfault fix. 2020-12-14 11:59:45 +00:00
qmail-spp-spf
qmailanalog Support PKGMANDIR. 2020-11-30 13:42:04 +00:00
qmHandle *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
qmqtool *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
qpopper *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
qremote Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
qsmtp Update to 0.38. From the changelog: 2020-10-10 10:01:38 +00:00
qtools Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
queue-fix Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
queue-repair Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
quickml mail: align variable assignments 2019-11-02 16:25:17 +00:00
R-mime (mail/R-mime) Updated 0.7 to 0.9. make test runs fine 2020-09-20 06:03:19 +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 Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
ripmime mail: align variable assignments 2019-11-02 16:25:17 +00:00
rmail-mime
roundcube mail/roundcube: update to 1.4.10 2020-12-28 08:58:10 +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: reset PKGREVISION 2020-12-28 08:59:53 +00:00
roundcube-plugin-password mail/roundcube: update to 1.4.10 2020-12-28 08:58:10 +00:00
roundcube-plugin-zipdownload mail/roundcube: update to 1.4.10 2020-12-28 08:58:10 +00:00
rspamd *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
rss2email Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
ruby-actionmailbox60 www/ruby-rails60: update to 6.0.3.4 2020-10-19 14:50:30 +00:00
ruby-actionmailer52 www/ruby-rails52: update to 5.2.4.4 2020-09-10 14:13:11 +00:00
ruby-actionmailer60 www/ruby-rails60: update to 6.0.3.4 2020-10-19 14:50:30 +00:00
ruby-mail
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 Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +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 PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
sendymail *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
serialmail Only a few djb-nonlicense packages remain. Retire DJB_RESTRICTED, 2020-11-19 08:11:18 +00:00
sid-milter *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
sieve-connect sieve-connect: depend on p5-Term-ReadLine-Gnu. 2020-09-06 12:04:44 +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 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
spamd
spamdyke Build with OpenSSL 1.1.x. While here, wrap long line in MESSAGE. 2020-07-02 08:50:09 +00:00
spamprobe *: Apply revbump for graphics/giflib API change. 2020-06-05 12:48:58 +00:00
sqlgrey *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
squirrelmail *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
squirrelmail-decode Bump PKGREVISION by changing of default PHP version. 2019-12-09 14:20:54 +00:00
squirrelmail-locales
sqwebmail Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
ssmtp all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
swaks Update to 20201014.0. From the changelog: 2020-10-17 08:36:26 +00:00
sylpheed *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
sympa *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
t-prot
teapop *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
thunderbird thunderbird: Update to 78.6.0 2021-01-01 12:58:32 +00:00
thunderbird-l10n thunderbird-l10n: Update to 78.6.0 2021-01-01 12:59:52 +00:00
thunderbird52 *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
thunderbird52-l10n thunderbird*-l10n: Add explicit dependencies on the main package 2020-03-13 15:48:52 +00:00
thunderbird68 *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
thunderbird68-l10n mail/thunderbird68-l10n: import thunderbird68-l10n-68.12.0 2020-09-03 20:25:23 +00:00
tmda Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
tnef *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
tnef2txt
trojita *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
turba *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
up-imappproxy mail/up-imappproxy: remove obsolete patch, fix directories in README 2020-05-02 19:16:15 +00:00
vm
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 fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
wmmail
xbiff all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xbuffy
xfce4-mailwatch-plugin xfce4-mailwatch-plugin: update to 1.3.0 2020-12-02 00:56:50 +00:00
xfmail
xmailbox
xmailwatcher mail: align variable assignments 2019-11-02 16:25:17 +00:00
ytnef *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
Makefile Add and enable qremote. 2020-11-02 10:25:50 +00:00