This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch bugfix/update-mailing-lists-section in repository https://gitbox.apache.org/repos/asf/sling-parent.git
commit af5752cc0da45ed39e87125e40f003d3bae0b8e7 Author: Konrad Windszus <[email protected]> AuthorDate: Mon Aug 9 11:26:26 2021 +0200 SLING-10716 prevent IAE with invalid mail link in post element Just point to Sling website which contains instructions how to post --- sling-parent/pom.xml | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/sling-parent/pom.xml b/sling-parent/pom.xml index 2c48437..4a80dc7 100644 --- a/sling-parent/pom.xml +++ b/sling-parent/pom.xml @@ -868,6 +868,25 @@ <mailingLists> <mailingList> + <name>Apache Sling Users List</name> + <subscribe> + [email protected] + </subscribe> + <unsubscribe> + [email protected] + </unsubscribe> + <!-- to prevent scraping just point to Sling websites, which contains hints how to post --> + <post>https://sling.apache.org/project-information.html#mailing-lists</post> + <archive> + https://lists.apache.org/[email protected] + </archive> + <otherArchives> + <otherArchive> + https://www.mail-archive.com/[email protected]/ + </otherArchive> + </otherArchives> + </mailingList> + <mailingList> <name>Apache Sling Development List</name> <subscribe> [email protected] @@ -875,15 +894,13 @@ <unsubscribe> [email protected] </unsubscribe> - <post>dev at sling.apache.org</post> + <!-- to prevent scraping just point to Sling websites, which contains hints how to post --> + <post>https://sling.apache.org/project-information.html#mailing-lists</post> <archive> - https://mail-archives.apache.org/mod_mbox/sling-dev/ + https://lists.apache.org/[email protected] </archive> <otherArchives> <otherArchive> - https://sling-dev.markmail.org/ - </otherArchive> - <otherArchive> https://www.mail-archive.com/[email protected]/ </otherArchive> </otherArchives>
