2024-01-12 08:32:48 +00:00
#+title : README
#+author : Evie Litherland-Smith
#+email : evie@xenia.me.uk
2023-11-06 07:11:31 +00:00
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
2023-10-03 15:45:30 +01:00
# Export key on existing machine
2023-10-03 15:10:23 +01:00
gpg --export-secret-keys > key.gpg
2023-10-03 15:45:30 +01:00
# Import key on new machine
2023-10-03 15:10:23 +01:00
gpg --import key.gpg
2023-10-03 15:45:30 +01:00
# 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
git clone https://git.xenia.me.uk/xenia/pass $PASSWORD_STORE_DIR
#+end_src
2023-10-01 12:13:28 +01:00
* Email setup
** Proton
*** Bridge
2023-10-01 11:43:56 +01:00
Docker source: [[https://hub.docker.com/r/shenxn/protonmail-bridge ][Docker ]] / [[https:/ /github.com/shenxn/protonmail-bridge-docker][GitHub - shenxn/protonmail-bridge-docker: ProtonMail IMAP/SMTP Bridge Docker ...]]
To initialise:
#+begin_src bash
2023-10-19 06:26:59 +01:00
podman kill protonmail-bridge && podman run --rm -it -v protonmail:/root shenxn/protonmail-bridge init
# Restart so that service picks up available ports
podman kill protonmail-bridge
2023-10-01 11:43:56 +01:00
#+end_src
and follow normal login system for cli.
systemd unit handles running container on boot after this.
2023-10-15 12:43:05 +01:00
**** uidvalidity issue
Remove uid lines from .mbsyncrc (in each mail directory) and delete .uidvalidity, re-run mbsync to fix
2023-10-01 12:13:28 +01:00
*** Password
2024-01-12 08:32:48 +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-01-12 08:32:48 +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-01-12 08:32:48 +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
2023-10-10 08:29:31 +01:00
# Restart service to ensure ~/.davmail.properties exists
systemctl --user restart davmail.service
2023-10-15 12:43:05 +01:00
# Run to use manual authentication
2024-01-12 08:32:48 +00:00
systemctl --user stop davmail.service && davmail -notray ~/.davmail.properties
2023-10-19 06:26:59 +01:00
# Restart again so that service picks up available ports
systemctl --user restart davmail.service
2023-10-09 08:13:07 +01:00
#+end_src