On 22/06/2021 22:15, Michael Biebl wrote: > Am 22.06.21 um 21:49 schrieb Jose M Calhariz: > >>> My first build was with MAILER only on config and tested on a >>> bullseye >>> server. > > This appears to be correct/sufficient > >>> Then I was point into #475771 and that my change was not complete >>> enough >>> so I > > I don't think you need to set it for MAKE. I think it was done so > mistakenly in the past. > > > If it helps, there is packaging/deb/rules which also sets MAILER only > during ./configure. >
So you prefer the following patch and that I upload a 3.5.1-7 with only that change, right? I am learning to do my first unblock request. git show d8821280299fe30c64d98635b546c87318ee47a5 commit d8821280299fe30c64d98635b546c87318ee47a5 Author: Jose M Calhariz <[email protected]> Date: Sun Jun 20 21:34:41 2021 +0100 Use command mail instead of Mail. diff --git a/debian/rules b/debian/rules index 6f7e9c7..ad6a1a3 100755 --- a/debian/rules +++ b/debian/rules @@ -41,7 +41,8 @@ confflags = --prefix=/usr \ dh $@ --with autoreconf --parallel override_dh_auto_configure: - LIBS="-lssl" dh_auto_configure -- $(confflags) + # MAILER: Fix for #296022, #475771 and #990080 + MAILER="/usr/bin/mail" LIBS="-lssl" dh_auto_configure -- $(confflags) override_dh_install: sed -i "/dependency_libs/ s/'.*'/''/" `find debian/tmp -name '*.la'`

