Skip to content

🏗️ New Service: mail archiver #323

Description

@melbv

Service Description

Hi team

Would you consider creating an entry for mail archiver? Currently looking to add this to my tailnet!
Thanks a million

Docker Compose File Link

https://github.com/s1t5/mail-archiver/blob/main/docker-compose.yml

Docker Compose Configuration

version: '3.8'

networks:
  postgres:

services:
  mailarchive-app:
    build: .
    restart: always
    ports:
      - "5000:5000"
    networks:
      - postgres
      # Uncomment the following line to mount a directory for local file imports
      # (also add the path to appsettings.json: LocalImport.AllowedPaths)
      # - /path/to/your/mbox/files:/data/import
      - ./appsettings.json:/app/appsettings.json
      - ./logs:/app/logs
      - ./data-protection-keys:/app/DataProtection-Keys
    depends_on:
      - postgres

  postgres:
    image: postgres:14-alpine
    restart: always
    environment:
      POSTGRES_DB: MailArchiver
      POSTGRES_USER: mailuser
      POSTGRES_PASSWORD: masterkey
    volumes:
      - ./postgres-data:/var/lib/postgresql/data
    networks:
      - postgres
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U mailuser -d MailArchiver"]
      interval: 10s
      timeout: 5s
      retries: 5
      start_period: 10s

Website of Service

https://mail-archiver.org/

Would you be willing to work on this service?

  • Yes, I'd like to implement this feature
  • I could help with parts of this feature
  • No, I'm just suggesting the feature

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    new servicerequest to add a new service

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions