Prefixing the mailbox with an option is deprecated

In my extensions.conf I have:

exten => 1200,1,Dial(SIP/${henkoegema},40,rtT)
exten => 1200,n,GotoIf($[${DIALSTATUS} = BUSY]?busy)
exten => 1200,n,VoiceMail(u${EXTEN}@default)
exten => 1200,n,Hangup()
exten => 1200,n(busy),VoiceMail(b${EXTEN}@default)
exten => 1200,n,Hangup()

During a reload I saw :

– Executing [1200@default:3] VoiceMail(“SIP/1206-b6523348”, “u1200@default”) in new stack
[Oct 14 16:31:57] WARNING[2964]: app_voicemail.c:6957 vm_exec: Prefixing the mailbox with an option is deprecated (‘u1200@default’).
[Oct 14 16:31:57] WARNING[2964]: app_voicemail.c:6958 vm_exec: Please move all leading options to the second argument.
– <SIP/1206-b6523348> Playing ‘vm-theperson’ (language ‘en’)

How exactly will the syntax look like :unamused:

VoiceMail(${EXTEN}@default,b)
VoiceMail(${EXTEN}@default,sb)
VoiceMail(${EXTEN}@default,u)
VoiceMail(${EXTEN}@default,su)

etc…

[quote=“Dimitripietro”]VoiceMail(${EXTEN}@default,b)
VoiceMail(${EXTEN}@default,sb)
VoiceMail(${EXTEN}@default,u)
VoiceMail(${EXTEN}@default,su)

etc…[/quote]

Thanks. :smile:

[quote=“Dimitripietro”]VoiceMail(${EXTEN}@default,b)
VoiceMail(${EXTEN}@default,sb)
VoiceMail(${EXTEN}@default,u)
VoiceMail(${EXTEN}@default,su)

etc…[/quote]

What is the option sb and su ? (I’m only familiar with u and b)

I finally found the answer here:
voip-info.org/tiki-index.php … +VoiceMail