aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-05-16 01:27:31 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-05-16 01:27:31 +0200
commit668753b7a2cde64a7a5ee424bc115d6e054efb68 (patch)
tree2a12b7575d9e7107a182f9717a76fd084a31d58f
parent946f03bb0e69f9de042aedab5362278227b88b93 (diff)
downloadbin-668753b7a2cde64a7a5ee424bc115d6e054efb68.tar.xz
Add learn-{ham,spam}
Two spambayes wrappers that uploads to theos
-rwxr-xr-xlearn-ham6
-rwxr-xr-xlearn-spam6
2 files changed, 12 insertions, 0 deletions
diff --git a/learn-ham b/learn-ham
new file mode 100755
index 0000000..6532dd7
--- /dev/null
+++ b/learn-ham
@@ -0,0 +1,6 @@
+#!/usr/bin/env bash
+
+sb_mboxtrain.py -d "$MAIL"/spambayes.db -g "$MAIL"/learn-ham -r
+rsync "$MAIL"/spambayes.db \
+ kyrias@theos.kyriasis.com:Mail/spambayes.db \
+ --update --checksum --human-readable --progress
diff --git a/learn-spam b/learn-spam
new file mode 100755
index 0000000..6afbb55
--- /dev/null
+++ b/learn-spam
@@ -0,0 +1,6 @@
+#!/usr/bin/env bash
+
+sb_mboxtrain.py -d "$MAIL"/spambayes.db -s "$MAIL"/learn-spam -r
+rsync "$MAIL"/spambayes.db \
+ kyrias@theos.kyriasis.com:Mail/spambayes.db \
+ --update --checksum --human-readable --progress