Commit 261c593d 261c593d707759631fe5a329be25f88ac4b0d3be by uid65541

2003-12-28 Jeff Bailey <jbailey@nisa.net>

        * doc/texinfo/Makefile.am: Use ../$(srcdir) instead of .. to
        support srcdir != builddir invocations of make html.

        * doc/texinfo/programs.texi: Provide sample invocation of
        mail.local.  Include note about virtual hosting.
1 parent 0a6ef3fc
2003-12-28 Jeff Bailey <jbailey@nisa.net>
* doc/texinfo/Makefile.am: Use ../$(srcdir) instead of .. to
support srcdir != builddir invocations of make html.
* doc/texinfo/programs.texi: Provide sample invocation of
mail.local. Include note about virtual hosting.
2003-12-28 Sergey Poznyakoff
* movemail/movemail.c: Minor changes for compatibility with
......
......@@ -84,19 +84,19 @@ html_node:
texi2html="$(TEXI2HTML)";\
if ! test -d html_node; then mkdir html_node; fi; \
cd html_node; \
$$texi2html -menu -split_node ../mailutils.texi
$$texi2html -menu -split_node ../$(srcdir)/mailutils.texi
html_chapter:
texi2html="$(TEXI2HTML)";\
if ! test -d html_chapter; then mkdir html_chapter; fi; \
cd html_chapter; \
$$texi2html -menu -split_chapter ../mailutils.texi
$$texi2html -menu -split_chapter ../$(srcdir)/mailutils.texi
html_mono:
texi2html="$(TEXI2HTML)";\
if ! test -d html_mono; then mkdir html_mono; fi; \
cd html_mono; \
$$texi2html -menu -monolithic ../mailutils.texi
$$texi2html -menu -monolithic ../$(srcdir)/mailutils.texi
ps: mailutils.ps
......
......@@ -2046,6 +2046,17 @@ and appends the received data to the local mailboxes.
@node Invocation
@subsection Invoking mail.local
General usage of @command{mail.local} program is:
@example
mail.local [OPTION...] recipient [recipient ...]
@end example
@noindent
If recipient part is present is a FQDN, @command{mail.local}
will attempt to deliver to a virtual host.
The program uses following option groups: @xref{mailbox}, @xref{auth},
@xref{logging}, @xref{sieve}.
......