Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

RikkerdNL

Members
  • Joined

  • Last visited

Everything posted by RikkerdNL

  1. If you're using Compose Manager Plus, deploying MailArchiver is very straightforward. You can install Compose Manager Plus from Community Apps or follow the support thread here: https://forums.unraid.net/topic/197334-plugin-compose-manager-plus Once installed: Create a New Stack. Give it a name (for example, mailarchiver). Use the compose file below. Click Compose Up. That's it. Compose Manager Plus will create both the MailArchiver container and its PostgreSQL database in a single step, making it much easier than creating each container manually through the Docker template UI. services: mailarchive-app: image: s1t5/mailarchiver:latest restart: unless-stopped environment: # Database Connection ConnectionStrings__DefaultConnection: "Host=postgres;Database=MailArchiver;Username=mailuser;Password=masterkey;" # Web Login Authentication__Username: admin Authentication__Password: secure123! # Timezone TimeZone__DisplayTimeZoneId: "Etc/UTC" ports: - "5000:5000" volumes: - /mnt/user/appdata/mailarchiver/keys:/app/DataProtection-Keys depends_on: postgres: condition: service_healthy networks: - mailarchive postgres: image: postgres:17-alpine restart: unless-stopped environment: POSTGRES_DB: MailArchiver POSTGRES_USER: mailuser POSTGRES_PASSWORD: masterkey volumes: - /mnt/user/appdata/mailarchiver/postgres:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -U mailuser -d MailArchiver"] interval: 10s timeout: 5s retries: 5 start_period: 20s networks: - mailarchive networks: mailarchive: driver: bridge After the stack starts, open: http://<your-unraid-ip>:5000 Default credentials: Username: admin Password: secure123! You should change both the database password and the admin password before exposing the application outside your network.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.