]> Cypherpunks.ru repositories - nncp.git/commitdiff
Fix default sendmail path setting
authorSergey Matveev <stargrave@stargrave.org>
Sun, 27 Sep 2020 20:59:35 +0000 (23:59 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sun, 27 Sep 2020 21:04:26 +0000 (00:04 +0300)
Thanks to Frank Doepper for finding that bug.

bin/default.do
doc/news.ru.texi
doc/news.texi
src/nncp.go

index 8ec11e70b5795609ab9d702557b4d21af70a76ec..bda5482d13c257e5af603ebd17e3d37652d12d9b 100644 (file)
@@ -5,7 +5,7 @@ redo-ifchange config gopath module-name
 mod=`cat module-name`
 redo-ifchange src/*.go src/cmd/$1/*.go
 GO_LDFLAGS="$GO_LDFLAGS -X $mod.DefaultCfgPath=$CFGPATH"
-GO_LDFLAGS="$GO_LDFLAGS -X $mod.DefaultSpoolPath=$SENDMAIL"
+GO_LDFLAGS="$GO_LDFLAGS -X $mod.DefaultSendmailPath=$SENDMAIL"
 GO_LDFLAGS="$GO_LDFLAGS -X $mod.DefaultSpoolPath=$SPOOLPATH"
 GO_LDFLAGS="$GO_LDFLAGS -X $mod.DefaultLogPath=$LOGPATH"
 cd src
index f423162b649f771e603b08bff59c4b321d5068ec..6f9c98dea3bfb3b4878d05715238ec4687689d01 100644 (file)
@@ -1,6 +1,15 @@
 @node Новости
 @section Новости
 
+@node Релиз 5.4.1
+@subsection Релиз 5.4.1
+@itemize
+
+@item
+Исправлена ошибка с учётом @code{SENDMAIL} переменной при сборке.
+
+@end itemize
+
 @node Релиз 5.4.0
 @subsection Релиз 5.4.0
 @itemize
index 9d0046344981c9104f263af1dea5c412b27de176..37edcc0442f0669246fe4730644871211cbd67cf 100644 (file)
@@ -3,6 +3,15 @@
 
 See also this page @ref{Новости, on russian}.
 
+@node Release 5.4.1
+@section Release 5.4.1
+@itemize
+
+@item
+Fixed @code{SENDMAIL} variable usage during the build.
+
+@end itemize
+
 @node Release 5.4.0
 @section Release 5.4.0
 @itemize
index d27ed0acdeade8796ed82e28d0eeb7c00f17970d..4431663c3077264b851b41c2f8faeaff473c95ee 100644 (file)
@@ -38,7 +38,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.`
 )
 
 var (
-       Version string = "5.4.0"
+       Version string = "5.4.1"
 
        Base32Codec *base32.Encoding = base32.StdEncoding.WithPadding(base32.NoPadding)
 )