blob: 7204c4eec74bd4cbfa624ef964dc85843badabaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<!--
$FML: newml.recipes.sgml,v 1.1 2005/07/23 01:57:36 fukachan Exp $
$jaFML: newml.recipes.sgml,v 1.3 2004/10/06 09:07:42 fukachan Exp $
-->
<sect1 id="setup.newml.recipies">
<title>
Recipes
</title>
<qandaset>
<!-- Q -->
<qandaentry>
<question>
<para>
Specify administrator's mail address in alias file
when "newml" command runs.
</para>
</question>
<answer>
<para>
CUI (makefml/fml) creats an alias in "newml".
<screen>
${ml_name}-admin: ADDRESS
</screen>
where ADDRESS is defined by $newml_command_ml_admin_default_address.
By default, $newml_command_ml_admin_default_address == $fml_owner
defined in /usr/local/etc/fml/main.cf file.
To change the value, specify
$newml_command_ml_admin_default_address
in site_default_config.cf.
<screen>
$newml_command_ml_admin_default_address = YOUR_ADDRESS
</screen>
You can use $ml_name here.
<screen>
$newml_command_ml_admin_default_address = $ml_name-owner@$ml_domain
</screen>
</para>
</answer>
</qandaentry>
<!-- Q -->
<qandaentry>
<question>
<para>
Not create a configuration file for a specific MTA not used.
</para>
</question>
<answer>
<para>
$newml_command_mta_config_list defines list of MTA.
"makefml newml" command creates examples of the specified MTA's.
Remove the specific MTA from the list to disable example creation.
</para>
<para>
For example, you do not need "qmail" configuration example
<screen>
newml_command_mta_config_list -= qmail
</screen>
&fml8; does not generate ~/.qmail-* files.
</para>
</answer>
</qandaentry>
</qandaset>
</sect1>
|