mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
b385046138
Signed-off-by: Michiel van Wessem <michiel@slackbuilds.org>
17 lines
551 B
Text
17 lines
551 B
Text
Here are some tips about getting cyrus-imapd up and running.
|
|
Since a sample configuration included with this package requires
|
|
a specific directory structure, you can do something like this:
|
|
|
|
# mkdir -m 750 -p /var/imap /var/spool/imap /var/sieve
|
|
# chown cyrus:cyrus /var/imap /var/spool/imap /var/sieve
|
|
|
|
Afterwards run mkimap script to setup the enviroment:
|
|
|
|
# su - cyrus
|
|
# /usr/doc/cyrus-imapd-2.3.16/tools/mkimap
|
|
|
|
You will probably also want to put this into rc.local:
|
|
|
|
if [ -x /etc/rc.d/rc.cyrus-imapd ]; then
|
|
. /etc/rc.d/rc.cyrus-imapd start
|
|
fi
|