| 30 | ) |
| 31 | |
| 32 | type Modifier struct { |
| 33 | InstName string |
| 34 | |
| 35 | InitErr error |
| 36 | MailFromErr error |
| 37 | RcptToErr error |
| 38 | BodyErr error |
| 39 | |
| 40 | MailFrom map[string]string |
| 41 | RcptTo map[string][]string |
| 42 | AddHdr textproto.Header |
| 43 | |
| 44 | UnclosedStates int |
| 45 | } |
| 46 | |
| 47 | func (m Modifier) Configure([]string, *config.Map) error { |
| 48 | return nil |
nothing calls this directly
no outgoing calls
no test coverage detected