@@ -77,7 +77,6 @@ deployment:
7777 # -----------------------------------------------
7878 LOG_LEVEL : info
7979 SUPERVISOR_LOGLEVEL :
80- ONE_DIR : 1
8180 DMS_VMAIL_UID :
8281 DMS_VMAIL_GID :
8382 ACCOUNT_PROVISIONER :
@@ -103,6 +102,7 @@ deployment:
103102 RSPAMD_GREYLISTING : 0
104103 RSPAMD_HFILTER : 1
105104 RSPAMD_HFILTER_HOSTNAME_UNKNOWN_SCORE : 6
105+ RSPAMD_NEURAL : 0
106106 ENABLE_AMAVIS : 0
107107 AMAVIS_LOGLEVEL : 0
108108 ENABLE_DNSBL : 0
@@ -131,6 +131,7 @@ deployment:
131131 LOGWATCH_SENDER :
132132 REPORT_RECIPIENT :
133133 REPORT_SENDER :
134+ LOGROTATE_COUNT : 4
134135 LOGROTATE_INTERVAL : weekly
135136 POSTFIX_REJECT_UNKNOWN_CLIENT_HOSTNAME : 0
136137 POSTFIX_INET_PROTOCOLS : all
@@ -147,7 +148,7 @@ deployment:
147148 SA_TAG : 2.0
148149 SA_TAG2 : 6.31
149150 SA_KILL : 10.0
150- SA_SPAM_SUBJECT : ' ***SPAM*** '
151+ SPAM_SUBJECT : ' ***SPAM*** '
151152
152153 # -----------------------------------------------
153154 # --- Fetchmail Section -------------------------
@@ -271,6 +272,27 @@ deployment:
271272 # # Optionally specify tolerations for the deployment
272273 tolerations : []
273274
275+ # # Optionally specify initContainers
276+ initContainers : []
277+ # - name: init
278+ # image: alpine:3
279+ # command: [sh, -c]
280+ # args:
281+ # - echo "Hello, world!" > /mnt/extra-storage/test
282+ # volumeMounts:
283+ # - name: extra-storage
284+ # mountPath: /mnt/extra-storage
285+
286+ # # Optionally specify a list of extra mounts to add (normally used with extraVolumes)
287+ extraVolumeMounts : []
288+ # - name: extra-storage
289+ # mountPath: /mnt/extra-storage
290+
291+ # # Optionally specify a list of extra volumes to add
292+ extraVolumes : []
293+ # - name: extra-storage
294+ # emptyDir: {}
295+
274296service :
275297 # # What scope the service should be exposed in. One of:
276298 # # - LoadBalancer (to the world)
@@ -576,22 +598,30 @@ configMaps:
576598 -o milter_macro_daemon_name=ORIGINATING
577599 -o cleanup_service_name=sender-cleanup
578600 -o smtpd_upstream_proxy_protocol=haproxy
601+
602+ # Smtp with proxy
603+ 12525 inet n - n - 1 postscreen
604+ -o syslog_name=postfix/smtp-proxy
605+ -o postscreen_upstream_proxy_protocol=haproxy
606+ -o postscreen_cache_map=btree:$data_directory/postscreen_10025_cache
579607 EOS
580608 {{- end }}
581609
582610# # The secrets key works the same way as the configs key. Use secrets to store sensitive information,
583611# # such as DKIM signing keys.
584612# #
585613# # secrets:
586- # # - name: rspamd.example.com # This is the name of the Secret
587- # # create: true # If true, create a new Secret
588- # # path: rspamd.dkim.rsa-2048-mail-example.com.private.txt
589- # # data: abace # If create is true, then you must specify content. Must be base 64 encoded!
614+ # # rspamd.example.com:
615+ # # name: rspamd.example.com # This is the name of the Secret
616+ # # create: true # If true, create a new Secret
617+ # # path: rspamd.dkim.rsa-2048-mail-example.com.private.txt
618+ # # data: abace # If create is true, then you must specify content. Must be base 64 encoded!
590619# #
591- # # - name: rspamd.dkim.rsa-2048-mail-example.com.public
592- # # create: true
593- # # path: rspamd/dkim/rsa-2048-mail-example.com.public
594- # # data: abace # If create is true, then you must specify content. Must be base 64 encoded!
620+ # # rspamd.dkim.rsa-2048-mail-example.com.public:
621+ # # name: rspamd.dkim.rsa-2048-mail-example.com.public
622+ # # create: true
623+ # # path: rspamd/dkim/rsa-2048-mail-example.com.public
624+ # # data: abace # If create is true, then you must specify content. Must be base 64 encoded!
595625# #
596626# # If you set the create key to false, then you must manually create the ConfigMaps before deploying the chart.
597627# #
0 commit comments