summaryrefslogtreecommitdiff
path: root/manifests/mlmmj.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-04-12 01:10:49 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-04-12 01:10:49 -0300
commit51b362d14959a416082f8cb14231e79dd020a931 (patch)
treed2c94f40b8261991a77685c60072dabb52399bbc /manifests/mlmmj.pp
parent97994228e4dfddc0a1be398b2ffc37548e32bc4a (diff)
downloadpuppet-mail-51b362d14959a416082f8cb14231e79dd020a931.tar.gz
puppet-mail-51b362d14959a416082f8cb14231e79dd020a931.tar.bz2
Fixing transport regexps for mlmmj
Diffstat (limited to 'manifests/mlmmj.pp')
-rw-r--r--manifests/mlmmj.pp7
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/mlmmj.pp b/manifests/mlmmj.pp
index d232213..d8faf83 100644
--- a/manifests/mlmmj.pp
+++ b/manifests/mlmmj.pp
@@ -47,7 +47,12 @@ class mail::mlmmj {
# That's why we need one definition per mailing list.
define list($ensure = 'present') {
postfix::transport_regexp_snippet { "mlmmj_transport_regexp-$name":
- content => "/^($name).*$/ mlmmj:$name\n",
+ content => "/^($name)\@.*$/ mlmmj:$name\n",
+ ensure => $ensure,
+ }
+
+ postfix::transport_regexp_snippet { "mlmmj_transport_regexp-$name-request":
+ content => "/^($name)\+.*\@.*$/ mlmmj:$name\n",
ensure => $ensure,
}
}