How can I leave VM without login to Calling and called exten

How can I setup Asterisk voice mail server with Metaswitch without having to log in both the calling and called extension.
Asterisk Voice mail server works with Metaswitch properly, I can leave message, retrieve it, asterisk also send VMWI and Play stutter dial tone, but Asterisk prompt log in and password for the calling extension and for called extension. Thank you in advance for you help.

SIP.CONF
[general]
;type=friend
port=5061
bindaddr=10.22.60.2
context=voice-mail ; Default context for incoming calls
dtmfmode=inband ; dtmf mode must be inband as we can only use G.711u
disallow=gsm ; disallow gsm as we don’t support on Metaswitch
disallow=alaw ; disallow as we don’t support on USA Metaswitch system
allow=ulaw ; only allow G.711u as no licence for g.729

[7632679190]
contex=voice-mail
canreinvite=no
type=friend
username=7632679190 ; username for TO header in NOTIFY request
host=10.22.60.20
port=5060 ; port Metaswitch is listening on
mailbox=7632679190@default ; mailbox number @ context in voicemail.conf, needed for MWI

[7632679092]
contex=voice-mail
canreinvite=no
type=friend
username=7632679092 ; username for TO header in NOTIFY request
host=198.174.216.25
port=5060 ; port Metaswitch is listening on
mailbox=7632679092@default ; mailbox number @ context in voicemail.conf, needed for MWI

extension.conf

[voice-mail]

exten => 7632679998,1,GotoIf(${RDNIS}?6:2) ; is this a forwarded call (->6) or a direct call (->2)
exten => 7632679998,1,Answer
exten => 7632679998,2,Wait(1) ; wait so front of vm message is not clipped
exten => 7632679998,3,VoicemailMain(${CALLERIDNUM}) ; Goto subscriber Voicemail box, no password needed
exten => 7632679998,4,Wait(1) ; disconnect cleanly
exten => 7632679998,5,Hangup ; goodbye
exten => 7632679998,6,Answer ; pickup line
exten => 7632679998,7,Wait(1) ; wait so front of vm message is not clipped
exten => 7632679998,8,Voicemail(u${RDNIS}) ; leave voicemail message for mailbox diverted from
exten => 7632679998,9,Wait(1) ; disconnected cleanly
exten => 7632679998,10,Hangup ; goodbye
exten => 7632679998,1,VoicemailMain ; goto Main vm menu
exten => 7632679998,2,Wait(1) ; disconnect cleanly
exten => 7632679998,3,Hangup ; goodbye
exten => 7632679998,1,Playback(vm-goodbye) ; play goodbye vm message
exten => 7632679998,2,Wait(1) ; disconnect cleanly
exten => 7632679998,3,Hangup ; goodbye

voicemail.conf

7632679190 => 1234,7632679190,7632679190@10.22.1.19 ;voicemailbox = linenumber, password = password
7632679092 => 1234,7632679092,7632679092@10.22.1.19 ;voicemailbox = linenumber, password = password

Howdy,

From:

wiki.asterisk.org/wiki/display/ … ceMailMain

You can use the “s” option in VoiceMailMain to skip checking the password.