From 72568dd32cb759e2050e74da6757746192444b55 Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Thu, 30 Jun 2022 00:03:01 +0200
Subject: [PATCH] fix(postfix): Add missing dnsblog service to utilise DNSBLs

Currently postfix reports and error due to the missing service. This
patch fixes the problem by enabling the expected service in master.cf
---
 charts/mok/Chart.yaml           | 2 +-
 charts/mok/values.yaml          | 2 +-
 images/postfix/.release         | 2 +-
 images/postfix/config/master.cf | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/charts/mok/Chart.yaml b/charts/mok/Chart.yaml
index 4d6a7bb5d..b99393d00 100644
--- a/charts/mok/Chart.yaml
+++ b/charts/mok/Chart.yaml
@@ -3,7 +3,7 @@ name: mok
 description: |
   Mail on Kubernetes (MoK) is a project to deploy a functional mailserver that runs without a database server on Kubernetes, taking advantage of configmaps and secret.
 type: application
-version: 0.3.0
+version: 0.3.1
 sources:
   - https://de.postfix.org/ftpmirror/index.html
   - https://github.com/dovecot/core
diff --git a/charts/mok/values.yaml b/charts/mok/values.yaml
index c32172f75..cb6d14dc6 100644
--- a/charts/mok/values.yaml
+++ b/charts/mok/values.yaml
@@ -44,7 +44,7 @@ postfix:
     repository: quay.io/shivering-isles/postfix
     pullPolicy: IfNotPresent
     # -- Overrides the image tag whose default is "latest"
-    tag: "0.2.0"
+    tag: "0.2.1"
 
   imagePullSecrets: []
 
diff --git a/images/postfix/.release b/images/postfix/.release
index 9990762bd..15daeb6b1 100644
--- a/images/postfix/.release
+++ b/images/postfix/.release
@@ -1 +1 @@
-release=0.2.0
+release=0.2.1
diff --git a/images/postfix/config/master.cf b/images/postfix/config/master.cf
index 082af700a..faea48565 100644
--- a/images/postfix/config/master.cf
+++ b/images/postfix/config/master.cf
@@ -4,7 +4,7 @@
 # ==========================================================================
 10025      inet  n       -       -       -       1       postscreen
 #smtpd     pass  -       -       -       -       -       smtpd
-#dnsblog   unix  -       -       -       -       0       dnsblog
+dnsblog   unix  -       -       -       -       0       dnsblog
 #tlsproxy  unix  -       -       -       -       0       tlsproxy
 #smtps     inet  n       -       -       -       -       smtpd
 #  -o syslog_name=postfix/smtps
-- 
GitLab