I just came across this neat shell command to restart all courier services in one go:
find /etc/init.d/ | grep courier | while read line; do $line restart; done
You could replace the grep courier
with any other name you would like to use. This is one of those things I love about Linux 🙂