<div dir="ltr"><div><br></div><div><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Can you post your configuration?<br></blockquote><div><br></div><div>I got it to work by using <a href="https://docs.kolab.org/administrator-guide/configuring-the-kolab-server.html#disabling-the-recipient-policy">https://docs.kolab.org/administrator-guide/configuring-the-kolab-server.html#disabling-the-recipient-policy</a></div><div>And then also delete the values for primary and secondary email from the [kolab] section.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I run the following script with cron every couple of minutes:<br>
<br>
#!/bin/bash<br>
<br>
pscount=$(ps -e -o pid,cmd | grep '[/]usr/sbin/apache' | wc -l)<br>
<br>
if [ "$pscount" = "1" ]; then<br>
  apachepid=$(cat /var/run/apache2.pid)<br>
  if kill -0 $apachepid 2> /dev/null; then<br>
    :<br>
  else<br>
    pid=$(ps -e -o pid,cmd | grep '[/]usr/sbin/apache' | awk '{ print $1 }')<br>
    kill -9 $pid<br>
    /usr/sbin/service apache2 start<br>
  fi<br>
fi<br>
<br>
That way an "apache reload" has only some minutes downtime. There are<br>
times besides logrotate where apache config is reloaded... Not a fix but<br>
a workaraound.<br>
<span class=""><font color="#888888"><br></font></span></blockquote><div><br></div><div>I have no experience with running scripts with cron yet.</div><div>Will have a look, thanks.</div><div><br></div></div></div></div></div>