Make GoLint happy

This commit is contained in:
Winni Neessen 2022-03-09 17:05:38 +01:00
parent 6285b5fb4f
commit ba5f519d9d
Signed by: wneessen
GPG key ID: 5F3AF39B820C119D
3 changed files with 8 additions and 10 deletions

View file

@ -4,12 +4,10 @@
<option name="autoReloadType" value="ALL" /> <option name="autoReloadType" value="ALL" />
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="b7733b42-c5ae-46b3-8a96-8b973d69a11d" name="Changes" comment="Calling it a day..."> <list default="true" id="b7733b42-c5ae-46b3-8a96-8b973d69a11d" name="Changes" comment="More progress... calling it a day.">
<change afterPath="$PROJECT_DIR$/encoding.go" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/header.go" afterDir="false" /> <change beforePath="$PROJECT_DIR$/client.go" beforeDir="false" afterPath="$PROJECT_DIR$/client.go" afterDir="false" />
<change afterPath="$PROJECT_DIR$/mailmsg.go" afterDir="false" /> <change beforePath="$PROJECT_DIR$/mailmsg.go" beforeDir="false" afterPath="$PROJECT_DIR$/mailmsg.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/client_test.go" beforeDir="false" afterPath="$PROJECT_DIR$/client_test.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/cmd/main.go" beforeDir="false" afterPath="$PROJECT_DIR$/cmd/main.go" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -104,7 +102,8 @@
<component name="VcsManagerConfiguration"> <component name="VcsManagerConfiguration">
<MESSAGE value="Makeing some progress..." /> <MESSAGE value="Makeing some progress..." />
<MESSAGE value="Calling it a day..." /> <MESSAGE value="Calling it a day..." />
<option name="LAST_COMMIT_MESSAGE" value="Calling it a day..." /> <MESSAGE value="More progress... calling it a day." />
<option name="LAST_COMMIT_MESSAGE" value="More progress... calling it a day." />
</component> </component>
<component name="VgoProject"> <component name="VgoProject">
<integration-enabled>true</integration-enabled> <integration-enabled>true</integration-enabled>

View file

@ -131,7 +131,7 @@ func WithTLSConfig(co *tls.Config) Option {
// TLSPolicy returns the currently set TLSPolicy as string // TLSPolicy returns the currently set TLSPolicy as string
func (c *Client) TLSPolicy() string { func (c *Client) TLSPolicy() string {
return fmt.Sprintf("%s", c.tlspolicy) return c.tlspolicy.String()
} }
// ServerAddr returns the currently set combination of hostname and port // ServerAddr returns the currently set combination of hostname and port

View file

@ -3,7 +3,6 @@ package mail
import ( import (
"fmt" "fmt"
"math/rand" "math/rand"
"mime"
"os" "os"
"time" "time"
) )
@ -14,7 +13,7 @@ type Msg struct {
charset string charset string
// encoder represents a mime.WordEncoder from the std lib // encoder represents a mime.WordEncoder from the std lib
encoder mime.WordEncoder //encoder mime.WordEncoder
// header is a slice of strings that the different mail header fields // header is a slice of strings that the different mail header fields
header map[Header][]string header map[Header][]string