Commit graph

295 commits

Author SHA1 Message Date
Josef Schlehofer
e1a2d908c3
msmtp: update to version 1.8.1.9
Changelog:
https://marlam.de/msmtp/news/msmtp-1-8-19/

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit 173faad334)
2021-12-04 09:19:56 +01:00
Josef Schlehofer
45218f2059
msmtp: update to version 1.8.17
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit 18261fcd31)
2021-12-01 00:26:04 +01:00
Josef Schlehofer
d6b64bb653
msmtp: update to version 1.8.15
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit 110abfb9f6)
2021-07-06 17:12:16 +02:00
Josef Schlehofer
aae5144e73
msmtp: update to version 1.8.14
Release notes for 1.8.1.3:
https://marlam.de/msmtp/news/msmtp-1-8-13/

Release notes for 1.8.1.4:
https://marlam.de/msmtp/news/msmtp-1-8-13/

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit ff76e24e5a)
2021-01-24 23:10:53 +01:00
W. Michael Petullo
8bb1d13a97
pigeonhole: update to 0.5.11
This fixes an error in the previous package when building against recent
OpenWrt releases:

In file included from /builder/shared-workdir/build/sdk/staging_dir/target-x86_64_musl/usr/include/dovecot/lib.h:50,
                 from ext-variables-common.c:4:
ext-variables-common.c: In function 'ext_variables_load':
ext-variables-common.c:91:14: error: expected ')' before 'PRIuSIZE_T'
       "(>= %"PRIuSIZE_T" bytes)",

Signed-off-by: W. Michael Petullo <mike@flyn.org>
(cherry picked from commit c502f261d3)
2020-09-15 18:53:21 -07:00
Josef Schlehofer
7825df65f6
msmtp: update to version 1.8.12
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit dd0ba4a55b)
2020-09-12 18:39:27 +02:00
Jan Pavlinec
eb8130508e
dovecot: disable zstd
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
(cherry picked from commit a5c9ef50dc)
2020-09-12 11:57:05 +02:00
Jan Pavlinec
d515d9c353
dovecot: update to version 2.3.11.3 (security fix)
Fixes:
CVE-2020-12100
CVE-2020-12673
CVE-2020-12674

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
(cherry picked from commit 8ae394430a)
2020-09-08 15:54:04 +02:00
Ian Cooper
7b269ec49d
dovecot: remove incorrect PKG_BUILD_DEPENDS
The package Makefile contains a PKG_BUILD_DEPENDS=libiconv
line, which apart from being incorrect if libiconv-full is
specified in the build configuration, is also unnecessary,
since the package Makefile already includes nls.mk which
sets PKG_BUILD_DEPENDS appropriately.

Signed-off-by: Ian Cooper <iancooper@hotmail.com>
(cherry picked from commit 645bea6d88)
2020-07-20 17:14:56 -07:00
Josef Schlehofer
e798f539c9
msmtp: update to version 1.8.11
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit dd44bf2e7a)
2020-07-20 16:28:45 +02:00
Josef Schlehofer
780c453772
msmtp: update to version 1.8.10
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit e193db6b69)
2020-07-20 16:28:39 +02:00
Rosen Penev
3025f6c322
pigeonhole: Update to 0.5.9
Dovecot was updated but not pigeonhole. This is important as the API broke

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit de66ac26f6)
2020-06-02 14:06:59 -07:00
W. Michael Petullo
114823c7c9
pigeonhole: reflect license of LGPL-2.1-or-later
Signed-off-by: W. Michael Petullo <mike@flyn.org>
(cherry picked from commit cfcdade87d)
2020-06-02 14:06:53 -07:00
W. Michael Petullo
59ca872267
pigeonhole: update to 0.5.8
Signed-off-by: W. Michael Petullo <mike@flyn.org>
(cherry picked from commit 10a1877e57)
2020-06-02 14:06:42 -07:00
Jan Pavlinec
142fd306eb
dovecot: update to version 2.3.10.1 (security fix)
Fixes:
CVE-2020-10957
CVE-2020-10958
CVE-2020-10967

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
(cherry picked from commit d863e26817)
2020-05-31 13:56:12 -07:00
Jeffery To
fc2a591b53 treewide: Use default PKG_BUILD_DIR when possible
This removes lines that set PKG_BUILD_DIR when the set value is no
different from the default value.

Specifically, the line is removed if the assigned value is:

* $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)

  The default PKG_BUILD_DIR was updated[1] to incorporate BUILD_VARIANT
  if it is set, so now this is identical to the default value.

* $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)

  if PKG_SOURCE_SUBDIR is set to $(PKG_NAME)-$(PKG_VERSION), making it
  the same as the previous case

* $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)

  This is the same as the default PKG_BUILD_DIR when there is no
  BUILD_VARIANT.

* $(BUILD_DIR)/[name]-$(PKG_VERSION)

  where [name] is a string that is identical to PKG_NAME

[1]: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=e545fac8d968864a965edb9e50c6f90940b0a6c9

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 53e1692ae9)
2020-04-12 19:24:15 -07:00
Rosen Penev
4bd47a5eb6
msmtp: remove myself as maintainer
Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 842b9f0f4d)
2020-03-27 19:41:35 -07:00
Rosen Penev
7ccf6f2356
msmtp: Update to 1.8.7
Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 9a67d3bfb3)
2020-03-27 19:41:10 -07:00
Rosen Penev
efab88dc3a
msmtp: Update to 1.8.6
Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 04b9f209a0)
2020-03-27 19:40:19 -07:00
Daniel F. Dickinson
59ca5bda32 msmtp-scripts: Remove as abandoning upstream; msmtp-queue works
I am upstream for msmtp-scripts and have decided to abandon the project.  Therefore
remove msmtp-scripts from OpenWrt -- there is already msmtp-queue which is 'good enough'
for the use cases where msmtp-scripts had any relevance.

This backports to 19.07 so that it doesn't become something folks are depending on.
Due to changes in lock behaviour it never worked in 18.04.x, so ditching it now
keeps it from being picked up again by the userbase.

Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
2019-12-18 07:45:54 -05:00
Lucian Cristian
145bd2d19e
dovecot: update to 2.3.8
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
(cherry-picked from commit 962716aad7)
2019-11-10 18:32:04 +01:00
Jan Pavlinec
937b19ebb7
treewide: add PKG_CPE_ID for better cvescanner coverage
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
(cherry-picked from bf2f1a0263)
2019-09-26 19:36:27 -07:00
Sven Eckelmann
1142f52078
treewide: Change .*GPL.*+ licenses to SPDX compatible identifier
The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL
licenses. But a lot of packages did use a different, non-SPDX style with a
"+" at the end instead of "-or-later".

Signed-off-by: Sven Eckelmann <sven@narfation.org>
(cherry-picked from bbb1ea7345)
2019-09-26 19:36:25 -07:00
W. Michael Petullo
b43de99d0e pigeonhole: update to 0.5.7.2
Fixes CVE-2019-11500.

Signed-off-by: W. Michael Petullo <mike@flyn.org>
(cherry-picked from 707c683fba)
2019-09-24 15:08:52 -07:00
Josef Schlehofer
0f33ce200d dovecot: Update to version 2.3.7.2
Fix CVE-2019-11500

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry-picked from 5275c4156b)
2019-09-24 15:07:47 -07:00
Daniel F. Dickinson
0ff1a55891 msmtp-scripts: Backport to fix runtime failure
This commit syncs msmtp-scripts with master as current
openwrt-19.07 is broken.

Cherry-picks and squashes the following commits from
master.

6d8cff9a msmtp-scripts: Fix LICENSE information
d163eaea msmtp-scripts: Overhaul and update like upstream
3c15d410 msmtp-scripts: Make conn_test default nc
b9cc3cf2 msmtp-scripts: Fix spool/lock dir permissions
f76408af msmtp-scripts: Add msmtprc permission docs

Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
2019-09-14 16:40:17 -04:00
Daniel F. Dickinson
2c51c7b18e msmtp: msmtp-scripts: Backport "Enable PROVIDES and ALTERNATIVES"
Backports needed change from master for the next commit (a
combined cherry-pick and squash of required fixes to msmtp-scripts,
due to msmtp-scripts being broken on openwrt-19.07).

Use the PROVIDES mechanism so that msmtp and msmtp-nossl can be be
+depended-on and avoid generating a file level conflict.  Also use
alternatives for msmtp-mta and msmtpq-ng-mta with msmtp-mta since
we can only have one sendmail at a time.

(cherry-pick f76408af48)

Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
2019-09-14 16:39:52 -04:00
Josef Schlehofer
10e068f896
dovecot: Improve packaging and include configs
- Add dovenull user, otherwise, dovecot doesn't start
- Build docs to have configuration files for dovecot
- Remove init script as conffile
- Move build options from Makefile to Config.in
- Install section to be more readable
- Refresh patches

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry-picked from commit e27438f140)
2019-08-24 16:53:53 +02:00
Josef Schlehofer
e74803c93e
dovecot: update to version 2.3.7.1
Move PKG_MAINTAINER above PKG_LICENSE to be sync with other packages

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry-picked from commit fcbc1cad2c)
2019-08-24 16:53:42 +02:00
Lucian Cristian
453bedebb2
dovecot: update to 2.3.7
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
(cherry-picked from commit 971b20380e)
2019-08-24 16:53:30 +02:00
Rosen Penev
0d05301e18
opendkim: Fix compilation with uClibc-ng
res_nsend and res_send are both not available in uClibc-ng as configured
in OpenWrt. Having this function return an error is the only sensible way
to fix.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry-picked from b5b776fc9a)
2019-07-23 20:34:59 -07:00
Phil Eichinger
5963b15f47 mutt: switch to https instead of ftp
Since https is preferred master site with http is used as second choice.

Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2019-05-28 00:02:31 +02:00
Phil Eichinger
df128723b7 mutt: bump to version 1.12.0
Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2019-05-27 21:13:24 +02:00
Daniel Engberg
bdaf77273e
Merge pull request #8937 from lucize/doveup
dovecot: update to 2.3.6
2019-05-13 17:03:07 +02:00
Lucian Cristian
6ea951b2de dovecot: update to 2.3.6
also don't pack docs

Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2019-05-13 16:19:50 +03:00
Rosen Penev
77bdda3e03
Merge pull request #8899 from neheb/post
postfix: Fix compilation with uClibc-ng
2019-05-11 12:11:22 -07:00
Rosen Penev
18b8190e2d
msmtp: Remove uClibc hack
This seems to no longer be needed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-05 16:03:50 -07:00
Rosen Penev
65d4442680
postfix: Fix compilation with uClibc-ng
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-05 13:31:09 -07:00
Rosen Penev
567102df7b
msmtp: Update to 1.8.4
Small Makefile cleanups.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-04-29 14:27:28 -07:00
Lucian Cristian
7aae4eed85 dovecot: update to 2.3.5.2
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2019-04-29 04:29:17 +03:00
Rosen Penev
bba043ee47
ssmpt: Fix compilation without deprecated OpenSSL APIs
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-04-27 11:20:41 -07:00
W. Michael Petullo
d3385ef60b bogofilter: mark /etc/bogofilter.cf as a configuration file
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2019-04-26 23:10:15 -04:00
Lucian Cristian
a9502d6d73 dovecot: gssapi build fix, add parallel build
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2019-04-13 19:24:43 +03:00
Rosen Penev
5ec9545ddc
dovecot: Fix deprecated API patch
Refreshed patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-04-09 19:35:03 -07:00
Lucian Cristian
2d3f82ed2e dovecot: update to 2.3.5.1
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2019-04-07 17:11:34 +03:00
Phil Eichinger
b1743883e4 mutt: bump to version 1.11.4
Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2019-04-05 15:37:47 +02:00
Rosen Penev
c7a52d9a95
postfix: Update to 3.4.4
Switched to HTTP from FTP for one of the mirrors.

Rebased Patches.

Removed ENGINES patch as it is only relevant for OpenSSL 1.0.2.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-03-28 19:50:14 -07:00
W. Michael Petullo
b39f8980a4 pigeonhole: update to 0.5.5
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2019-03-16 17:12:46 -04:00
Lucian Cristian
3866fbabc2 dovecot: update to 2.3.5
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2019-03-13 22:05:28 +02:00
Hannu Nyman
3306f1dc46
Merge pull request #8247 from neheb/fdm
fdm: Update to 2.0
2019-03-10 10:08:47 +02:00