aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-03-21 10:49:56 +0000
committerMichael Scherer <misc@mageia.org>2011-03-21 10:49:56 +0000
commit28419b3c7b8ca83a76b939b770317d94f2b5b4eb (patch)
tree9e5605c869931dc77b6f5cc120457cb588e33bad
parent6512084f04402082b588e793826e6a6c7ca8e0a0 (diff)
downloadpuppet-28419b3c7b8ca83a76b939b770317d94f2b5b4eb.tar
puppet-28419b3c7b8ca83a76b939b770317d94f2b5b4eb.tar.gz
puppet-28419b3c7b8ca83a76b939b770317d94f2b5b4eb.tar.bz2
puppet-28419b3c7b8ca83a76b939b770317d94f2b5b4eb.tar.xz
puppet-28419b3c7b8ca83a76b939b770317d94f2b5b4eb.zip
add board-private and board-public
-rw-r--r--deployment/lists/manifests/init.pp19
1 files changed, 19 insertions, 0 deletions
diff --git a/deployment/lists/manifests/init.pp b/deployment/lists/manifests/init.pp
index 823154c2..feb97855 100644
--- a/deployment/lists/manifests/init.pp
+++ b/deployment/lists/manifests/init.pp
@@ -131,4 +131,23 @@ class lists {
topics => "developers",
}
+ # rda asked for a list where posting is restricted to a ldap
+ # group, and where everybody can subscribe. While the name is not
+ # really reflecting the usage, the functionnal requirements are fullfilled
+ # FIXME people in the board group should be subscribed to this list
+ #
+ sympa::announce_list_group { "board-public":
+ subject => "List for public board discussion",
+ reply_to => false,
+ sender_ldap_group => "mga-board",
+ topics => "governance",
+ }
+
+ sympa::private_list { "board-private":
+ subject => "List for private board discussion",
+ sender_ldap_group => "mga-board",
+ topics => "governance",
+ }
+
+
}