]> gitweb.fluxo.info Git - utils-mail.git/commitdiff
Feat: adds alternative getmails wrapper
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 12 Nov 2020 22:22:37 +0000 (19:22 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 12 Nov 2020 22:22:37 +0000 (19:22 -0300)
getmails-alternative [new file with mode: 0755]

diff --git a/getmails-alternative b/getmails-alternative
new file mode 100755 (executable)
index 0000000..982f7aa
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/bash
+#
+# Simple wrapper around getmail to fetch from all active accounts.
+# Alternative to the getmails(1) wrapper.
+# See http://pyropus.ca/software/getmail/configuration.html#running-commandline-options
+#
+
+# Parameters
+CONFIG_FOLDER="$HOME/.getmail/config"
+
+# Check
+if [ ! -d "$CONFIG_FOLDER" ]; then
+  exit
+fi
+
+# Dispatch
+ls -1 $CONFIG_FOLDER | grep -v '^oldmail-' | grep '@' | grep -v '.disabled$' | xargs echo | sed -e 's/ / --rcfile /g' | xargs echo getmail --rcfile