#!/bin/bash

PROGRAM=/bin/false
RUNLEVEL=3
NEEDS="courier"

. /etc/init.d/smgl_init

start()
{
  /usr/sbin/imapd-ssl start
  evaluate_retval
}

stop()
{
  /usr/sbin/imapd-ssl stop
  evaluate_retval
}

restart()
{
  /usr/sbin/imapd-ssl restart
  evaluate_retval
}
