17 lines
474 B
Puppet
17 lines
474 B
Puppet
# roles::infra::mail::backend
|
|
#
|
|
# Configures Stalwart IMAP backend servers in a clustered configuration
|
|
# with PostgreSQL for data/fts/memory storage and S3/Ceph-RGW for blob storage.
|
|
# Integrates with postfix hosts for SMTP relay functionality.
|
|
#
|
|
class roles::infra::mail::backend {
|
|
if $facts['firstrun'] {
|
|
include profiles::defaults
|
|
include profiles::firstrun::init
|
|
} else {
|
|
include profiles::defaults
|
|
include profiles::base
|
|
include stalwart
|
|
}
|
|
}
|