aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS10
-rw-r--r--bootstrap.conf3
-rw-r--r--doc/pies.texi8
3 files changed, 14 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 083a42b..03dc467 100644
--- a/NEWS
+++ b/NEWS
@@ -1,23 +1,23 @@
-Mailfromd NEWS -- history of user-visible changes. 2009-10-16
-Copyright (C) 2005, 2006, 2007, 2008, 2009 Sergey Poznyakoff
+Mailfromd NEWS -- history of user-visible changes. 2009-10-17
+Copyright (C) 2009 Sergey Poznyakoff
See the end of file for copying conditions.
Please send Mailfromd bug reports to <bug-mailfromd@gnu.org.ua>
-Version 1.0 (Git)
+Version 1.0, 2009-10-17
-First independent release. Previous versions were released as
+First stand-alone release. Previous versions were released as
part of Mailfromd (http://mailfromd.software.gnu.org.ua).
=========================================================================
Copyright information:
-Copyright (C) 2005, 2006, 2007, 2008, 2009 Sergey Poznyakoff
+Copyright (C) 2009 Sergey Poznyakoff
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
copyright notice and this permission notice are preserved,
thus giving the recipient permission to redistribute in turn.
diff --git a/bootstrap.conf b/bootstrap.conf
index 02ae139..cc7d8f3 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -18,15 +18,16 @@ source_base=gnu
gnulib_name=libgnu
gnulib_mk=Makefile.am
SKIP_PO=t
if git config submodule.grecs.url >/dev/null; then : ; else
git submodule init || exit $?
- git submodule update || exit $?
fi
+git submodule update || exit $?
+
MODAVOID="xalloc-die openat-die"
if [ -n "$MODAVOID" ]; then
gnulib_tool_option_extras="`echo $MODAVOID | sed 's/\([^ ][^ ]*\)/--avoid &/g'`"
fi
diff --git a/doc/pies.texi b/doc/pies.texi
index 0bc3bee..142f425 100644
--- a/doc/pies.texi
+++ b/doc/pies.texi
@@ -53,13 +53,13 @@ is included in the section entitled ``GNU Free Documentation License''.
(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
this GNU Manual, like GNU software. Copies published by the Free
Software Foundation raise funds for GNU development.''
@end copying
@titlepage
-@title Program Invocation and Execution Supervisor
+@title The @sc{PIES} Manual
@subtitle version @value{VERSION}, @value{UPDATED}
@author Sergey Poznyakoff.
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage
@@ -1724,21 +1724,23 @@ listed there is alive and responding. If another instance is running,
@anchor{pies-status}
After startup, you can verify the status of the running process
using @option{--status} command line option:
@smallexample
+@group
$ pies --status
redirector smtps/stderr 4697
redirector pmult/stderr 4677
redirector pmult/stdout 4676
component pmult 4678 /usr/local/sbin/pmult
component smar 4680 smar -f /etc/meta1/meta1.conf -d 100
component qmgr 4691 qmgr -f /etc/meta1/meta1.conf
component smtpc 4696 smtpc -f /etc/meta1/meta1.conf
component smtps 4698 smtps -d100 -f /etc/meta1/meta1.conf
+@end group
@end smallexample
In its output, lines beginning with @samp{component} refer to
running components. For running components, the following information
is displayed:
@@ -1785,12 +1787,13 @@ dependencies. The @option{--dump-depmap} option prints on the
standard output the @dfn{dependency map}. This map is a square matrix
with rows representing dependents and columns representing prerequisites.
An @samp{X} sign is placed on each crossing which corresponds to the
actual dependency. For example:
@smallexample
+@group
$ pies --dump-depmap
Dependency map:
0 1 2 3 4
0
1
2 X
@@ -1800,12 +1803,13 @@ Dependency map:
Legend:
0: pmult
1: smar
2: qmgr
3: smtpc
4: smtps
+@end group
@end smallexample
This example corresponds to the configuration file shown in @ref{Hairy
Pies}. To illustrate how to read it, consider the 4th row of the
table. According to the legend, number 4 means @samp{smtps}
component. There are two @samp{X} marks: in columns 1 and 2. This
@@ -1813,16 +1817,18 @@ means that @samp{smtps} depends on @samp{smar} and @samp{qmgr}.
@anchor{dump-prereq}
@xopindex{dump-prereq, described}
You can also list prerequisites explicitly:
@smallexample
+@group
$ pies --dump-prereq
qmgr: smar
smtpc: qmgr
smtps: smar qmgr
+@end group
@end smallexample
@node Invocation
@chapter Pies Invocation
This section summarizes @command{pies} command line options.

Return to:

Send suggestions and report system problems to the System administrator.