diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/gdb/gdbinit | 2 | ||||
-rw-r--r-- | .config/mbsyncrc | 24 | ||||
-rw-r--r-- | .config/systemd/user/mbsync.service | 2 |
3 files changed, 27 insertions, 1 deletions
diff --git a/.config/gdb/gdbinit b/.config/gdb/gdbinit new file mode 100644 index 0000000..7e59573 --- /dev/null +++ b/.config/gdb/gdbinit @@ -0,0 +1,2 @@ +set disassembly-flavor intel +set debuginfod enabled off diff --git a/.config/mbsyncrc b/.config/mbsyncrc new file mode 100644 index 0000000..d321628 --- /dev/null +++ b/.config/mbsyncrc @@ -0,0 +1,24 @@ +IMAPAccount pipeframe +Host mail.pipeframe.xyz +Port 993 +User loek@mail.pipeframe.xyz +PassCmd "pass srv/fortnite/passwd/loek" +SSLType IMAPS +CertificateFile /etc/ssl/certs/ca-certificates.crt + +IMAPStore pipeframe-remote +Account pipeframe + +MaildirStore pipeframe-local +SubFolders Verbatim +Path ~/docs/mail/pipeframe/ +Inbox ~/docs/mail/pipeframe/Inbox + +Channel pipeframe +Far :pipeframe-remote: +Near :pipeframe-local: +# Patterns "/Inbox" "/Drafts" "/Junk" "/Sent" "/Trash" "/Archive" +Patterns * +Create Both +SyncState * + diff --git a/.config/systemd/user/mbsync.service b/.config/systemd/user/mbsync.service index 8a26bbd..892b701 100644 --- a/.config/systemd/user/mbsync.service +++ b/.config/systemd/user/mbsync.service @@ -3,5 +3,5 @@ Description=Mailbox synchronization service [Service] Type=oneshot -ExecStart=/usr/bin/mbsync -Va +ExecStart=/usr/bin/mbsync --verbose --all --config "${XDG_CONFIG_HOME}/mbsyncrc" |