<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/mail/mutt, 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-05-08T20:28:27Z</updated>
<entry>
<title>treewide: cleanup URLs</title>
<updated>2026-05-08T20:28:27Z</updated>
<author>
<name>Yanase Yuki</name>
</author>
<published>2026-01-02T09:06:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b0d8a3d384915c2de1c5b473fcfb8b3996bb849b'/>
<id>urn:sha1:b0d8a3d384915c2de1c5b473fcfb8b3996bb849b</id>
<content type='text'>
This commit converts plain HTTP URLs to HTTPS, and updates
old or outdated URLs.

Signed-off-by: Yanase Yuki &lt;dev@zpc.st&gt;
</content>
</entry>
<entry>
<title>treewide: remove AUTORELEASE</title>
<updated>2023-04-21T20:46:58Z</updated>
<author>
<name>Paul Fertser</name>
</author>
<published>2023-04-21T16:32:27Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0c10c224be81f9221dabfab449855ab6718d2a0c'/>
<id>urn:sha1:0c10c224be81f9221dabfab449855ab6718d2a0c</id>
<content type='text'>
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser &lt;fercerpav@gmail.com&gt;
</content>
</entry>
<entry>
<title>mutt: add PKG_CONFIG_DEPENDS</title>
<updated>2022-07-20T18:38:05Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2022-07-20T05:21:22Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=ecd3a8a8de8d73a9e4c1b1b67e42e87f4a22de9d'/>
<id>urn:sha1:ecd3a8a8de8d73a9e4c1b1b67e42e87f4a22de9d</id>
<content type='text'>
Should fix missing dependencies when manupulating options.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>mutt: update to 2.1.5</title>
<updated>2022-02-02T20:35:55Z</updated>
<author>
<name>Matthew Hagan</name>
</author>
<published>2022-01-04T17:02:59Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=951a74f43134f901feed34dc0d7183bc40754b98'/>
<id>urn:sha1:951a74f43134f901feed34dc0d7183bc40754b98</id>
<content type='text'>
Signed-off-by: Matthew Hagan &lt;mnhagan88@gmail.com&gt;
</content>
</entry>
<entry>
<title>mutt: add header caching support via libgdbm</title>
<updated>2022-02-02T20:35:55Z</updated>
<author>
<name>Matthew Hagan</name>
</author>
<published>2022-01-04T15:54:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=bf3fe181afa0e7820fd46919830ad63294dee761'/>
<id>urn:sha1:bf3fe181afa0e7820fd46919830ad63294dee761</id>
<content type='text'>
Add header caching option to mutt, using the libgdbm database routines.

Signed-off-by: Matthew Hagan &lt;mnhagan88@gmail.com&gt;
</content>
</entry>
<entry>
<title>mutt: move configurables to Config.in</title>
<updated>2022-02-02T20:35:55Z</updated>
<author>
<name>Matthew Hagan</name>
</author>
<published>2022-01-04T14:14:18Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=8221e9db44f3d37c985731c53377ef29cad2bba2'/>
<id>urn:sha1:8221e9db44f3d37c985731c53377ef29cad2bba2</id>
<content type='text'>
Signed-off-by: Matthew Hagan &lt;mnhagan88@gmail.com&gt;
</content>
</entry>
<entry>
<title>mutt: prevent exposing mutt config options when not enabled</title>
<updated>2021-11-09T01:56:46Z</updated>
<author>
<name>Matthew Hagan</name>
</author>
<published>2021-11-06T23:42:44Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=abca3c73e697ded1808241385f0b29dc44b188b1'/>
<id>urn:sha1:abca3c73e697ded1808241385f0b29dc44b188b1</id>
<content type='text'>
Ensure Mutt's configuration options do not appear in the config when
Mutt is not enabled.

Reported-by: Stijn Segers &lt;foss@volatilesystems.org&gt;
Signed-off-by: Matthew Hagan &lt;mnhagan88@gmail.com&gt;
</content>
</entry>
<entry>
<title>mutt: add smtp, sasl, gnutls, menuconfig options</title>
<updated>2021-10-08T16:49:44Z</updated>
<author>
<name>Matthew Hagan</name>
</author>
<published>2021-09-30T20:44:38Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=19877a952d1136e134547835d335ffc771917ccc'/>
<id>urn:sha1:19877a952d1136e134547835d335ffc771917ccc</id>
<content type='text'>
Compile tested: bcm53xx, MX65, master

Add support for SMTP, SASL, GnuTLS and POP, IMAP, OpenSSL in the
menuconfig. The SMTP/SASL configurable was required to successfully
send email on GMail. Tested separately using OpenSSL and GnuTLS.

Signed-off-by: Matthew Hagan &lt;mnhagan88@gmail.com&gt;
</content>
</entry>
<entry>
<title>mutt: update to 2.1.3</title>
<updated>2021-09-21T16:52:06Z</updated>
<author>
<name>Michal Vasilek</name>
</author>
<published>2021-09-21T16:52:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=de8808c864ae8137258becf89d396ed3f09191c3'/>
<id>urn:sha1:de8808c864ae8137258becf89d396ed3f09191c3</id>
<content type='text'>
Signed-off-by: Michal Vasilek &lt;michal.vasilek@nic.cz&gt;
</content>
</entry>
<entry>
<title>mutt: update to 2.1.2, switch to AUTORELEASE</title>
<updated>2021-08-26T10:17:26Z</updated>
<author>
<name>Michal Vasilek</name>
</author>
<published>2021-08-25T11:17:54Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=7fd192e55f5b5dcf8b028b054e7b316e6e932aff'/>
<id>urn:sha1:7fd192e55f5b5dcf8b028b054e7b316e6e932aff</id>
<content type='text'>
Signed-off-by: Michal Vasilek &lt;michal.vasilek@nic.cz&gt;
</content>
</entry>
</feed>
