aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2013-04-22 18:35:11 +0000
committerNicolas Vigier <boklm@mageia.org>2013-04-22 18:35:11 +0000
commit151f54be76a133c9d86881e481726473720453d4 (patch)
tree94ed894f146c4b7e80451378191ebd45445e0eb5 /modules/sympa
parent73de28b08c52c468292388c9c4f2fe28c5aef88f (diff)
downloadpuppet-151f54be76a133c9d86881e481726473720453d4.tar
puppet-151f54be76a133c9d86881e481726473720453d4.tar.gz
puppet-151f54be76a133c9d86881e481726473720453d4.tar.bz2
puppet-151f54be76a133c9d86881e481726473720453d4.tar.xz
puppet-151f54be76a133c9d86881e481726473720453d4.zip
sympa: remove unused list types
Diffstat (limited to 'modules/sympa')
-rw-r--r--modules/sympa/manifests/announce_list_group.pp17
-rw-r--r--modules/sympa/manifests/list/private_email.pp17
-rw-r--r--modules/sympa/manifests/list/private_open.pp19
-rw-r--r--modules/sympa/manifests/list/restricted.pp15
-rw-r--r--modules/sympa/manifests/restricted_list_open.pp14
5 files changed, 0 insertions, 82 deletions
diff --git a/modules/sympa/manifests/announce_list_group.pp b/modules/sympa/manifests/announce_list_group.pp
deleted file mode 100644
index ddb3747a..00000000
--- a/modules/sympa/manifests/announce_list_group.pp
+++ /dev/null
@@ -1,17 +0,0 @@
-# list where announce are sent by member of ldap_group
-# reply_to is set to $reply_to
-define sympa::announce_list_group($subject,
- $reply_to,
- $sender_ldap_group,
- $language = 'en',
- $topics = false) {
- # profile + scenario
- list { $name:
- subject => $subject,
- profile => '',
- language => $language,
- topics => $topics,
- reply_to => $reply_to,
- sender_ldap_group => $sender_ldap_group,
- }
-}
diff --git a/modules/sympa/manifests/list/private_email.pp b/modules/sympa/manifests/list/private_email.pp
deleted file mode 100644
index 54e70592..00000000
--- a/modules/sympa/manifests/list/private_email.pp
+++ /dev/null
@@ -1,17 +0,0 @@
-# same as private_list, but post are restricted to $email
-# ( scripting )
-define sympa::list::private_email($subject,
- $subscriber_ldap_group,
- $sender_email,
- $language ='en',
- $topics = false) {
- list { $name:
- subject => $subject,
- profile => '',
- language => $language,
- topics => $topics,
- subscriber_ldap_group => $subscriber_ldap_group,
- sender_email => $sender_email,
- public_archive => false,
- }
-}
diff --git a/modules/sympa/manifests/list/private_open.pp b/modules/sympa/manifests/list/private_open.pp
deleted file mode 100644
index 5d944d7f..00000000
--- a/modules/sympa/manifests/list/private_open.pp
+++ /dev/null
@@ -1,19 +0,0 @@
-# list with private archive, restricted to member of $ldap_group
-# everybody can post
-# used for contact alias
-define sympa::list::private_open( $subject,
- $subscriber_ldap_group,
- $language = 'en',
- $topics = false) {
- sympa::list { $name:
- subject => $subject,
- profile => '',
- language => $language,
- topics => $topics,
- subscriber_ldap_group => $subscriber_ldap_group,
- sender_subscriber => true,
- public_archive => false,
- }
-}
-
-
diff --git a/modules/sympa/manifests/list/restricted.pp b/modules/sympa/manifests/list/restricted.pp
deleted file mode 100644
index 779cd3fb..00000000
--- a/modules/sympa/manifests/list/restricted.pp
+++ /dev/null
@@ -1,15 +0,0 @@
-# list where people cannot subscribe, where people from $ldap_group receive
-# mail, with public archive
-define sympa::list::restricted($subject,
- $subscriber_ldap_group,
- $language = 'en',
- $topics = false) {
- list { $name:
- subject => $subject,
- profile => '',
- topics => $topics,
- language => $language,
- subscriber_ldap_group => $subscriber_ldap_group,
- sender_ldap_group => $subscriber_ldap_group,
- }
-}
diff --git a/modules/sympa/manifests/restricted_list_open.pp b/modules/sympa/manifests/restricted_list_open.pp
deleted file mode 100644
index 1730b970..00000000
--- a/modules/sympa/manifests/restricted_list_open.pp
+++ /dev/null
@@ -1,14 +0,0 @@
-# same as restricted list, but anybody can post
-define sympa::restricted_list_open( $subject,
- $subscriber_ldap_group,
- $language = 'en',
- $topics = false) {
- list { $name:
- subject => $subject,
- profile => '',
- language => $language,
- topics => $topics,
- subscriber_ldap_group => $subscriber_ldap_group,
- sender_ldap_group => $subscriber_ldap_group,
- }
-}