From 31001e87b236bf73c54f2d302ee050e9a47ba91d Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Fri, 17 Jun 2022 15:05:54 +0200 Subject: [PATCH] #24: Add SPDX license IDs for REUSE compliance # SUMMARY * Bad licenses: * Deprecated licenses: * Licenses without file extension: * Missing licenses: * Unused licenses: * Used licenses: CC0-1.0, MIT * Read errors: 0 * Files with copyright information: 45 / 45 * Files with license information: 45 / 45 Congratulations! Your project is compliant with version 3.0 of the REUSE Specification :-) --- .cirrus.yml | 4 + .github/FUNDING.yml | 4 + .github/ISSUE_TEMPLATE/bug_report.yml | 4 + .github/ISSUE_TEMPLATE/config.yml | 4 + .github/ISSUE_TEMPLATE/feature_request.yml | 4 + .github/workflows/codecov.yml | 4 + .github/workflows/codeql-analysis.yml | 4 + .github/workflows/sonarqube.yml | 4 + .gitignore | 11 +- .idea/go-mail.iml.license | 3 + .idea/inspectionProfiles/Project_Default.xml | 6 + .idea/markdown.xml | 16 +++ .idea/modules.xml | 7 ++ .idea/vcs.xml | 7 ++ .reuse/dep5 | 10 ++ CODE_OF_CONDUCT.md | 6 + CONTRIBUTING.md | 6 + LICENSES/CC0-1.0.txt | 121 +++++++++++++++++++ LICENSES/MIT.txt | 9 ++ README.md | 6 + SECURITY.md | 6 + auth.go | 4 + auth/auth_test.go | 4 + auth/login.go | 4 + client.go | 4 + client_test.go | 4 + codecov.yml | 4 + doc.go | 4 + doc_test.go | 4 + encoding.go | 4 + encoding_test.go | 4 + file.go | 4 + file_test.go | 4 + go.mod | 4 + header.go | 4 + header_test.go | 4 + msg.go | 4 + msg_nowin_test.go | 4 + msg_test.go | 4 + msg_totmpfile.go | 4 + msg_totmpfile_116.go | 4 + msgwriter.go | 4 + msgwriter_test.go | 4 + part.go | 4 + part_test.go | 4 + sonar-project.properties | 4 + tls.go | 4 + tls_test.go | 4 + 48 files changed, 352 insertions(+), 2 deletions(-) create mode 100644 .idea/go-mail.iml.license create mode 100644 .idea/markdown.xml create mode 100644 .reuse/dep5 create mode 100644 LICENSES/CC0-1.0.txt create mode 100644 LICENSES/MIT.txt diff --git a/.cirrus.yml b/.cirrus.yml index 15be5de..ade4ba2 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 Winni Neessen +# +# SPDX-License-Identifier: CC0-1.0 + container: image: golang:latest diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 2db91cf..e1400c1 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,6 @@ +# SPDX-FileCopyrightText: 2022 Winni Neessen +# +# SPDX-License-Identifier: CC0-1.0 + github: wneessen ko_fi: winni diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 3fd5e1d..aa1cd05 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 Winni Neessen +# +# SPDX-License-Identifier: CC0-1.0 + name: Bug Report description: Create a report to help us improve # title: "" diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index e52a896..f6ea6d2 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 Winni Neessen +# +# SPDX-License-Identifier: CC0-1.0 + blank_issues_enabled: false contact_links: - name: GitHub Community Discussions diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index d29e823..d2dae5e 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 Winni Neessen +# +# SPDX-License-Identifier: CC0-1.0 + name: Feature request description: Suggest an idea for this project # title: "" diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 35768f3..b146ef2 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 Winni Neessen +# +# SPDX-License-Identifier: CC0-1.0 + name: Codecov workflow on: push: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 14cab03..b9c06c1 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 Winni Neessen +# +# SPDX-License-Identifier: CC0-1.0 + # For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml index e6d8f21..a604239 100644 --- a/.github/workflows/sonarqube.yml +++ b/.github/workflows/sonarqube.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 Winni Neessen +# +# SPDX-License-Identifier: CC0-1.0 + name: SonarQube on: push: diff --git a/.gitignore b/.gitignore index 305a3eb..1a4a15d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 Winni Neessen +# +# SPDX-License-Identifier: CC0-1.0 + # Binaries for programs and plugins *.exe *.exe~ @@ -16,7 +20,10 @@ # Local testfiles and auth data .auth -cmd/main.go +cmd/* # SonarQube -.scannerwork/ \ No newline at end of file +.scannerwork/ + +# IDEA +.idea/workspace.xml diff --git a/.idea/go-mail.iml.license b/.idea/go-mail.iml.license new file mode 100644 index 0000000..f9b629a --- /dev/null +++ b/.idea/go-mail.iml.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 Winni Neessen + +SPDX-License-Identifier: CC0-1.0 diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml index 09dbac8..06bcfde 100644 --- a/.idea/inspectionProfiles/Project_Default.xml +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -1,3 +1,9 @@ + +