Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b3e24f0 authored by Sylvain Manceau's avatar Sylvain Manceau
Browse files

Add mandatorry POP_HOSTNAME and 465/TCP for SMTP

parent 6f707c9e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ services:
      - "25:25"       # SMTP                - Required
      - "110:110"     # POP3       STARTTLS - Optional - For webmails/desktop clients
      - "143:143"     # IMAP       STARTTLS - Optional - For webmails/desktop clients
    # - "465:465"     # SMTPS      SSL/TLS  - Optional - Enabled for compatibility reason, otherwise disabled
      - "465:465"     # SMTPS      SSL/TLS  - Optional - Enabled for compatibility reason, otherwise disabled
      - "587:587"     # Submission STARTTLS - Optional - For webmails/desktop clients
      - "993:993"     # IMAPS      SSL/TLS  - Optional - For webmails/desktop clients
      - "995:995"     # POP3S      SSL/TLS  - Optional - For webmails/desktop clients
@@ -157,6 +157,8 @@ services:
    image: wdes/mail-autodiscover-autoconfig:latest
    container_name: mail-autodiscover-autoconfig
    restart: always
    networks:
      - default
    environment:
        ROCKET_PROFILE: production
        ROCKET_ADDRESS: "0.0.0.0"
@@ -164,6 +166,7 @@ services:
        APPLE_MAIL_UUID: ${AUTODISCOVER_AM_UUID}
        APPLE_PROFILE_UUID: ${AUTODISCOVER_AP_UUID}
        IMAP_HOSTNAME: ${SMTP_HOST}
        POP_HOSTNAME: ${SMTP_HOST}
        SMTP_HOSTNAME: ${SMTP_HOST}

  nginx: