summaryrefslogtreecommitdiff
path: root/manifests/mlmmj.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-04-12 23:03:00 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-04-12 23:03:00 -0300
commitadcc8540d295b83c98bc8e9c5cbf6446a5fa5ecd (patch)
tree993332a6c7fdb229a582b9987d6985f8f5b48026 /manifests/mlmmj.pp
parent51b362d14959a416082f8cb14231e79dd020a931 (diff)
downloadpuppet-mail-adcc8540d295b83c98bc8e9c5cbf6446a5fa5ecd.tar.gz
puppet-mail-adcc8540d295b83c98bc8e9c5cbf6446a5fa5ecd.tar.bz2
Trying to avoid an 'unrecognised escape sequence' puppet warning
Diffstat (limited to 'manifests/mlmmj.pp')
-rw-r--r--manifests/mlmmj.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/mlmmj.pp b/manifests/mlmmj.pp
index d8faf83..9db4356 100644
--- a/manifests/mlmmj.pp
+++ b/manifests/mlmmj.pp
@@ -47,12 +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",
+ content => "/^($name)\\+.*\\@.*$/ mlmmj:$name\n",
ensure => $ensure,
}
}