1
0
Fork 0
mirror of https://git.sr.ht/~rjarry/aerc synced 2025-02-22 14:53:57 +01:00
aerc/config/converters.go
Robin Jarry 8edf7b0e4d log: move package to lib
This has nothing to do at the root of the source tree.

Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Bence Ferdinandy <bence@ferdinandy.com>
2024-02-14 23:04:38 +01:00

36 lines
766 B
Go

package config
import (
"fmt"
"strings"
"git.sr.ht/~rjarry/aerc/lib/log"
"github.com/go-ini/ini"
)
var Converters = make(map[string]string)
func parseConverters(file *ini.File) error {
converters, err := file.GetSection("multipart-converters")
if err != nil {
goto out
}
for mimeType, command := range converters.KeysHash() {
mimeType = strings.ToLower(mimeType)
if mimeType == "text/plain" {
return fmt.Errorf(
"multipart-converters: text/plain is reserved")
}
if !strings.HasPrefix(mimeType, "text/") {
return fmt.Errorf(
"multipart-converters: %q: only text/* MIME types are supported",
mimeType)
}
Converters[mimeType] = command
}
out:
log.Debugf("aerc.conf: [multipart-converters] %#v", Converters)
return nil
}