summaryrefslogtreecommitdiffstats
path: root/clients/newvoicebox
blob: 0f6ccdef1fea0ad053611ebe0ffdc6619e0cf854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash

# $Id$
#
# This file is part of ivam. 
# 
# asd is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# asd is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with ivam; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.


if [ ! -d "$1" ] ; then
    echo "New spool directory not found or not readable." > /dev/stderr
    exit 1
fi

EMAIL=root
[ "x$2" != "x" ] && EMAIL="$2"

DATE=$(date)

( 
    BOUND="$$-`date +%s`-ivam"

    cat <<EOF
To: $EMAIL
Subject: New voice box created for $RINGMSN
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

A new voice box has been created:

  Caller number: $CALLERMSN
   Local number: $RINGMSN
Spool directory: $1
           Date: $DATE

Don't forget to configure this new voice box by adjusting the files
in the spool directory. For more information see the README file
you find in there.

    Best regards, your voice box system

EOF

) | /usr/sbin/sendmail -oi -t