<font size=2 face="sans-serif"><br>
Kevin Larsen - Systems Analyst - Pioneer Balloon - Ph: 316-688-8208</font>
<br>
<br><tt><font size=2>asterisk-users-bounces@lists.digium.com wrote on 06/24/2014
05:49:39 PM:<br>
<br>
> From: motty cruz <motty.cruz@gmail.com></font></tt>
<br><tt><font size=2>> To: Asterisk Users Mailing List - Non-Commercial
Discussion <br>
> <asterisk-users@lists.digium.com>, </font></tt>
<br><tt><font size=2>> Date: 06/24/2014 05:49 PM</font></tt>
<br><tt><font size=2>> Subject: Re: [asterisk-users] share mailbox Asterisk
1.8.22</font></tt>
<br><tt><font size=2>> Sent by: asterisk-users-bounces@lists.digium.com</font></tt>
<br><tt><font size=2>> <br>
> Thanks Kevin, </font></tt>
<br><tt><font size=2>> <br>
> can you provide me with example of your code? if you don't mind? </font></tt>
<br><tt><font size=2>> <br>
> Thanks,</font></tt>
<br><tt><font size=2>> <br>
</font></tt>
<br><tt><font size=2>Sure, Here is the relevant code (I have removed parts
that don't apply):</font></tt>
<br>
<br><tt><font size=2>sip.conf:</font></tt>
<br>
<br><tt><font size=2>[501]</font></tt>
<br><tt><font size=2>callerid="Bob Smith" <501></font></tt>
<br><tt><font size=2>secret=501</font></tt>
<br><tt><font size=2>mailbox=501</font></tt>
<br>
<br><tt><font size=2>[502]</font></tt>
<br><tt><font size=2>callerid="Bob Smith" <501></font></tt>
<br><tt><font size=2>secret=502</font></tt>
<br><tt><font size=2>mailbox=501</font></tt>
<br>
<br>
<br><tt><font size=2>voicemail.conf:</font></tt>
<br>
<br><tt><font size=2>[default]</font></tt>
<br><tt><font size=2>501 => 1234,Bob Smith</font></tt>
<br>
<br>
<br><tt><font size=2>extensions.conf</font></tt>
<br>
<br><tt><font size=2>exten => *99,1,VoiceMailMain(${CALLERID(num))</font></tt>
<br><tt><font size=2>  same => n,Hangup()</font></tt>
<br>
<br><tt><font size=2>exten => 501,1,Dial(SIP/501&SIP502,16)</font></tt>
<br><tt><font size=2>  same => n,VoiceMail(${EXTEN},${IF($["${DIALSTATUS}"
= "BUSY"]?bd:ud)})</font></tt>
<br><tt><font size=2>  same => n,Hangup()</font></tt>
<br>
<br>
<br><tt><font size=2>This isn't a complete dialplan, but it is the simplest
way I could break mine down to just the relevant parts. When you hit the
voicemail button on my phones, they dial *99 to access voicemail. By setting
extensions 501 and 502 to both use 501 as the caller id number, either
phone logs into mailbox 501. There are other ways you could approach this
in the dialplan, but this is the one that worked out for me.</font></tt>