Browse Source

mutt: add header caching support via libgdbm

Add header caching option to mutt, using the libgdbm database routines.

Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
lilik-openwrt-22.03
Matthew Hagan 3 years ago
committed by Rosen Penev
parent
commit
bf3fe181af
2 changed files with 7 additions and 1 deletions
  1. +5
    -0
      mail/mutt/Config.in
  2. +2
    -1
      mail/mutt/Makefile

+ 5
- 0
mail/mutt/Config.in View File

@ -14,6 +14,11 @@ if PACKAGE_mutt
default n default n
help help
Enables SMTP support in mutt. 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 config MUTT_SASL
bool "SASL support" bool "SASL support"
default n default n


+ 2
- 1
mail/mutt/Makefile View File

@ -30,7 +30,7 @@ include $(INCLUDE_DIR)/package.mk
define Package/mutt define Package/mutt
SECTION:=mail SECTION:=mail
CATEGORY:=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 TITLE:=Console mail client
URL:=http://www.mutt.org/ URL:=http://www.mutt.org/
MENU:=1 MENU:=1
@ -47,6 +47,7 @@ CONFIGURE_ARGS += \
$(if $(CONFIG_MUTT_POP),--enable-pop) \ $(if $(CONFIG_MUTT_POP),--enable-pop) \
$(if $(CONFIG_MUTT_IMAP),--enable-imap) \ $(if $(CONFIG_MUTT_IMAP),--enable-imap) \
$(if $(CONFIG_MUTT_SMTP),--enable-smtp) \ $(if $(CONFIG_MUTT_SMTP),--enable-smtp) \
$(if $(CONFIG_MUTT_HCACHE),--enable-hcache) \
$(if $(CONFIG_MUTT_SASL),--with-sasl) \ $(if $(CONFIG_MUTT_SASL),--with-sasl) \
--with-mailpath=/var/mail \ --with-mailpath=/var/mail \
$(if $(CONFIG_MUTT_GNUTLS),--with-gnutls) \ $(if $(CONFIG_MUTT_GNUTLS),--with-gnutls) \


Loading…
Cancel
Save