diff --git a/smtp/LICENSE b/smtp/LICENSE new file mode 100644 index 0000000..ea5ea89 --- /dev/null +++ b/smtp/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/smtp/auth.go b/smtp/auth.go index 7ec3ec9..30948e1 100644 --- a/smtp/auth.go +++ b/smtp/auth.go @@ -3,7 +3,7 @@ // // Original net/smtp code from the Go stdlib by the Go Authors. // Use of this source code is governed by a BSD-style -// license that can be found in the [PROJECT ROOT]/LICENSES directory. +// LICENSE file that can be found in this directory. // // go-mail specific modifications by the go-mail Authors. // Licensed under the MIT License. diff --git a/smtp/auth_cram_md5.go b/smtp/auth_cram_md5.go index f3a20d9..5357032 100644 --- a/smtp/auth_cram_md5.go +++ b/smtp/auth_cram_md5.go @@ -3,7 +3,7 @@ // // Original net/smtp code from the Go stdlib by the Go Authors. // Use of this source code is governed by a BSD-style -// license that can be found in the [PROJECT ROOT]/LICENSES directory. +// LICENSE file that can be found in this directory. // // go-mail specific modifications by the go-mail Authors. // Licensed under the MIT License. @@ -32,7 +32,7 @@ func CRAMMD5Auth(username, secret string) Auth { return &cramMD5Auth{username, secret} } -func (a *cramMD5Auth) Start(server *ServerInfo) (string, []byte, error) { +func (a *cramMD5Auth) Start(_ *ServerInfo) (string, []byte, error) { return "CRAM-MD5", nil, nil } diff --git a/smtp/auth_login.go b/smtp/auth_login.go index 0e63be5..6811c71 100644 --- a/smtp/auth_login.go +++ b/smtp/auth_login.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2022 Winni Neessen +// SPDX-FileCopyrightText: 2022-2023 The go-mail Authors // // SPDX-License-Identifier: MIT diff --git a/smtp/auth_plain.go b/smtp/auth_plain.go index 50e98cf..49c537b 100644 --- a/smtp/auth_plain.go +++ b/smtp/auth_plain.go @@ -3,7 +3,7 @@ // // Original net/smtp code from the Go stdlib by the Go Authors. // Use of this source code is governed by a BSD-style -// license that can be found in the [PROJECT ROOT]/LICENSES directory. +// LICENSE file that can be found in this directory. // // go-mail specific modifications by the go-mail Authors. // Licensed under the MIT License. @@ -51,7 +51,7 @@ func (a *plainAuth) Start(server *ServerInfo) (string, []byte, error) { return "PLAIN", resp, nil } -func (a *plainAuth) Next(fromServer []byte, more bool) ([]byte, error) { +func (a *plainAuth) Next(_ []byte, more bool) ([]byte, error) { if more { // We've already sent everything. return nil, errors.New("unexpected server challenge") diff --git a/smtp/example_test.go b/smtp/example_test.go index 30b5ae5..0445dfc 100644 --- a/smtp/example_test.go +++ b/smtp/example_test.go @@ -3,7 +3,7 @@ // // Original net/smtp code from the Go stdlib by the Go Authors. // Use of this source code is governed by a BSD-style -// license that can be found in the [PROJECT ROOT]/LICENSES directory. +// LICENSE file that can be found in this directory. // // go-mail specific modifications by the go-mail Authors. // Licensed under the MIT License. diff --git a/smtp/smtp.go b/smtp/smtp.go index 39e2c77..4b23170 100644 --- a/smtp/smtp.go +++ b/smtp/smtp.go @@ -3,7 +3,7 @@ // // Original net/smtp code from the Go stdlib by the Go Authors. // Use of this source code is governed by a BSD-style -// license that can be found in the [PROJECT ROOT]/LICENSES directory. +// LICENSE file that can be found in this directory. // // go-mail specific modifications by the go-mail Authors. // Licensed under the MIT License. diff --git a/smtp/smtp_test.go b/smtp/smtp_test.go index f8866a7..7423100 100644 --- a/smtp/smtp_test.go +++ b/smtp/smtp_test.go @@ -3,7 +3,7 @@ // // Original net/smtp code from the Go stdlib by the Go Authors. // Use of this source code is governed by a BSD-style -// license that can be found in the [PROJECT ROOT]/LICENSES directory. +// LICENSE file that can be found in this directory. // // go-mail specific modifications by the go-mail Authors. // Licensed under the MIT License.