Switch mbsync from using secret-tool to password-store
This commit is contained in:
parent
dfaa360dfe
commit
145e3f044a
33
README.org
33
README.org
|
@ -1,8 +1,6 @@
|
||||||
#+TITLE: README
|
#+title: README
|
||||||
#+AUTHOR: Evie Litherland-Smith
|
#+author: Evie Litherland-Smith
|
||||||
#+EMAIL: evie@xenia.me.uk
|
#+email: evie@xenia.me.uk
|
||||||
|
|
||||||
[[file:./home/emacs/config.org][Emacs (babel) config]]
|
|
||||||
|
|
||||||
* Password store setup
|
* Password store setup
|
||||||
** Transfer GPG key(s)
|
** Transfer GPG key(s)
|
||||||
|
@ -34,35 +32,34 @@ systemd unit handles running container on boot after this.
|
||||||
**** uidvalidity issue
|
**** uidvalidity issue
|
||||||
Remove uid lines from .mbsyncrc (in each mail directory) and delete .uidvalidity, re-run mbsync to fix
|
Remove uid lines from .mbsyncrc (in each mail directory) and delete .uidvalidity, re-run mbsync to fix
|
||||||
*** Password
|
*** Password
|
||||||
Get password from protonmail-bridge, register with gnome-keyring:
|
Get password from protonmail-bridge, save to password-store:
|
||||||
#+begin_src bash
|
#+begin_src bash
|
||||||
secret-tool store --label="Proton mail mbsync" email e.litherlandsmith@proton.me
|
pass insert mbsync/$(hostname)/proton
|
||||||
|
# Insert pass at prompt
|
||||||
#+end_src
|
#+end_src
|
||||||
** iCloud
|
** iCloud
|
||||||
*** Password
|
*** Password
|
||||||
Register app-password with gnome-keyring:
|
If not already done, save password to password-store:
|
||||||
#+begin_src bash
|
#+begin_src bash
|
||||||
secret-tool store --label="iCloud mail mbsync" email e.litherlandsmith@icloud.com
|
pass insert mbsync/$(hostname)/icloud
|
||||||
|
# Insert pass at prompt
|
||||||
#+end_src
|
#+end_src
|
||||||
|
This will be synced across devices so only needs doing once
|
||||||
** Outlook
|
** Outlook
|
||||||
*** Password
|
*** Password
|
||||||
Register app-password with gnome-keyring:
|
If not already done, save password to password-store:
|
||||||
#+begin_src bash
|
#+begin_src bash
|
||||||
secret-tool store --label="Outlook mail mbsync" email evie.litherland-smith@ukaea.uk
|
pass insert mbsync/$(hostname)/outlook
|
||||||
|
# Insert pass at prompt
|
||||||
#+end_src
|
#+end_src
|
||||||
|
This will be synced across devices so only needs doing once
|
||||||
*** Configuration
|
*** Configuration
|
||||||
On first run (or if token expires), stop systemd service and run manually to complete manual auth. Token will stay valid for a little while (no idea how long specifically).
|
On first run (or if token expires), stop systemd service and run manually to complete manual auth. Token will stay valid for a little while (no idea how long specifically).
|
||||||
#+begin_src bash
|
#+begin_src bash
|
||||||
# Restart service to ensure ~/.davmail.properties exists
|
# Restart service to ensure ~/.davmail.properties exists
|
||||||
systemctl --user restart davmail.service
|
systemctl --user restart davmail.service
|
||||||
# Run to use manual authentication
|
# Run to use manual authentication
|
||||||
pkill -f davmail && davmail -notray ~/.davmail.properties
|
systemctl --user stop davmail.service && davmail -notray ~/.davmail.properties
|
||||||
# Restart again so that service picks up available ports
|
# Restart again so that service picks up available ports
|
||||||
systemctl --user restart davmail.service
|
systemctl --user restart davmail.service
|
||||||
#+end_src
|
#+end_src
|
||||||
* Vdirsyncer
|
|
||||||
** Password
|
|
||||||
Register app-password with gnome-keyring;
|
|
||||||
#+begin_src bash
|
|
||||||
secret-tool store --label="NextCloud" url cloud.xenia.me.uk
|
|
||||||
#+end_src
|
|
||||||
|
|
|
@ -180,6 +180,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
extraSpecialArgs = { inherit hostName; };
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
users = {
|
users = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, hostName, ... }: {
|
||||||
home.packages = with pkgs; [ davmail ];
|
home.packages = with pkgs; [ davmail ];
|
||||||
accounts.email = {
|
accounts.email = {
|
||||||
maildirBasePath = "Mail";
|
maildirBasePath = "Mail";
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
aliases = [ "evie@xenia.me.uk" "evie@litherlandsmith.slmail.me" ];
|
aliases = [ "evie@xenia.me.uk" "evie@litherlandsmith.slmail.me" ];
|
||||||
userName = address;
|
userName = address;
|
||||||
passwordCommand =
|
passwordCommand =
|
||||||
"${pkgs.libsecret}/bin/secret-tool lookup email ${userName}";
|
"${pkgs.pass}/bin/pass show mbsync/${hostName}/proton | head -n1";
|
||||||
mbsync = {
|
mbsync = {
|
||||||
enable = lib.mkDefault accountEnabled;
|
enable = lib.mkDefault accountEnabled;
|
||||||
create = "both";
|
create = "both";
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
address = "e.litherlandsmith@icloud.com";
|
address = "e.litherlandsmith@icloud.com";
|
||||||
userName = address;
|
userName = address;
|
||||||
passwordCommand =
|
passwordCommand =
|
||||||
"${pkgs.libsecret}/bin/secret-tool lookup email ${userName}";
|
"${pkgs.pass}/bin/pass show mbsync/${hostName}/icloud | head -n1";
|
||||||
mbsync = {
|
mbsync = {
|
||||||
enable = lib.mkDefault accountEnabled;
|
enable = lib.mkDefault accountEnabled;
|
||||||
create = "both";
|
create = "both";
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
aliases = [ "elitherl@jet.uk" ];
|
aliases = [ "elitherl@jet.uk" ];
|
||||||
userName = address;
|
userName = address;
|
||||||
passwordCommand =
|
passwordCommand =
|
||||||
"${pkgs.libsecret}/bin/secret-tool lookup email ${userName}";
|
"${pkgs.pass}/bin/pass show mbsync/${hostName}/outlook | head -n1";
|
||||||
mbsync = {
|
mbsync = {
|
||||||
enable = lib.mkDefault accountEnabled;
|
enable = lib.mkDefault accountEnabled;
|
||||||
create = "both";
|
create = "both";
|
||||||
|
|
Loading…
Reference in a new issue