summaryrefslogtreecommitdiff
path: root/manifests/sympa
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/sympa')
-rw-r--r--manifests/sympa/domain.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/sympa/domain.pp b/manifests/sympa/domain.pp
new file mode 100644
index 0000000..7da9a89
--- /dev/null
+++ b/manifests/sympa/domain.pp
@@ -0,0 +1,11 @@
+define mail::sympa::domain() {
+ $subdomain = $name
+
+ postfix::transport_regexp_snippet { 'sympa_transport_regexp':
+ content => template('mail/sympa/transport_regexp.erb'),
+ }
+
+ postfix::virtual_regexp_snippet { 'sympa_virtual_regexp':
+ content => template('mail/sympa/virtual_regexp.erb'),
+ }
+}