mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 21:27:35 +03:00
Rework logging
Implement debug log (can be enabled using `debug` config directive) Remove errors directive for IMAP endpoint module.
This commit is contained in:
parent
84d150a00f
commit
ee553a4cc4
10 changed files with 173 additions and 92 deletions
32
config.go
32
config.go
|
@ -3,10 +3,6 @@ package maddy
|
|||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/emersion/maddy/config"
|
||||
"github.com/emersion/maddy/module"
|
||||
|
@ -123,31 +119,3 @@ func defaultStorage() (interface{}, error) {
|
|||
}
|
||||
return res, nil
|
||||
}
|
||||
|
||||
func errorsDirective(m *config.Map, node *config.Node) (interface{}, error) {
|
||||
if len(node.Args) != 1 {
|
||||
return nil, m.MatchErr("expected 1 argument")
|
||||
}
|
||||
if len(node.Children) != 0 {
|
||||
return nil, m.MatchErr("can't declare block here")
|
||||
}
|
||||
|
||||
output := node.Args[0]
|
||||
var w io.Writer
|
||||
switch output {
|
||||
case "off":
|
||||
w = ioutil.Discard
|
||||
case "stdout":
|
||||
w = os.Stdout
|
||||
case "stderr":
|
||||
w = os.Stderr
|
||||
default:
|
||||
f, err := os.OpenFile(output, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0666)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
w = f
|
||||
}
|
||||
|
||||
return log.New(w, "imap ", log.LstdFlags), nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue