commit 57a90ba638f38fa589119dd6dc6a23482c58bfda
parent 93a39aaac4ba823573b8386cca35570afc8d7b14
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sun, 7 Apr 2019 22:07:37 +0200
README: change procmail parallel running, improve some words
make the procmail example safer due to account process limits.
Diffstat:
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/README b/README
@@ -34,7 +34,8 @@ for sfeed_update:
newsboat -e | sfeed_opml_import > "$HOME/.sfeed/sfeedrc"
-Update feeds, this script merges the new items:
+Update feeds, this script merges the new items, see sfeed_update(1) for more
+information what it can do:
sfeed_update
@@ -195,11 +196,11 @@ Format the feeds files:
# HTML view with the menu as frames, copy style.css for a default style.
mkdir -p somedir && cd somedir && sfeed_frames $HOME/.sfeed/feeds/*
-View in your browser:
+View formatted output in your browser:
$BROWSER "$HOME/.sfeed/feeds.html"
-View in your editor:
+View formatted output in your editor:
$EDITOR "$HOME/.sfeed/feeds.txt"
@@ -421,14 +422,13 @@ procmail_maildirs.sh file:
fi
find "${feedsdir}" -type f -exec printf '%s\n' {} \; | while read -r d; do
- (name=$(basename "${d}")
+ name=$(basename "${d}")
mkdir -p "${maildir}/${name}/cur"
mkdir -p "${maildir}/${name}/new"
mkdir -p "${maildir}/${name}/tmp"
printf 'Mailbox %s\n' "${name}"
- sfeed_mbox "${d}" | formail -s procmail "${procmailconfig}") &
+ sfeed_mbox "${d}" | formail -s procmail "${procmailconfig}"
done
- wait
Procmailrc(5) file: