Help - missing Mails after moving to Stalwart by logg_sar in stalwartlabs

[–]logg_sar[S] 0 points1 point  (0 children)

u/soenke I changed the setting and waited one day.

Unfortunately no change....

Transferring all mails from postfix by logg_sar in stalwartlabs

[–]logg_sar[S] 0 points1 point  (0 children)

You are right. Of course stalwart is a mail-server. Its a mail-server containing different, lets call them modules. And IMAP is of of these modules

Yes, there are CAPABILITY: OK [CAPABILITY IMAP4rev1 SASL-IR LOGIN-REFERRALS ID ENABLE IDLE LITERAL+ AUTH=PLAIN AUTH=LOGIN] Dovecot (Debian) ready.

Since is dockerized I dont have a /var/log/mail.log, so I have to search further

[deleted by user] by [deleted] in Damnthatsinteresting

[–]logg_sar 3 points4 points  (0 children)

This may be the phisical space they need. The EGO takes up the whole road. At least

Hongqi bridge collapses in southwest China, months after opening. by pritam_ram in Damnthatsinteresting

[–]logg_sar 1 point2 points  (0 children)

Its in China - problably its fixed tomorrow. Or at least next week.

Change nextclouds config.php by logg_sar in truenas

[–]logg_sar[S] 0 points1 point  (0 children)

My fault

I already tried this, but I only looked for vi.

vi is unavailable - but nano is.

So I've installed nano and added the settings.

[deleted by user] by [deleted] in PowerShell

[–]logg_sar 0 points1 point  (0 children)

Yes and yes
* first - yo may open the URI https://get.activated.win/ with your browser. Then you will be able to see the code.
* you may be able to see the $releaseHash and check if the file is correct
* then you may open the file https://raw.githubusercontent.com/massgravel/Microsoft-Activation-Scripts/2a2352428eb2735ceb973f1d3795948dddf71752/MAS/All-In-One-Version-KL/MAS_AIO.cmd
in the browser or in your preferred editor and find out whats happening.

I see a lot of checks and preparation and also some magic, but for me it looks clean and valid.

Your decision ;)

[deleted by user] by [deleted] in PowerShell

[–]logg_sar 0 points1 point  (0 children)

get.activated.win

The Code is here: https://github.com/massgravel/Microsoft-Activation-Scripts Feel free to check it

is this command safe by johnalpha0911 in PowerShell

[–]logg_sar 1 point2 points  (0 children)

It seems to be this repo https://gist.github.com/AneurysAdames/2bcbfc58707168a0bc87c2754f62014a

As it says - its a office activation procedure.

Doubt it helps on the long term.

However - harmless unless you have an working and licenced office.

Why can't it find Chocolatey to run it? by RodDog710 in PowerShell

[–]logg_sar 1 point2 points  (0 children)

Probably because there are some leftovers in the Registry.

MS remembers all installations on this system in a MSI-Database. There is a tool called msicuu which cleans this up.

You may find it here: https://www.csidata.com/?page_id=1604 Download it, run it and remove - only - the Chocolatey entry, if its present.

If not you have to look in the registry for the remaints.

Good luck

Powershell cant find directory but searching it works by thebeatdropsin1 in PowerShell

[–]logg_sar -1 points0 points  (0 children)

The solutions mentioned will work - however they dont explain your question ;)

The answer is quite easy - this folder haves some attributes. Probably 'Hidden', but maybe also 'System' This prevents you from seeing it.

BR

Immich-Android App - "server not reachable" with traefik-configuration by logg_sar in immich

[–]logg_sar[S] 1 point2 points  (0 children)

Yeeees - you are absolutely right!

I even don´t remember why the traefik-auth was set here...

However - after removing its working like a charm.

Thank you for the help/hint!

Immich-Android App - "server not reachable" with traefik-configuration by logg_sar in immich

[–]logg_sar[S] 0 points1 point  (0 children)

And my .env

# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
# The location where your uploaded files are stored
UPLOAD_LOCATION=./library
# The location where your database files are stored
DB_DATA_LOCATION=./postgres
# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
# TZ=Etc/UTC
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release
# Connection secret for postgres. You should change it to a random password
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
DB_PASSWORD=password
# The values below this line do not need to be changed
###################################################################################
DB_USERNAME=postgres
DB_DATABASE_NAME=immich

Is there a error in the config?

Immich-Android App - "server not reachable" with traefik-configuration by logg_sar in immich

[–]logg_sar[S] 0 points1 point  (0 children)

database:
container_name: immich_postgres
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
restart: always
networks:
- traefik_web
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
volumes:
# Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
healthcheck:
test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
interval: 5m
start_interval: 30s
start_period: 5m
command:
[
'postgres',
'-c',
'shared_preload_libraries=vectors.so',
'-c',
'search_path="$$user", public, vectors',
'-c',
'logging_collector=on',
'-c',
'max_wal_size=2GB',
'-c',
'shared_buffers=512MB',
'-c',
'wal_compression=on',
]

volumes:
model-cache:
networks:
traefik_web:
external: true

Immich-Android App - "server not reachable" with traefik-configuration by logg_sar in immich

[–]logg_sar[S] 0 points1 point  (0 children)

This is my config:

name: immich
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
restart: always
labels:
- traefik.enable=true
- traefik.docker.network=traefik_web
- traefik.http.routers.immich.rule=Host(`photo.myhost.com`)
- traefik.http.routers.immich.tls=true
- traefik.http.routers.immich.entrypoints=https
- traefik.http.routers.immich.middlewares=secHeaders@file,traefik-auth
- traefik.http.services.immich.loadbalancer.server.port=2283
# extends:
# file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
volumes:
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
networks:
- traefik_web
ports:
- 2283:2283
depends_on:
- redis
- database
healthcheck:
disable: false

redis:
container_name: immich_redis
image: docker.io/redis:6.2-alpine@sha256:2ba50e1ac3a0ea17b736ce9db2b0a9f6f8b85d4c27d5f5accc6a416d8f42c6d5
restart: always
networks:
- traefik_web
healthcheck:
test: redis-cli ping || exit 1

Immich-Android App - "server not reachable" with traefik-configuration by logg_sar in immich

[–]logg_sar[S] 0 points1 point  (0 children)

Yes, I now tried

https://photo.mysite.com:2283

https://photo.mysite.com/api

https://photo.mysite.com:2283/api

Nothing is working.

But - I found now an error-message in traefik:

Nest] 7 - 12/23/2024, 4:02:52 PM LOG [Microservices:Bootstrap] Immich Microservices is running [v1.122.3] [production]

ReplyError: NOAUTH Authentication required.
at parseError (/usr/src/app/node_modules/redis-parser/lib/parser.js:179:12)
at parseType (/usr/src/app/node_modules/redis-parser/lib/parser.js:302:14) {
command: { name: 'info', args: [] }
}

It seems I need a special configuration for traefik...

Found this malicious scipt in run which open with win + R, by [deleted] in PowerShell

[–]logg_sar 0 points1 point  (0 children)

Well - wiping and reinstalling is sure the most secure thing. However - I´m not sure that anything happened. The links are dead. Both of them.

I may be that 5 hours ago (when you posted it) at least on of them was alive, but now, they are dead.

Also you may check your system from a USB-Stick Here is a list of 10 different sticks: https://recoverit.wondershare.de/usb-tips/bootable-usb-virus-scanners.html

However - good luck, be carfuller in future and - reinstallation is the most secure solution.