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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
|
<!--
$FML: fml.sgml,v 1.1 2003/07/25 14:30:51 fukachan Exp $
$jaFML: fml.sgml,v 1.4 2003/04/15 14:51:43 fukachan Exp $
-->
<chapter id="overview.fml">
<title>
&fmldevel; overview
</title>
<!-- ======================================================== -->
<sect1 id="overview.fml8">
<title>
&fmldevel; features
</title>
<para>
<itemizedlist>
<listitem>
<para>
new postfix style format configuration files (.cf files).
</para>
</listitem>
<listitem>
<para>
usage of CUI is almost same as one of &fml4;
(it is same as could as possible).
You can use CUI (makefml and fml command)
to create/remove an ML,
to add/remove/change an addresse of ML members,
to add/remove/change an address of remote administrators,
to see log and member list,
et.al.
Makefml and fml are same programs except for argument order.
</para>
</listitem>
<listitem>
<para>
CGI interface.
The functions are a subset of CUI ones.
</para>
</listitem>
<listitem>
<para>
article delivery,
header rewriting
and
several filters.
</para>
</listitem>
<listitem>
<para>
command mail for users.
</para>
</listitem>
<listitem>
<para>
command mail (admin command) for remote administratoin by mail.
</para>
</listitem>
<listitem>
<para>
automatic analyzer of error messages.
</para>
</listitem>
<listitem>
<para>
IPv6 ready.
</para>
</listitem>
<listitem>
<para>
tiny thread track system.
</para>
</listitem>
<listitem>
<para>
built-in module for HTML converter of articles.
support automatic conversion by default.
</para>
</listitem>
<listitem>
<para>
main programs (fml/libexec):
fml.pl distribute command error
</para>
</listitem>
<listitem>
<para>
utilities:
fmladdr
fmlailas
fmlconf
fmldoc
fmlhtmlify
fmlsch
makefml
fml
</para>
</listitem>
<listitem>
<para>
<link linkend="module.io.adapter">
Abstracted IO
</link>
to get member list in unified way from
a file,
/etc/group,
NIS,
SQL.
</para>
</listitem>
</itemizedlist>
</para>
</sect1>
<!-- ======================================================== -->
<sect1 id="overview.fml8.install">
<title>
installation overview
</title>
<important>
<para>
You run GNU autoconf firstly, and "make install". It is standard in
the world of open sources. This procedure is different from &fml4;
installation steps. It may confuse you if you are customered with
&fml4; But &fml8; is more friendly for package systems of free unix
like systems.
</para>
<para>
The main differece between &fml4; and &fml8; in installation is
"work by root",
"use of configure",
and
editing of configuration files:
/usr/local/etc/fml/main.cf
and
/usr/local/etc/fml/site_default_config.cf.
</para>
</important>
<para>
Suppose we create a new ML named elena ML (elena@fml.org).
The brief flow of installation is as follows:
</para>
<orderedlist>
<listitem>
<para>
<link linkend="download">
Download &fml8; source and expand it on the disk.
</link>
</para>
</listitem>
<listitem>
<para>
<link linkend="install.fml.unix">
Install it by user root.
Firstly, change user to "root" and create the user "fml" and
the group "fml".
Secondly, run
<link linkend="install.fml.unix.configure">
configure
</link>
and "make install".
</link>
<screen>
% su root
# groupadd fml
# useradd -m -g fml fml
# ./configure
# make install
</screen>
</para>
<para>
By default,
main programs such as distribute, command, et.al. are installed into
/usr/local/libexec/fml/.
Also, installer installs utility programs to
/usr/local/bin.
<footnote>
<para>
You can control paths by
<link linkend="install.fml.unix.configure">
configure options.
</link>
</para>
</footnote>
These are wrappers to call real programs at /usr/local/libexec/fml/.
</para>
<para>
Perl modules are installed into
/usr/local/lib/fml/$fml_version/
and message templates et.al. are installed into
/usr/local/share/fml/$fml_version/.
</para>
</listitem>
<listitem>
<para>
<link linkend="guide.newml">
Change user to "fml", create elena ML for test.
</link>
<screen>
% su fml
% makefml newml elena
</screen>
You can use "fml" instead of makefml.
Both are same except for the syntax.
<screen>
% su fml
% fml elena newml
</screen>
</para>
</listitem>
<listitem>
<para>
Set up MTA.
</para>
</listitem>
<listitem>
<para>
Test.
</para>
</listitem>
<listitem>
<para>
<link linkend="guide.config.cf">
Cutomize your ML.
</link>
</para>
</listitem>
</orderedlist>
<warning>
<para>
Please install by user root.
It is different from &fml4;.
</para>
</warning>
</sect1>
<!-- ============================================================= -->
<sect1 id="guide.newml">
<title>
Create an ML
</title>
<para>
Create an ML by CUI (makefml).
To create elena@fml.org ML (fml.org is the default domain),
run
<screen>
% su fml
% makefml newml elena
</screen>
. See the section
<link linkend="setup.newml">
<xref linkend="setup.newml">
</link>
for more details.
</para>
<para>
In the virtual domain case, specify the whole address as an argument.
For example, to create an ML elena@nuinui.net, run the following command:
<screen>
% su fml
% makefml newml elena@nuinui.net
</screen>
</para>
</sect1>
<!-- ============================================================= -->
<sect1 id="guide.subscribe">
<title>
add a new user to ML
</title>
<para>
In the case of the default domain (fml.org)
<screen>
% su fml
% makefml subscribe elena rudo@nuinui.net
</screen>
in the case of virtual domain (nuinui.net),
specify the whole adress of ML.
<screen>
% su fml
% makefml subscribe elena@nuinui.net fukachan@sapporo.iij.ad.jp
</screen>
</para>
</sect1>
<!-- ============================================================= -->
<sect1 id="guide.unsubscribe">
<title>
remove the user
</title>
<para>
In the case of the default domain (fml.org),
<screen>
% su fml
% makefml unsubscribe elena rudo@nuinui.net
</screen>
in the case of virtual domain (nuinui.net),
specify the whole adress of ML.
<screen>
% su fml
% makefml unsubscribe elena@nuinui.net fukachan@sapporo.iij.ad.jp
</screen>
</para>
</sect1>
<!-- ============================================================= -->
<sect1 id="guide.config.cf">
<title>
customize
</title>
<warning>
<para>
"makefml config" is a CUI to customize ML by menu form.
BUT NOT yet implemented.
</para>
<para>
Edit configuration files anyway.
</para>
</warning>
<sect2>
<title>
common configurations on this host
</title>
<para>
/usr/local/etc/fml/site_default_config.cf
affects all ML on this host
irrespective of the default domain or virtual domains.
<footnote>
<para>
This corresponds to site_init.ph of &fml4;.
</para>
</footnote>
</para>
<para>
The format of site_default_config.cf is same as config.cf described
below.
</para>
</sect2>
<sect2>
<title>
elena ML's configuration
</title>
<para>
To customize elena ML, edit /var/spool/ml/elena/config.cf file. The
format is a little modified postfix style. It is different from both
&fml4;'s config.ph and cf.
</para>
<para>
Add or modify the least variables. If unspecified, the default value
is used. The default value depends fml version and is defined at
<screen>
/usr/local/etc/fml/defaults/${fml_version}/default_config.cf
</screen>
</para>
<para>
The library path depends fml version.
<link linkend="bootloader">
This technique
</link>
ensures the easy upgrade/downgrade procedure.
This is a feature of &fml8;.
</para>
</sect2>
</sect1>
</chapter>
|