2020-11-07 21:31:47 +00:00
|
|
|
# Postfix bundle creates metadata and directories which are also used
|
|
|
|
# by this bundle
|
2021-04-02 16:57:13 +00:00
|
|
|
repo.libs.tools.require_bundle(node, 'postfix')
|
2020-11-07 21:31:47 +00:00
|
|
|
|
2021-08-21 05:31:22 +00:00
|
|
|
directories = {
|
|
|
|
'/etc/dovecot/ssl': {},
|
|
|
|
}
|
|
|
|
|
2020-11-07 21:31:47 +00:00
|
|
|
files = {
|
|
|
|
'/etc/dovecot/dovecot.conf': {
|
|
|
|
'content_type': 'mako',
|
|
|
|
'context': {
|
|
|
|
'admin_email': node.metadata['dovecot']['admin_email'],
|
|
|
|
},
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:'
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:dovecot:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/dovecot/dovecot-sql.conf': {
|
|
|
|
'content_type': 'mako',
|
|
|
|
'context': node.metadata['dovecot']['database'],
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:'
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:dovecot:restart',
|
|
|
|
},
|
|
|
|
},
|
2021-08-21 05:31:22 +00:00
|
|
|
'/etc/dovecot/conf.d/auth-system.conf.ext': {
|
|
|
|
'delete': True,
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:'
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:dovecot:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/dovecot/conf.d/10-auth.conf': {
|
|
|
|
'delete': True,
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:'
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:dovecot:restart',
|
|
|
|
},
|
|
|
|
},
|
2020-11-07 21:31:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
actions = {
|
|
|
|
'dovecot_generate_dhparam': {
|
|
|
|
'command': 'openssl dhparam -out /etc/dovecot/ssl/dhparam.pem 2048',
|
|
|
|
'unless': 'test -f /etc/dovecot/ssl/dhparam.pem',
|
|
|
|
'cascade_skip': False,
|
|
|
|
'needs': {
|
2021-08-21 05:31:22 +00:00
|
|
|
'directory:/etc/dovecot/ssl',
|
2020-11-07 21:31:47 +00:00
|
|
|
'pkg_apt:'
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:dovecot:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
svc_systemd = {
|
|
|
|
'dovecot': {
|
|
|
|
'needs': {
|
|
|
|
'action:dovecot_generate_dhparam',
|
|
|
|
'file:/etc/dovecot/dovecot.conf',
|
|
|
|
'file:/etc/dovecot/dovecot-sql.conf',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if node.has_bundle('rspamd'):
|
|
|
|
files['/var/mail/vmail/sieve/global/learn-ham.sieve'] = {
|
|
|
|
'owner': 'nobody',
|
|
|
|
'group': 'nogroup',
|
|
|
|
}
|
|
|
|
files['/var/mail/vmail/sieve/global/learn-spam.sieve'] = {
|
|
|
|
'owner': 'nobody',
|
|
|
|
'group': 'nogroup',
|
|
|
|
}
|
|
|
|
files['/var/mail/vmail/sieve/global/spam-global.sieve'] = {
|
|
|
|
'owner': 'nobody',
|
|
|
|
'group': 'nogroup',
|
|
|
|
}
|