Thorben G. Jensen
2004-Dec-12 03:45 UTC
[Asterisk-Users] How to Playback Mailbox Owners Name?
How do I Playback the Mailbox Owners Name? Ex.: I want a message saying "I am sorry but" + Mailbox Owner Name + "has gone to lunch" Thanks Thorben -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20041212/ea832308/attachment.htm
Howard Lowndes
2004-Dec-12 05:06 UTC
[Asterisk-Users] How to Playback Mailbox Owners Name?
On Sun, 2004-12-12 at 21:45, Thorben G. Jensen wrote:> How do I Playback the Mailbox Owners Name? > > > > Ex.: I want a message saying ?I am sorry but? + Mailbox Owner Name + > ?has gone to lunch?You could get them to record their temp message in the voicemail services; option 0, IIRC.> > > > Thanks > > Thorben > > > > ______________________________________________________________________ > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users-- Howard. LANNet Computing Associates; Your Linux people <http://www.lannetlinux.com> ------------------------------------------ "When you just want a system that works, you choose Linux; when you want a system that just works, you choose Microsoft." ------------------------------------------ "Flatter government, not fatter government; Get rid of the Australian states."
Thorben G. Jensen wrote:> How do I Playback the Mailbox Owners Name? > > > > Ex.: I want a message saying "I am sorry but" + Mailbox Owner Name + > "has gone to lunch" >Extension "999" in voicemail context "internal" exten => 999,1,SetVar(VM_CONTEXT=internal) exten => 999,2,Playback(im-sorry) exten => 999,3,Playback(/var/spool/asterisk/voicemail/${VM_CONTEXT}/${EXTEN}/greet) exten => 999,4,Playback(flagged-for-lea) exten => 999,5,Hangup() That should get you going.. :-) /S?ren