updated dovecot state
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2023-07-13 19:47:03 +02:00
parent b0b55a7e5c
commit 78bd7aed87
4 changed files with 7 additions and 6 deletions

View File

@ -10,7 +10,7 @@ dovecot-imap-user:
dovecot-config-main-{{ name }}:
file.managed:
- name: {{ dovecot.config_dir }}/{{ name }}
- source: salt://dovecot/files/config.j2
- source: salt://dovecot/templates/config.j2
- template: jinja
- user: root
- group: root
@ -24,7 +24,7 @@ dovecot-config-main-{{ name }}:
dovecot-config-conf.d-{{ name }}:
file.managed:
- name: {{ dovecot.config_dir }}/conf.d/{{ name }}
- source: salt://dovecot/files/config.j2
- source: salt://dovecot/templates/config.j2
- template: jinja
- user: root
- group: root

View File

@ -26,9 +26,9 @@ dovecot:
special_use: \Trash
mailbox Drafts:
auto: "no"
special_use: "Drafts"
special_use: \Drafts
mailbox Sent:
auto: subscribe
auto: "subscribe"
special_use: \Sent
mailbox "Sent Messages":
auto: "no"
@ -97,7 +97,7 @@ dovecot:
lda_mailbox_autocreate: 'yes'
lda_mailbox_autosubscribe: 'yes'
protocol lda:
mail_plugins: $mail_plugins autocreate sieve quota
mail_plugins: $mail_plugins sieve quota
postmaster_address: postmaster@example.com
hostname: host.example.com
auth_socket_path: /var/run/dovecot/auth-master
@ -121,7 +121,7 @@ dovecot:
20-lmtp.conf:
protocol lmtp:
postmaster_address: postmaster@example.com
mail_plugins: $mail_plugins autocreate sieve quota
mail_plugins: $mail_plugins sieve quota
log_path: /var/log/dovecot-lmtp-errors.log
info_log_path: /var/log/dovecot-lmtp.log
20-submission:

View File

@ -1,5 +1,6 @@
---
{%- from "dovecot/map.jinja" import dovecot with context %}
dovecot-pkgs:
pkg.installed:
- pkgs: {{ dovecot.pkgs }}