summaryrefslogtreecommitdiffstats
path: root/src/go/plugin/go.d/modules/postfix/init.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/plugin/go.d/modules/postfix/init.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/go/plugin/go.d/modules/postfix/init.go b/src/go/plugin/go.d/modules/postfix/init.go
new file mode 100644
index 000000000..ffa50af8d
--- /dev/null
+++ b/src/go/plugin/go.d/modules/postfix/init.go
@@ -0,0 +1,38 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package postfix
+
+import (
+ "errors"
+ "os"
+ "os/exec"
+ "strings"
+)
+
+func (p *Postfix) validateConfig() error {
+ if p.BinaryPath == "" {
+ return errors.New("no postqueue binary path specified")
+ }
+ return nil
+}
+
+func (p *Postfix) initPostqueueExec() (postqueueBinary, error) {
+ binPath := p.BinaryPath
+
+ if !strings.HasPrefix(binPath, "/") {
+ path, err := exec.LookPath(binPath)
+ if err != nil {
+ return nil, err
+ }
+ binPath = path
+ }
+
+ if _, err := os.Stat(binPath); err != nil {
+ return nil, err
+ }
+
+ pq := newPostqueueExec(binPath, p.Timeout.Duration())
+ pq.Logger = p.Logger
+
+ return pq, nil
+}