From f5896ccc12007abbb89688685fcd061c1d4b4bed Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 21 Oct 2021 23:45:24 -0700 Subject: [mbsync] Get the account credentials from the secret service Instead of using my custom Python script that looks them up, just use the command-line application included in the ‘libsecret’ package on Archlinux. Remove the custom helper script that I’d written for them. --- mbsync/usr/bin/get-mail-password | 12 ------------ mbsync/usr/bin/set-mail-password | 17 ----------------- 2 files changed, 29 deletions(-) delete mode 100755 mbsync/usr/bin/get-mail-password delete mode 100755 mbsync/usr/bin/set-mail-password (limited to 'mbsync/usr/bin') diff --git a/mbsync/usr/bin/get-mail-password b/mbsync/usr/bin/get-mail-password deleted file mode 100755 index ecfbb09..0000000 --- a/mbsync/usr/bin/get-mail-password +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/python3 - -import sys -import secretstorage - -connection = secretstorage.dbus_init() -collection = secretstorage.get_collection_by_alias(connection, "login") - -for foo in collection.search_items( - {"application": "mbsync", "account": sys.argv[1]} -): - print(foo.get_secret().decode()) diff --git a/mbsync/usr/bin/set-mail-password b/mbsync/usr/bin/set-mail-password deleted file mode 100755 index c36e39b..0000000 --- a/mbsync/usr/bin/set-mail-password +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/python3 - -import sys -from getpass import getpass -import secretstorage - -connection = secretstorage.dbus_init() -collection = secretstorage.get_collection_by_alias(connection, "login") -attributes = {"application": "mbsync", "account": sys.argv[1]} - -collection.create_item( - "Password for '{}' on '{}'".format( - attributes["account"], attributes["application"] - ), - attributes, - getpass().encode(), -) -- cgit v1.2.3-54-g00ecf