mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
13 lines
271 B
Bash
13 lines
271 B
Bash
#!/bin/bash
|
|
echo "Starting Mail-in-a-Box services..."
|
|
|
|
service nsd start
|
|
service postfix start
|
|
dovecot # it's integration with Upstart doesn't work in docker
|
|
service opendkim start
|
|
service nginx start
|
|
service php-fastcgi start
|
|
|
|
echo "Your Mail-in-a-Box is running."
|
|
bash
|