aboutsummaryrefslogtreecommitdiff
path: root/mail/sendmail
Commit message (Collapse)AuthorAge
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* sendmail: update to 8.16.1Rosen Penev2020-09-22
| | | | | | | | | | Refreshed patches and removed upstreamed ones. Switched main URL and removed others. None of them have the proper file. The first actually has a bad one. The changed URL is from the official website. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* sendmail: fix compilation without sys/cdefsRosen Penev2020-08-10
| | | | | | sys/cdefs is deprecated. It's also not included with musl. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: add PKG_CPE_ID for better cvescanner coverageJan Pavlinec2019-09-17
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* sendmail: link with gcc instead of ldEneas U de Queiroz2018-12-17
| | | | | | | | | | | | | If ld is used directly to link libmilter.so, linking is not done correctly with glibc, and produces a library that can't be used. Linking with the bad library produces a strange error: ld: conftest: hidden symbol `stat' in [...]libc_nonshared.a(stat.oS) is referenced by DSO Using ld with musl works fine, but using gcc is a more portable way of linking the shared library anyway. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* sendmail: Add OpenSSL 1.1 supportRosen Penev2018-12-17
| | | | | | | | | | First patch is from Debian and enables OpenSSL 1.1 support. Second patch is a fix for OpenSSL 1.1 ECC curves. Third patch allows compilation without deprecated APIs. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* sendmail: fix confLIBSEARCHPATH to $(STAGING_DIR)Guo Li2018-09-26
| | | | | | | This fix issue 'cannot find -lnsl' on build server which has libnsl.so in /usr/lib Signed-off-by: Guo Li <uxgood.org@gmail.com>
* opendkim: DKIM signing and verifying emailsVal Kulkov2018-01-31
| | | | | | | | | | | | | | | | | | | | | | | | The OpenDKIM package provides a service for signing and verifying DomainKeys Identified Mail (DKIM) signatures. OpenDKIM consists of a library that implements the DKIM service and a milter-based filter application that can plug in to any milter-aware MTA, such as Postfix or Sendmail, to provide that service to sufficiently recent sendmail MTAs and other MTAs that support the milter protocol. This submission provides three new packages: - libopendkim, a library for signing and verifying DKIM signatures, - opendkim, the server application and the genkey script, - opendkim-tools, a set of tools for configuring and testing OpenDKIM. While at it, add PKG_BUILD_DEPENDS statement to sendmail's Makefile. Travis CI buildbot sometimes fails to compile libopenssl before starting to build sendmail. Since sendmail depends on libopenssl, the whole Travis CI build process fails. Setting PKG_BUILD_DEPENDS to "openssl", the directory name of libopenssl's Makefile, fixes the problem. Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
* libmilter-sendmail: the sendmail mail filter API libraryVal Kulkov2017-07-24
The sendmail Mail Filter API (Milter) is designed to allow third-party programs access to mail messages as they are being processed in order to filter meta-information and content. This library is a prerequisite for the OpenDKIM package. The proposed Makefile also contains sections for building Sendmail. These sections are commented out because more work is necessary to properly complete porting of Sendmail to LEDE/OpenWrt. The notes in Makefile provide details on what is required to complete the port. It has been verified that Sendmail executables compile and run properly on the target system when the commented sections in Makefile are uncommented. Signed-off-by: Val Kulkov <val.kulkov@gmail.com>