2024-01-12 08:32:48 +00:00
#+title : README
#+author : Evie Litherland-Smith
#+email : evie@xenia.me.uk
2023-10-03 15:10:23 +01:00
* Password store setup
2023-10-03 15:45:30 +01:00
** Transfer GPG key(s)
2023-10-03 15:10:23 +01:00
#+begin_src bash
2024-02-03 06:32:57 +00:00
# Export key on existing machine
gpg --export-secret-keys > key.gpg
# Import key on new machine
gpg --import key.gpg
# Edit (for each key) to set trust
gpg --edit-key ...
2023-10-03 15:10:23 +01:00
#+end_src
** Clone password-store repository
#+begin_src bash
2024-02-03 06:32:57 +00:00
git clone https://git.xenia.me.uk/xenia/pass $PASSWORD_STORE_DIR
2023-10-03 15:10:23 +01:00
#+end_src
2023-10-01 12:13:28 +01:00
* Email setup
** Proton
*** Bridge
2024-02-03 06:32:57 +00:00
Run bridge in CLI mode to login, wait for initial sync and get app password
#+begin_src bash
nix run nixpkgs#protonmail-bridge -- -c
# Follow prompts to login and get password
#+end_src
2023-10-01 11:43:56 +01:00
2024-02-03 07:26:29 +00:00
Restart using ~hyprctl~ :
2023-10-01 11:43:56 +01:00
#+begin_src bash
2024-02-03 07:26:29 +00:00
nix shell nixpkgs#protonmail-bridge -c hyprctl dispatch exec "protonmail-bridge -n"
2023-10-01 11:43:56 +01:00
#+end_src
2023-10-15 12:43:05 +01:00
**** uidvalidity issue
2024-02-03 06:32:57 +00:00
+Remove uid lines from .mbsyncrc (in each mail directory) and delete .uidvalidity, re-run mbsync to fix+
Above might be duplicating mail, faster to just delete local maildirs and let them re-sync.
2023-10-01 12:13:28 +01:00
*** Password
2024-02-03 06:32:57 +00:00
Get password from ~protonmail-bridge~ , save to ~password-store~ :
2023-10-01 12:13:28 +01:00
#+begin_src bash
2024-01-12 08:32:48 +00:00
pass insert mbsync/$(hostname)/proton
# Insert pass at prompt
2023-10-01 12:13:28 +01:00
#+end_src
** iCloud
*** Password
2024-02-03 06:32:57 +00:00
If not already done, save password to ~password-store~ :
2023-10-01 12:13:28 +01:00
#+begin_src bash
2024-01-12 08:32:48 +00:00
pass insert mbsync/$(hostname)/icloud
# Insert pass at prompt
2023-10-01 12:13:28 +01:00
#+end_src
2024-01-12 08:32:48 +00:00
This will be synced across devices so only needs doing once
2023-10-15 10:02:16 +01:00
** Outlook
2023-10-01 12:13:28 +01:00
*** Password
2024-02-03 06:32:57 +00:00
If not already done, save password to ~password-store~ :
2023-10-01 12:13:28 +01:00
#+begin_src bash
2024-01-12 08:32:48 +00:00
pass insert mbsync/$(hostname)/outlook
# Insert pass at prompt
2023-10-01 12:13:28 +01:00
#+end_src
2024-01-12 08:32:48 +00:00
This will be synced across devices so only needs doing once
2023-10-02 16:58:54 +01:00
*** Configuration
2023-10-08 15:19:24 +01:00
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).
2023-10-02 16:58:54 +01:00
#+begin_src bash
2024-02-03 06:32:57 +00:00
# Restart service to ensure ~/.davmail.properties exists
systemctl --user restart davmail.service
# Run to use manual authentication
systemctl --user stop davmail.service && davmail -notray ~/.davmail.properties
# Restart again so that service picks up available ports
systemctl --user restart davmail.service
2023-10-09 08:13:07 +01:00
#+end_src