mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
9 lines
160 B
Bash
9 lines
160 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Fix permissions
|
||
|
chown -R mail:mail /mail
|
||
|
chown -R mail:mail /var/lib/dovecot
|
||
|
|
||
|
# Run dovecot
|
||
|
exec /usr/sbin/dovecot -c /etc/dovecot/dovecot.conf -F
|