You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
399 B

  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2006-2013 OpenWrt.org
  3. START=75
  4. STOP=75
  5. USE_PROCD=1
  6. start_service() {
  7. user_exists dovecot 59 || user_add dovecot 59
  8. group_exists dovecot 59 || group_add dovecot 59
  9. mkdir -p -m 0755 /var/lib/dovecot
  10. mkdir -p -m 0755 /var/run/dovecot
  11. chmod 0750 /var/lib/dovecot
  12. procd_open_instance
  13. procd_set_param command /usr/sbin/dovecot -F
  14. procd_close_instance
  15. }