summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmailsync.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/mailsync.sh b/mailsync.sh
new file mode 100755
index 0000000..f3a20b4
--- /dev/null
+++ b/mailsync.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+
+DELAY="30"
+
+
+while :
+do
+ offlineimap
+ notmuch new
+ sleep "${DELAY}"
+done