Poste.io Failing Shortly After Install

Issue #840 invalid
Orashgle Playz created an issue

I ran

docker run
--net=host
-e TZ=America/Phoenix
-v /home/mailserver/data:/data
--name "mailserver"
-h "mail.ponbus.com"
-t analogic/poste.io
-e "DISABLE_CLAMAV=TRUE"
-e "DISABLE_RSPAMD=TRUE"

and the output said that it was running, then shortly after it said ifelse: fatal: unable to exec -e: No such file or directory and then shut itself off. I have tested this on both ubuntu 18.04 and 20.04 and it has not worked either times.

Comments (1)

  1. SH repo owner

    All image run options needs to be before image definition so in your case:

    docker run
    --net=host
    -e TZ=America/Phoenix
    -v /home/mailserver/data:/data
    --name "mailserver"
    -h "mail.ponbus.com"
    -e "DISABLE_CLAMAV=TRUE"
    -e "DISABLE_RSPAMD=TRUE"
    -t analogic/poste.io
    

    should work

  2. Log in to comment