2adfc973dc27c5edbd025473b04c5ff8fd417037
[myplc.git] / plc.d / mail
1 #!/bin/bash
2 # $Id$
3 # $URL$
4 #
5 # priority: 200
6 #
7 # Start local mail server.
8 #
9 # Mark Huang <mlhuang@cs.princeton.edu>
10 # Copyright (C) 2006 The Trustees of Princeton University
11 #
12
13 # Source function library and configuration
14 . /etc/plc.d/functions
15 . /etc/planetlab/plc_config
16
17 # Be verbose
18 set -x
19
20 case "$1" in
21     start)
22         if [ "$PLC_MAIL_ENABLED" != "1" ] ; then
23             exit 0
24         fi
25
26         MESSAGE=$"Starting mail server"
27         dialog "$MESSAGE"
28
29         # Add apache to list of users that can send mail as others
30         # without a warning, so that the API can send out mail.
31         count=$(grep ^apache /etc/mail/trusted-users|wc -l)
32         if [ $count -eq 0 ] ; then
33                 echo "apache" >>/etc/mail/trusted-users
34         fi
35
36         (exec 3>&- 4>&- ; service sendmail start)
37         check
38
39         result "$MESSAGE"
40         ;;
41
42     stop)
43         MESSAGE=$"Stopping mail server"
44         dialog "$MESSAGE"
45
46         service sendmail stop
47         check
48
49         result "$MESSAGE"
50         ;;
51 esac
52
53 exit $ERRORS