Skip to content

Commit

Permalink
mutt: add header caching support via libgdbm
Browse files Browse the repository at this point in the history
Add header caching option to mutt, using the libgdbm database routines.

Signed-off-by: Matthew Hagan <[email protected]>
  • Loading branch information
clayface authored and neheb committed Feb 2, 2022
1 parent 8221e9d commit bf3fe18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions mail/mutt/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ if PACKAGE_mutt
default n
help
Enables SMTP support in mutt.
config MUTT_HCACHE
bool "Header caching support"
default n
help
Enables header caching support in mutt (using libgdbm).
config MUTT_SASL
bool "SASL support"
default n
Expand Down
3 changes: 2 additions & 1 deletion mail/mutt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ include $(INCLUDE_DIR)/package.mk
define Package/mutt
SECTION:=mail
CATEGORY:=Mail
DEPENDS:=+MUTT_GNUTLS:libgnutls +MUTT_OPENSSL:libopenssl +libncursesw +MUTT_SASL:libsasl2 +terminfo +zlib
DEPENDS:=+MUTT_HCACHE:libgdbm +MUTT_GNUTLS:libgnutls +MUTT_OPENSSL:libopenssl +libncursesw +MUTT_SASL:libsasl2 +terminfo +zlib
TITLE:=Console mail client
URL:=http://www.mutt.org/
MENU:=1
Expand All @@ -47,6 +47,7 @@ CONFIGURE_ARGS += \
$(if $(CONFIG_MUTT_POP),--enable-pop) \
$(if $(CONFIG_MUTT_IMAP),--enable-imap) \
$(if $(CONFIG_MUTT_SMTP),--enable-smtp) \
$(if $(CONFIG_MUTT_HCACHE),--enable-hcache) \
$(if $(CONFIG_MUTT_SASL),--with-sasl) \
--with-mailpath=/var/mail \
$(if $(CONFIG_MUTT_GNUTLS),--with-gnutls) \
Expand Down

0 comments on commit bf3fe18

Please sign in to comment.