conrad82

joined 1 year ago
[–] conrad82@lemmy.world 5 points 1 month ago (1 children)

You could take a look at one of the universal blue distros next time you want to try some linux https://universal-blue.org/

I use bazzite on my gaming pc and bluefin on my laptop. It is immutable linux, but the devs made the defaults really nice (for me at least)

[–] conrad82@lemmy.world 8 points 2 months ago (1 children)

I use miniflux. To read the feed I use Flux News on android. I don't read the whole feed in the reader, but open the link

I think miniflux supports downloading the source, but I had to do it manually each time when I tried

https://miniflux.app/

https://f-droid.org/packages/de.circle_dev.flux_news/

[–] conrad82@lemmy.world 4 points 2 months ago (2 children)

I have used them since januar 2019, and I don't have any complaints. I have only needed to restore backups once - it worked as well as could be expected.

Any issues with backups have always been on my side

[–] conrad82@lemmy.world 1 points 2 months ago

I use dovecot for this. And thunderbird to actually move/archive the emails. I use caddy for many of my services, so I have pointed dovecot to caddys certificates (for "my.domain"), since it manages certificates through let's encrypt. I had a plan to install postfix for sending internal emails from my self-hosted services, but it seemed like a bit of configuration and I got busy with other stuff

I made an excerpt from my docker-compose.yml, but you probably have to figure out some things on your own


version: '3.4'

services:
  dovecot:
    image: dovecot/dovecot:2.3.20
    restart: unless-stopped
    volumes:
      - ./dovecot/:/etc/dovecot
      - /mnt/storage/dovecot/mail:/srv/mail
      - ./caddy/data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/wildcard_.my.domain/wildcard_.my.domain.crt:/etc/ssl/cert.crt
      - ./caddy/data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/wildcard_.my.domain/wildcard_.my.domain.key:/etc/ssl/key.key
    ports:
      - 993:993

contents of ./dovecot folder:

dovecot.conf
passwords

contents of dovecot.conf (I think I searched online to find a good example, I don't remember where from..)

## manage this file

mail_home=/srv/mail/%Lu
mail_location=sdbox:~/Mail
mail_uid=1000
mail_gid=1000

protocols = imap pop3 submission sieve lmtp

first_valid_uid = 1000
last_valid_uid = 1000

passdb {
  driver = passwd-file
  args = scheme=argon2i /etc/dovecot/passwords
}

ssl=yes
ssl_cert=</etc/ssl/cert.crt
ssl_key=</etc/ssl/key.key

namespace {
  inbox = yes
  separator = /

  mailbox Drafts {
    auto = subscribe
    special_use = \Drafts
  }
  mailbox Sent {
    auto = subscribe
    special_use = \Sent
  }
  mailbox Spam {
    auto = subscribe
    special_use = \Junk
  }
  mailbox Trash {
    auto = subscribe
    special_use = \Trash
  }
  mailbox Archive {
    auto = subscribe
    special_use = \Archive
  }
}

service lmtp {
  inet_listener {
    port = 24
  }
}

listen = *

log_path=/dev/stdout
info_log_path=/dev/stdout
debug_log_path=/dev/stdout
[–] conrad82@lemmy.world 2 points 3 months ago

I use Kvaesitso and have been using it for a long time now.

I wanted a search-based launcher with support for widgets. I was missing some features in the beginning, but I must admit I have forgotten what they were - so I guess that is a good sign 👌

Likes: Good search, OK widget, main screen can be as clean or dirty has you want

[–] conrad82@lemmy.world 1 points 6 months ago (1 children)

I just bought one, but I haven't set it up yet. But it looks like it will fit me nicely based on apalrd video https://youtu.be/qML-ct2dGvQ

[–] conrad82@lemmy.world 1 points 7 months ago

I tried this, but couldn't find a better editor as android app. The closest I got was Zettel notes. But silverbullet worked better

[–] conrad82@lemmy.world 11 points 7 months ago

Yes, I have used it for many months. It has been the best solution for my use case for a while. Which is tasks, shopping, planning (trips, ..), recipes, and a simple knowledgebase. It was the offline support that set it apart from some other solutions

I have the files in a syncthing folder, so I can access the files without running silverbullet

My biggest problem is keeping up with all the changes. Zef made some youtube videos that are helpful

[–] conrad82@lemmy.world 3 points 7 months ago

I installed k-9 mail / Thunderbird on my android phone and set it to sync all emails, so I have local copy on my phone

[–] conrad82@lemmy.world 4 points 8 months ago

I too use miniflux and I like it

I made a post some weeks ago https://lemmy.world/post/9574514

[–] conrad82@lemmy.world 2 points 8 months ago

My thoughts too, what makes this alloy so amazing? It seems to me that sapphire is harder, and otherwise similar use cases

No mention/comparison to Sapphire in the article that I could see, disappointing.

Maybe it is the sintering process that makes it interesting, could be easier to shape maybe 🤔

[–] conrad82@lemmy.world 2 points 8 months ago

This is what I do, using proxmox.

I do something similar to https://youtu.be/Hu3t8pcq8O0 for the NAS bit. Then I have a VM with docker containers for different services

view more: ‹ prev next ›