forked from flashmob/go-guerrilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp_debugger.go
55 lines (51 loc) · 1.78 KB
/
p_debugger.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package backends
import (
"github.com/flashmob/go-guerrilla/mail"
"strings"
)
// ----------------------------------------------------------------------------------
// Processor Name: debugger
// ----------------------------------------------------------------------------------
// Description : Log received emails
// ----------------------------------------------------------------------------------
// Config Options: log_received_mails bool - log if true
// --------------:-------------------------------------------------------------------
// Input : e.MailFrom, e.RcptTo, e.Header
// ----------------------------------------------------------------------------------
// Output : none (only output to the log if enabled)
// ----------------------------------------------------------------------------------
func init() {
processors[strings.ToLower(defaultProcessor)] = func() Decorator {
return Debugger()
}
}
type debuggerConfig struct {
LogReceivedMails bool `json:"log_received_mails"`
}
func Debugger() Decorator {
var config *debuggerConfig
initFunc := InitializeWith(func(backendConfig BackendConfig) error {
configType := BaseConfig(&debuggerConfig{})
bcfg, err := Svc.ExtractConfig(backendConfig, configType)
if err != nil {
return err
}
config = bcfg.(*debuggerConfig)
return nil
})
Svc.AddInitializer(initFunc)
return func(p Processor) Processor {
return ProcessWith(func(e *mail.Envelope, task SelectTask) (Result, error) {
if task == TaskSaveMail {
if config.LogReceivedMails {
Log().Infof("Mail from: %s / to: %v", e.MailFrom.String(), e.RcptTo)
Log().Info("Headers are:", e.Header)
}
// continue to the next Processor in the decorator stack
return p.Process(e, task)
} else {
return p.Process(e, task)
}
})
}
}