<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/mail/mailsend, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2026-02-04T05:39:56Z</updated>
<entry>
<title>mailsend: fix ssl variant to use opensssl</title>
<updated>2026-02-04T05:39:56Z</updated>
<author>
<name>Daniel F. Dickinson</name>
</author>
<published>2026-01-25T16:05:43Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=444b62cbccf13492096fc0216d661f2ccf47f069'/>
<id>urn:sha1:444b62cbccf13492096fc0216d661f2ccf47f069</id>
<content type='text'>
As described in #28261 Not compiled with OpenSSL, the SSL variant of
the mailsend package is not actually being compiled with OpenSSL.

This is due to an upstream configure check borrowed from an ancient
version of BIND, which no longer works.

As a workaround we add `-DHAVE_OPENSSL=1` to the `TARGET_CFLAGS` when
building the SSL variant.

This results in a complaint about COPTS not being honoured correctly,
but results in `mailsend` compiled with OpenSSL (i.e. works).

Signed-off-by: Daniel F. Dickinson &lt;dfdpublic@wildtechgarden.ca&gt;
</content>
</entry>
<entry>
<title>mailsend: fix compilation with GCC14</title>
<updated>2025-05-01T20:03:21Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2025-04-30T23:59:56Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=4471b94ae751e5507ba00af46054fc37c9480fb4'/>
<id>urn:sha1:4471b94ae751e5507ba00af46054fc37c9480fb4</id>
<content type='text'>
Also fix CFLAGS not being passed.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: Run refresh on all packages</title>
<updated>2021-02-21T00:02:15Z</updated>
<author>
<name>Ilya Lipnitskiy</name>
</author>
<published>2021-02-21T00:02:15Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5d8d4fbbcb5c5de9370711c19bb3510210989a98'/>
<id>urn:sha1:5d8d4fbbcb5c5de9370711c19bb3510210989a98</id>
<content type='text'>
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 &lt;ilya.lipnitskiy@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: Use default PKG_BUILD_DIR when possible</title>
<updated>2019-10-12T18:01:34Z</updated>
<author>
<name>Jeffery To</name>
</author>
<published>2019-10-12T17:00:20Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=53e1692ae91b1b5fc59a7e8ab7fb98f8775eb4b6'/>
<id>urn:sha1:53e1692ae91b1b5fc59a7e8ab7fb98f8775eb4b6</id>
<content type='text'>
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 &lt;jeffery.to@gmail.com&gt;
</content>
</entry>
<entry>
<title>mailsend: Remove more deprecated APIs</title>
<updated>2018-11-17T19:30:39Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2018-09-17T01:36:13Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=a0f8d646613d0a77b7a17d2f19bb291b4c0ea743'/>
<id>urn:sha1:a0f8d646613d0a77b7a17d2f19bb291b4c0ea743</id>
<content type='text'>
Fixes compile without them.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>mailsend: add compatibility with openssl 1.1.0</title>
<updated>2018-07-06T12:17:17Z</updated>
<author>
<name>Eneas U de Queiroz</name>
</author>
<published>2018-07-06T12:17:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=dfe0a0edbcbef81a63b3e66ad9e9eefc2d3522a1'/>
<id>urn:sha1:dfe0a0edbcbef81a63b3e66ad9e9eefc2d3522a1</id>
<content type='text'>
Applied a patch merged upstream that adds support to openssl 1.1.0, and
added a patch, just submitted upstream, that enables compilation with
openssl 1.1.0 built without deprecated API.

Signed-off-by: Eneas U de Queiroz &lt;cote2004-github@yahoo.com&gt;
</content>
</entry>
<entry>
<title>mailsend: bump to v. 1.19</title>
<updated>2018-07-06T12:16:34Z</updated>
<author>
<name>Eneas U de Queiroz</name>
</author>
<published>2018-07-06T12:16:34Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=06dee479da7b2db616432b5cf0985f63fe60d43a'/>
<id>urn:sha1:06dee479da7b2db616432b5cf0985f63fe60d43a</id>
<content type='text'>
Signed-off-by: Eneas U de Queiroz &lt;cote2004-github@yahoo.com&gt;
</content>
</entry>
<entry>
<title>treewide: run "make check FIXUP=1"</title>
<updated>2017-08-30T04:41:14Z</updated>
<author>
<name>Etienne Champetier</name>
</author>
<published>2017-08-28T04:28:09Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=4006865ae81b20b1793ae2a07db20235fefd2c71'/>
<id>urn:sha1:4006865ae81b20b1793ae2a07db20235fefd2c71</id>
<content type='text'>
fix Makefile chmod (644)
replace MD5SUM with HASH
add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git

(PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now)

Signed-off-by: Etienne Champetier &lt;champetier.etienne@gmail.com&gt;
</content>
</entry>
<entry>
<title>mailsend: split into 2 packages - with SSL and without SSL</title>
<updated>2015-03-04T21:52:02Z</updated>
<author>
<name>Ted Hess</name>
</author>
<published>2015-03-04T21:52:02Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0b2e43d07b45fb45fe1b8b0dbd89b7a39a985d59'/>
<id>urn:sha1:0b2e43d07b45fb45fe1b8b0dbd89b7a39a985d59</id>
<content type='text'>
Signed-off-by: Ted Hess &lt;thess@kitschensync.net&gt;
</content>
</entry>
<entry>
<title>remove uneeded PKG_BUILD_DIR &amp; PKG_CAT overrides</title>
<updated>2015-02-22T01:37:56Z</updated>
<author>
<name>Nicolas Thill</name>
</author>
<published>2015-02-22T01:37:56Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=e24dfafb01a8cfa011fa4c15a8db3cac89094266'/>
<id>urn:sha1:e24dfafb01a8cfa011fa4c15a8db3cac89094266</id>
<content type='text'>
Signed-off-by: Nicolas Thill &lt;nico@openwrt.org&gt;
</content>
</entry>
</feed>
