mirror of
https://github.com/mjl-/mox.git
synced 2025-07-12 10:24:37 +03:00
various nits
This commit is contained in:
@ -167,7 +167,6 @@ binary should be setgid that group:
|
|||||||
for {
|
for {
|
||||||
block, rest := pem.Decode(pemBuf)
|
block, rest := pem.Decode(pemBuf)
|
||||||
if block == nil && len(rest) != 0 {
|
if block == nil && len(rest) != 0 {
|
||||||
log.Printf("xxx, leftover data %q", rest)
|
|
||||||
log.Fatalf("leftover data in pem file")
|
log.Fatalf("leftover data in pem file")
|
||||||
} else if block == nil {
|
} else if block == nil {
|
||||||
break
|
break
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
// MsgReader provides access to a message. Reads return the "msg_prefix" in the
|
// MsgReader provides access to a message. Reads return the "MsgPrefix" in the
|
||||||
// database (typically received headers), followed by the on-disk msg file
|
// database (typically received headers), followed by the on-disk msg file
|
||||||
// contents. MsgReader is an io.Reader, io.ReaderAt and io.Closer.
|
// contents. MsgReader is an io.Reader, io.ReaderAt and io.Closer.
|
||||||
type MsgReader struct {
|
type MsgReader struct {
|
||||||
|
@ -24,7 +24,7 @@ var ErrNoJunkFilter = errors.New("junkfilter: not configured")
|
|||||||
// Do not forget to save the filter after modifying, and to always close the filter when done.
|
// Do not forget to save the filter after modifying, and to always close the filter when done.
|
||||||
// An empty filter is initialized on first access of the filter.
|
// An empty filter is initialized on first access of the filter.
|
||||||
func (a *Account) OpenJunkFilter(ctx context.Context, log mlog.Log) (*junk.Filter, *config.JunkFilter, error) {
|
func (a *Account) OpenJunkFilter(ctx context.Context, log mlog.Log) (*junk.Filter, *config.JunkFilter, error) {
|
||||||
conf, ok := mox.Conf.Account(a.Name)
|
conf, ok := a.Conf()
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, nil, ErrAccountUnknown
|
return nil, nil, ErrAccountUnknown
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user