aboutsummaryrefslogtreecommitdiff
path: root/local/sbin/syncemail
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2017-04-07 14:56:22 +0200
committerKarel Kočí <karel.koci@nic.cz>2017-04-07 14:56:22 +0200
commita793b23435567f2d4f49846196ceebcc47cd764c (patch)
tree5f542d40b11c55ff851724cbab21c27ba7a8ff0d /local/sbin/syncemail
parent6384224250a62e8b1ea913934db5dbae536ce153 (diff)
downloadmyconfigs-a793b23435567f2d4f49846196ceebcc47cd764c.tar.gz
myconfigs-a793b23435567f2d4f49846196ceebcc47cd764c.tar.bz2
myconfigs-a793b23435567f2d4f49846196ceebcc47cd764c.zip
Remove stuff not needed on server
Diffstat (limited to 'local/sbin/syncemail')
-rwxr-xr-xlocal/sbin/syncemail44
1 files changed, 0 insertions, 44 deletions
diff --git a/local/sbin/syncemail b/local/sbin/syncemail
deleted file mode 100755
index dfd56a3..0000000
--- a/local/sbin/syncemail
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/usr/bin/python2
-# This starts offlineimap, but first it requests passwords from pass
-import os
-import sys
-import subprocess
-import daemon
-import lockfile
-from offlineimap import OfflineImap
-
-pidfile = '/tmp/syncemail-%d.pid' % os.getuid()
-
-# Check if not already running
-def check_running():
- if os.access(pidfile, os.F_OK):
- with open(pidfile, "r") as f:
- pid = f.readline()
- if os.path.exists('/proc/%s' % pid):
- sys.exit(0)
-check_running()
-
-
-accounts = [
- ["email", "mail/cynerd@email.cz"],
- ]
-
-for acc in accounts:
- pproc = subprocess.Popen("pass " + acc[1],
- stdout=subprocess.PIPE, shell=True)
- output = pproc.stdout.read().rstrip()
- if pproc.wait() != 0:
- print("Password receive failed.")
- sys.exit(1)
- sys.argv.append('-k')
- sys.argv.append('Repository_' + acc[0] + '-remote:remotepass=' + output)
-
-sys.argv.append('-s') # output to syslog
-sys.argv.append('-u')
-sys.argv.append('syslog')
-
-with daemon.DaemonContext():
- check_running()
- with open(pidfile, "w") as f:
- f.write("%s" % os.getpid())
- OfflineImap().run()