The sender domain has a DMARC Reject/Quarantine policy which disallows
sending mailing list messages using the original "From" header.
To mitigate this problem, the original message has been wrapped
automatically by the mailing list software.
--- Begin Message ---
Up to now explicitly setting PKG_SOURCE_MIRROR=1 had the same effect
as setting PKG_SOURCE_MIRROR=0 (i.e. both resulted in MIRROR being set
to 0). This was generally not an major issue, as PKG_SOURCE_MIRROR can
be unset to achieve MIRROR=1 (the default).
It can however be a source of confusion.
After looking for PKG_MIRROR across the repository, it turns out that
it was actually never used by any core package. It's also not used by
any package in the 'packages' feed. Instead, it is likely that
PKG_MIRROR is a typo from when PKG_SOURCE_MIRROR was first introduced
in commit 291e775fcd2e ("allow packages to forcibly disable the svn/git mirror
downloading attempt by setting PKG_SOURCE_MIRROR:=0 (#3815)").
To fix it, replace PKG_MIRROR with PKG_SOURCE_MIRROR so that the
behavior is the one one could intuitively expect (i.e. setting
PKG_SOURCE_MIRROR to 1 or not setting it leads to MIRROR=1, and
setting PKG_SOURCE_MIRROR to 0 leads to MIRROR=0).
Signed-off-by: Raphaël Mélotte <[email protected]>
---
include/download.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/download.mk b/include/download.mk
index b9d71f2c1a..46232c2c86 100644
--- a/include/download.mk
+++ b/include/download.mk
@@ -317,7 +317,7 @@ define Download/default
SUBDIR:=$(PKG_SOURCE_SUBDIR)
PROTO:=$(PKG_SOURCE_PROTO)
SUBMODULES:=$(PKG_SOURCE_SUBMODULES)
- $(if $(PKG_SOURCE_MIRROR),MIRROR:=$(filter 1,$(PKG_MIRROR)))
+ $(if $(PKG_SOURCE_MIRROR),MIRROR:=$(filter 1,$(PKG_SOURCE_MIRROR)))
$(if $(PKG_MIRROR_MD5SUM),MIRROR_MD5SUM:=$(PKG_MIRROR_MD5SUM))
$(if $(PKG_MIRROR_HASH),MIRROR_HASH:=$(PKG_MIRROR_HASH))
SOURCE_VERSION:=$(PKG_SOURCE_VERSION)
--
2.52.0
--- End Message ---
_______________________________________________
openwrt-devel mailing list
[email protected]
https://lists.openwrt.org/mailman/listinfo/openwrt-devel