Scroll to navigation

GROK-PI-PIPER(1) GROK-PI-PIPER(1)

NAME

GROK-PI-PIPER - Hook script for piping new messages from public-inbox repos

SYNOPSIS

grok-pi-piper [-h] [-v] [-d] -c CONFIG [-l PIPELAST] [--version] repo


DESCRIPTION

This is a ready-made hook script that can be called from pull.post_update_hook when mirroring public-inbox repositories. It will pipe all newly received messages to arbitrary commands defined in the config file. The simplest configuration for lore.kernel.org is:

~/.config/pi-piper.conf
-----------------------
[DEFAULT]
pipe = /usr/bin/procmail
# Prune successfully processed messages
shallow = yes
~/.procmailrc
-------------
DEFAULT=$HOME/Maildir/
# Don't deliver cross-posted duplicates
:0 Wh: .msgid.lock
| formail -D 8192 .msgid.cache
~/.config/lore.conf
-------------------
[core]
toplevel = ~/.local/share/grokmirror/lore
log = ${toplevel}/grokmirror.log
[remote]
site = https://lore.kernel.org
manifest = https://lore.kernel.org/manifest.js.gz
[pull]
post_update_hook = ~/.local/bin/grok-pi-piper -c ~/.config/pi-piper.conf
include = /list-you-want/*

/another-list/*


It assumes that grokmirror was installed from pip. If you installed it via some other means, please check the path for the grok-pi-piper script.

Note, that initial clone may take a long time, even if you set shallow=yes.

See pi-piper.conf for other config options.

OPTIONS

show this help message and exit
Be verbose and tell us what you are doing (default: False)
Do a dry-run and just show what would be done (default: False)
Location of the configuration file (default: None)
Force pipe last NN messages in the list, regardless of tracking (default: None)
show program's version number and exit



SEE ALSO


SUPPORT

Email tools@linux.kernel.org.

AUTHOR

mricon@kernel.org

License: GPLv3+

COPYRIGHT

The Linux Foundation and contributors

2020-10-07 2.0.2