# public-inbox data flow
#
# Note: choose either "delivery tools" OR "git mirroring tools"
-# for a given inboxdir. Combining them for the SAME inboxdir
-# will cause conflicts. Of course, different inboxdirs may
-# choose different means of getting mail into them.
+# for a given inboxdir. Using them simultaneously for the
+# SAME inboxdir will cause conflicts. Of course, different
+# inboxdirs may choose different means of getting mail into them.
+# You may fork any inbox by starting with "git mirroring tools",
+# and switching to "delivery tools".
graph { flow: down }
public-inbox-learn] -> [inboxdir]
[git mirroring tools:\n
+ public-inbox-clone,\n
+ public-inbox-fetch,\n
grok-pull,\n
various scripts
] -- git (clone|fetch) &&\n
[inboxdir] ->
[read-only daemons:\n
+ public-inbox-netd\n
public-inbox-httpd\n
public-inbox-imapd\n
public-inbox-nntpd]
-# Copyright 2020-2021 all contributors <meta@public-inbox.org>
+# Copyright all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
# public-inbox data flow
#
# Note: choose either "delivery tools" OR "git mirroring tools"
-# for a given inboxdir. Combining them for the SAME inboxdir
-# will cause conflicts. Of course, different inboxdirs may
-# choose different means of getting mail into them.
+# for a given inboxdir. Using them simultaneously for the
+# SAME inboxdir will cause conflicts. Of course, different
+# inboxdirs may choose different means of getting mail into them.
+# You may fork any inbox by starting with "git mirroring tools",
+# and switching to "delivery tools".
+--------------------+
| delivery tools: |
|
v
+----------------------+ +--------------------+
-| git mirroring tools: | git (clone|fetch) && | |
-| grok-pull, | public-inbox-index | inboxdir |
+| git mirroring tools: | | |
+| public-inbox-clone, | | |
+| public-inbox-fetch, | git (clone|fetch) && | inboxdir |
+| grok-pull, | public-inbox-index | |
| various scripts | ----------------------> | |
+----------------------+ +--------------------+
|
v
+--------------------+
| read-only daemons: |
+ | public-inbox-netd |
| public-inbox-httpd |
| public-inbox-imapd |
| public-inbox-nntpd |
+--------------------+
-# Copyright 2020-2021 all contributors <meta@public-inbox.org>
+# Copyright all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+# This file was generated from flow.txt using Graph::Easy
-# Copyright (C) 2013-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
all::
# flow.txt is checked into git since Graph::Easy isn't in many distros
Documentation/flow.txt : Documentation/flow.ge
- (sed -ne '1,/^$$/p' <Documentation/flow.ge; \
- $(GRAPH_EASY) Documentation/flow.ge || \
- cat Documentation/flow.txt; \
+
+%.txt : %.ge
+ (sed -ne '1,/^$$/p' <$<; \
+ $(GRAPH_EASY) $< || grep -v '^#' $@; \
echo; \
- sed -ne '/^# Copyright/,$$p' <Documentation/flow.ge \
+ sed -ne '/^# Copyright/,$$p' <$< \
) >$@+
- touch -r Documentation/flow.ge $@+
+ echo >>$@+ \
+ '# This file was generated from $(@F) using Graph::Easy'
+ touch -r $< $@+
mv $@+ $@
Documentation/lei-q.pod : lib/PublicInbox/Search.pm Documentation/common.perl