Searching through the archives, I couldn't find an answer for this... I have two asterisk systems, (system A and system B), and would like to use a single voicemail system. Phones on system B are SIP phones, registered at system B. Can the message-waiting indicator be activated on a SIP phone registered to system B, if the voicemail resides on system A? If so, how? Thanks, folks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100205/20ae6802/attachment.htm
Speaking just for polycom 501's (3 lines), you can set MWI on two different systems by registering a line to each system; for your question, I'd do it like this; Exten 100 is on system B and sends it's VM to exten 110 on System A. You register line 1 as 100 on system b and line 2 as 110 on System A. when you leave a voicemail for 100, the 110 message will light up MWI. Regards, Danny Nicholas -- _____ From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Greg Blakely Sent: Friday, February 05, 2010 10:56 AM To: asterisk-users at lists.digium.com Subject: [asterisk-users] 2 Asterisk Boxes, Single Voicemail Searching through the archives, I couldn't find an answer for this... I have two asterisk systems, (system A and system B), and would like to use a single voicemail system. Phones on system B are SIP phones, registered at system B. Can the message-waiting indicator be activated on a SIP phone registered to system B, if the voicemail resides on system A? If so, how? Thanks, folks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100205/b51f44da/attachment.htm
On 5 Feb 2010, at 16:55, Greg Blakely wrote:> If so, how?NFS or rsync? S
>On 5 Feb 2010, at 16:55, Greg Blakely wrote: >> If so, how?>NFS or rsync?>SUse ODBC voice message storage and realtime voicemail configuration. - Sean
ian at comtek.co.uk
2010-Feb-06 22:48 UTC
[asterisk-users] 2 Asterisk Boxes, Single Voicemail
> Can the message-waiting indicator be activated on a SIP phone registered > to system B, if the voicemail resides on system A?It was a while ago I wrote this (come to think of it I might even have copied it from somewhere), and I don't remember if its in a working state: ------------------------- for host in 10.200.3.100; do ###Voicemail MWI### find /var/spool/asterisk/voicemail/ -wholename '/var/spool/asterisk/voicemail/voicemail/*/INBOX/msg????.txt' -print| ssh -i /etc/asterisk/syncKey asterisk@$host \ 'find /var/spool/asterisk/voicemail -wholename "/var/spool/asterisk/voicemail/voicemail/*/INBOX/msg????.txt" -print0|'\ ' xargs -0 rm -f; '\ 'while read FILE; do '\ ' mkdir -p `dirname "$FILE"`; '\ ' touch "$FILE"; '\ 'done' ------------------------- From memory, the MWI is basically a text file. The above bash script, (called in a cron job on our voicemail server) logs into other servers, deletes all MWI files and then touches files to match the MWI state of the voicemail server. We don't actually have any phones registered with our second server yet, so consider the above untested! Ian