convenience script for coupling with the OMF Experiment Controller
[myplc.git] / plc.d / mail
index 2b3eade..1585622 100755 (executable)
@@ -1,14 +1,12 @@
 #!/bin/bash
 #
-# priority: 250
+# priority: 200
 #
 # Start local mail server.
 #
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: mail 554 2007-06-19 15:11:22Z thierry $
-#
 
 # Source function library and configuration
 . /etc/plc.d/functions
@@ -28,7 +26,10 @@ case "$1" in
 
        # Add apache to list of users that can send mail as others
        # without a warning, so that the API can send out mail.
-       echo "apache" >/etc/mail/trusted-users
+       count=$(grep ^apache /etc/mail/trusted-users|wc -l)
+       if [ $count -eq 0 ] ; then
+               echo "apache" >>/etc/mail/trusted-users
+       fi
 
        (exec 3>&- 4>&- ; service sendmail start)
        check