Mitel Forums - The Unofficial Source
Mitel Forums => Mitel Software Applications => Topic started by: rioxone on February 23, 2009, 08:47:51 AM
-
Hello
my company just got a NuPoint 12.0 installed. We want to use the call flow reports option in the call director to generate reports for an auto attendant that is set up. However we need to find someway of automating that process because the user that needs the report will not have access to run it. does anyone have any ideas?
thank you
-
Could you not write a script that would do this?
-
See that i do not know. I am new to Mitel, i am mostly an Avaya person. Right now the only way I know you can pull reports on the system is via the web administration page.
-
A shell script to run and email the reports might look like this. Use cron to run it periodically.
You must URLEncode any strange characters in your username/password (http://www.string-functions.com/urlencode.aspx).
Do you know how to use this?
-
actually no, i would love any help that can be provided. Sorry for being such a Mitel noob but like I said i have been on lucent/avaya for almost 10 years.
-
How do you call the function via the linux command line?
Ralph
www.aavoicepro.com (http://www.aavoicepro.com)
-
rioxone: is anyone in your organization familiar with linux at all?
ralph: which function? You upload that file to the server and run something like this:
[root@nupoint ~]# ls
npm-report
[root@nupoint ~]# chmod u+x npm-report
[root@nupoint ~]# ls -l npm-report
-rwxr--r-- 1 root root 2215 Feb 25 02:45 npm-report
[root@nupoint ~]# mv npm-report /usr/sbin/
[root@nupoint ~]# which npm-report
/usr/sbin/npm-report
[root@nupoint ~]# npm-report
Changing Directory to /tmp...done.
Fetching auth_probe Cookie...done.
Logging in to the Server Manager...done.
Logging in to the Nupoint Web Console...done.
Running Report...done.
Fixing a few file paths...done.
Removing unused files...done.
Compressing Report...done.
E-Mailing Report to chad@domain.tld...done.
Cleaning Up...done.
[root@nupoint ~]# crontab -e
no crontab for root - using an empty one
crontab: installing new crontab
[root@nupoint ~]# crontab -l
15 6 * * 1-5 /usr/sbin/npm-report
[root@nupoint ~]#