Asif -
Despite what the documentation says, I'd drop the context portion of your command.
i.e. exten => s-NOANSWER,n,VoiceMail(${EXTEN})
Since you are clearly going to VM for different reasons you can also add an optional switch that will play a different vm-message. Check the docs for more info.
Mark
At 03:04 a.m. 20/03/2008, you wrote:
Hi All, i want to configure voice mail on Asterisk 1.4 for multiple users. let me explain you the scenario.
i have 10 users with the name of 1000,2000,3000,4000,5000,6000,.......and these user can call to each other. Now i want to configure separate voice mail box for separate user.
my extensions.conf ..... settings below.. [voicemail] exten => _X.,1,Dial(SIP/${EXTEN}) exten => _X.,n,NoOp(Dial Status: ${DIALSTATUS}) exten => _X.,n,Goto(s-${DIALSTATUS},1)
...........