summaryrefslogtreecommitdiff
path: root/fml/doc/en/tutorial/customize
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-08-02 01:19:10 +0000
committerfukachan <fukachan>2003-08-02 01:19:10 +0000
commit26f88d05d24fa845ab0c73f34cae9cf3d99cc91c (patch)
tree92dbba47a718777b604351a2b5d9e301ff1b40fa /fml/doc/en/tutorial/customize
parent5988e8adb4ca1d9bde1ee065dfaf6b6141e2b98b (diff)
downloadfml8-26f88d05d24fa845ab0c73f34cae9cf3d99cc91c.tar.gz
fml8-26f88d05d24fa845ab0c73f34cae9cf3d99cc91c.tar.bz2
fml8-26f88d05d24fa845ab0c73f34cae9cf3d99cc91c.zip
translated
Diffstat (limited to 'fml/doc/en/tutorial/customize')
-rw-r--r--fml/doc/en/tutorial/customize/ml.hier.ml49
1 files changed, 49 insertions, 0 deletions
diff --git a/fml/doc/en/tutorial/customize/ml.hier.ml b/fml/doc/en/tutorial/customize/ml.hier.ml
new file mode 100644
index 00000000..6aeb282a
--- /dev/null
+++ b/fml/doc/en/tutorial/customize/ml.hier.ml
@@ -0,0 +1,49 @@
+<!--
+ $FML$
+ $jaFML: ml.hier.ml,v 1.1 2002/07/29 12:16:19 fukachan Exp $
+
+-->
+
+<sect1 id="config.hier.ml">
+ <title>
+ case study: hierarchical ML
+ </title>
+
+<para>
+Consider usual ML's which allows post from registered members.
+For example, sales 1, 2 and 3 division.
+</para>
+
+<para>
+Create sales-1, sales-2 and sales-3 ML.
+Each division manages each member list.
+Also, create sales ML other than that to inform the whole sales members.
+If you send a mail to sales ML, the mail is sent to all members of
+sales-1, sales-2 and sales-3 ML.
+</para>
+
+<para>
+Define the following $recipient_maps in the config.cf of sales ML.
+<screen>
+recipient_maps += $ml_home_dir/../sales-1/recipients
+recipient_maps += $ml_home_dir/../sales-2/recipients
+recipient_maps += $ml_home_dir/../sales-3/recipients
+</screen>
+</para>
+
+<para>
+Define $member_maps in the same way to allow post from all sales
+members:
+<screen>
+member_maps += $ml_home_dir/../sales-1/members
+member_maps += $ml_home_dir/../sales-2/members
+member_maps += $ml_home_dir/../sales-3/members
+</screen>
+Instead of $member_maps change, it is simple that you allow post from
+anybody. If so set
+<screen>
+post_restrictions = permit_anyone
+</screen>
+</para>
+
+</sect1>