You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-07-11 01:10:24 +02:00
14 lines
339 B
Bash
14 lines
339 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
# Fix some permissions
|
||
|
chown -R www-data:www-data /data
|
||
|
|
||
|
# There is no cleaner way to setup the default SMTP/IMAP server or to
|
||
|
# override the configuration
|
||
|
rm -f /data/_data_/_default_/domains/*
|
||
|
cp /default.ini /data/_data_/_default_/domains/
|
||
|
cp /config.ini /data/_data_/_default_/configs/
|
||
|
|
||
|
# Run apache
|
||
|
exec apache2-foreground
|