mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-15 02:12:55 +01:00
Enable logging of SMTP authentication data
Added a new option and methods to enable logging of SMTP authentication data. Updated documentation to indicate caution when using this feature due to potential data protection risks.
This commit is contained in:
parent
55a5d02fe0
commit
0944296cff
1 changed files with 39 additions and 3 deletions
42
client.go
42
client.go
|
@ -145,6 +145,9 @@ type (
|
||||||
// isEncrypted indicates wether the Client connection is encrypted or not.
|
// isEncrypted indicates wether the Client connection is encrypted or not.
|
||||||
isEncrypted bool
|
isEncrypted bool
|
||||||
|
|
||||||
|
// logAuthData indicates whether authentication-related data should be logged.
|
||||||
|
logAuthData bool
|
||||||
|
|
||||||
// logger is a logger that satisfies the log.Logger interface.
|
// logger is a logger that satisfies the log.Logger interface.
|
||||||
logger log.Logger
|
logger log.Logger
|
||||||
|
|
||||||
|
@ -364,9 +367,10 @@ func WithSSLPort(fallback bool) Option {
|
||||||
// WithDebugLog enables debug logging for the Client.
|
// WithDebugLog enables debug logging for the Client.
|
||||||
//
|
//
|
||||||
// This function activates debug logging, which logs incoming and outgoing communication between the
|
// This function activates debug logging, which logs incoming and outgoing communication between the
|
||||||
// Client and the SMTP server to os.Stderr. Be cautious when using this option, as the logs may include
|
// Client and the SMTP server to os.Stderr. By default the debug logging will redact any kind of SMTP
|
||||||
// unencrypted authentication data, depending on the SMTP authentication method in use, which could
|
// authentication data. If you need access to the actual authentication data in your logs, you can
|
||||||
// pose a data protection risk.
|
// enable authentication data logging with the WithLogAuthData option or by setting it with the
|
||||||
|
// Client.SetLogAuthData method.
|
||||||
//
|
//
|
||||||
// Returns:
|
// Returns:
|
||||||
// - An Option function that enables debug logging for the Client.
|
// - An Option function that enables debug logging for the Client.
|
||||||
|
@ -671,6 +675,22 @@ func WithDialContextFunc(dialCtxFunc DialContextFunc) Option {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithLogAuthData enables logging of authentication data.
|
||||||
|
//
|
||||||
|
// This function sets the logAuthData field of the Client to true, enabling the logging of authentication data.
|
||||||
|
//
|
||||||
|
// Be cautious when using this option, as the logs may include unencrypted authentication data, depending on
|
||||||
|
// the SMTP authentication method in use, which could pose a data protection risk.
|
||||||
|
//
|
||||||
|
// Returns:
|
||||||
|
// - An Option function that configures the Client to enable authentication data logging.
|
||||||
|
func WithLogAuthData() Option {
|
||||||
|
return func(c *Client) error {
|
||||||
|
c.logAuthData = true
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// TLSPolicy returns the TLSPolicy that is currently set on the Client as a string.
|
// TLSPolicy returns the TLSPolicy that is currently set on the Client as a string.
|
||||||
//
|
//
|
||||||
// This method retrieves the current TLSPolicy configured for the Client and returns it as a string representation.
|
// This method retrieves the current TLSPolicy configured for the Client and returns it as a string representation.
|
||||||
|
@ -865,6 +885,19 @@ func (c *Client) SetSMTPAuthCustom(smtpAuth smtp.Auth) {
|
||||||
c.smtpAuthType = SMTPAuthCustom
|
c.smtpAuthType = SMTPAuthCustom
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetLogAuthData sets or overrides the logging of SMTP authentication data for the Client.
|
||||||
|
//
|
||||||
|
// This function sets the logAuthData field of the Client to true, enabling the logging of authentication data.
|
||||||
|
//
|
||||||
|
// Be cautious when using this option, as the logs may include unencrypted authentication data, depending on
|
||||||
|
// the SMTP authentication method in use, which could pose a data protection risk.
|
||||||
|
//
|
||||||
|
// Parameters:
|
||||||
|
// - logAuth: Set wether or not to log SMTP authentication data for the Client.
|
||||||
|
func (c *Client) SetLogAuthData(logAuth bool) {
|
||||||
|
c.logAuthData = logAuth
|
||||||
|
}
|
||||||
|
|
||||||
// DialWithContext establishes a connection to the server using the provided context.Context.
|
// DialWithContext establishes a connection to the server using the provided context.Context.
|
||||||
//
|
//
|
||||||
// This function adds a deadline based on the Client's timeout to the provided context.Context
|
// This function adds a deadline based on the Client's timeout to the provided context.Context
|
||||||
|
@ -921,6 +954,9 @@ func (c *Client) DialWithContext(dialCtx context.Context) error {
|
||||||
if c.useDebugLog {
|
if c.useDebugLog {
|
||||||
c.smtpClient.SetDebugLog(true)
|
c.smtpClient.SetDebugLog(true)
|
||||||
}
|
}
|
||||||
|
if c.logAuthData {
|
||||||
|
c.smtpClient.SetLogAuthData()
|
||||||
|
}
|
||||||
if err = c.smtpClient.Hello(c.helo); err != nil {
|
if err = c.smtpClient.Hello(c.helo); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue