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
|
package config
import (
"git.sr.ht/~rjarry/aerc/lib/log"
"github.com/go-ini/ini"
)
type HooksConfig struct {
AercStartup string `ini:"aerc-startup"`
AercShutdown string `ini:"aerc-shutdown"`
FlagChanged string `ini:"flag-changed"`
MailReceived string `ini:"mail-received"`
MailDeleted string `ini:"mail-deleted"`
MailAdded string `ini:"mail-added"`
MailSent string `ini:"mail-sent"`
TagModified string `ini:"tag-modified"`
}
var Hooks HooksConfig
func parseHooks(file *ini.File) error {
err := MapToStruct(file.Section("hooks"), &Hooks, true)
if err != nil {
return err
}
log.Debugf("aerc.conf: [hooks] %#v", Hooks)
return nil
}
|