From 937276b4127f304798ddae5f4ff1253c8a0d2397 Mon Sep 17 00:00:00 2001 From: Niclas Hofmann Date: Tue, 22 Feb 2022 15:21:38 +0100 Subject: [PATCH] mutt: update to 2.2.1 and enable smtp support In order to effectivly use mutt with smtp to send mails I added `--with-sasl` and `--enable-smtp` to the configure statement. While the last is self-explanatory the first one is also required for authenticationa when sending email (). --- mutt.be0 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mutt.be0 b/mutt.be0 index 6ab088c87..4bb459ac2 100755 --- a/mutt.be0 +++ b/mutt.be0 @@ -1,8 +1,9 @@ #!/usr/bin/env beesh -# BEE_VERSION mutt-1.13.5-0 +# BEE_VERSION mutt-2.2.1-0 -SRCURL[0]="ftp://ftp.mutt.org/pub/mutt/mutt-${PKGVERSION}.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/964512f6398f267a8cd5b807db77e20f/mutt-2.2.1.tar.gz" +#SRCURL[0]="ftp://ftp.mutt.org/pub/mutt/mutt-${PKGVERSION}.tar.gz" # PATCHURL[0]="" @@ -10,8 +11,6 @@ SRCURL[0]="ftp://ftp.mutt.org/pub/mutt/mutt-${PKGVERSION}.tar.gz" # EXCLUDE="" - - #mee_extract() { # bee_extract ${@} #} @@ -22,9 +21,11 @@ SRCURL[0]="ftp://ftp.mutt.org/pub/mutt/mutt-${PKGVERSION}.tar.gz" mee_configure() { bee_configure --with-ssl \ + --with-sasl \ --enable-external-dotlock \ --enable-pop \ --enable-imap \ + --enable-smtp \ --enable-hcache \ --enable-sidebar }