I have installed asterisk in a 4.11 RELEASE FreeBSD, and we are using two Zoom X5v with SIP and works fine, we can call each other and this is OK ----------extensions.conf---------- [general] static=yes writeprotect=no [sip] exten => 123,1,Dial(SIP/123,20) exten => 123,2,Voicemail(u${EXTEN}) exten => 123,3,Hangup exten => 123,103,Voicemail(b${EXTEN}) exten => 123,104,Hangup exten => 321,1,Dial(SIP/321,20) exten => 321,2,Voicemail(u${EXTEN}) exten => 321,3,Hangup exten => 321,103,Voicemail(b${EXTEN}) exten => 321,104,Hangup ---------------------------------------- My problems begins when someone tries to leave a message. Because you have to guess when to start to leave the message, I mean that the operator doesn't works ( I set operator=yes) -- Recording the message -- x=0, open writing: /var/spool/asterisk/voicemail/default/123/INBOX/msg0002 format: wav49, 0xa9dc200 -- x=1, open writing: /var/spool/asterisk/voicemail/default/123/INBOX/msg0002 format: gsm, 0xa9dc400 -- x=2, open writing: /var/spool/asterisk/voicemail/default/123/INBOX/msg0002 format: wav, 0xa9ce400 ---------- voicemail.conf -------------- [general] format=wav49|gsm|wav servermail=asterisk operator=yes attach=yes maxmessage=180 pbxskip=yes fromstring=The Asterisk PBX [default] 123 => 123,digixt,digixt@gmail.com,attach=yes 321 => 321,digixt2,digixt@gmail.com,attach=yes -------------------------------------- And Music on Hold is not working ( i didn't put that confg up) I only hear noises if I put it at extensions.conf ------------musiconhosld.conf------------ ; ; Music on hold class definitions ; [classes] default => quietmp3:/usr/local/share/asterisk/mohmp3 loud => mp3:/usr/local/share/asterisk/mohmp3 random => quietmp3:/usr/local/share/asterisk/mohmp3,-z unbuffered => mp3nb:/usr/local/share/asterisk/mohmp3 quietunbuf => quietmp3nb:/usr/local/share/asterisk/mohmp3 ; Note that the custom mode cannot handle escaped parameters (specifically embedded spaces) ;manual => custom:/usr/local/share/asterisk/mohmp3,/usr/bin/mpg123 -q -r 8000 -f 8192 -b 2048 --mono -s --------------------------------------------------- Really don't know how to debug my sound problems, and of curse how to continue to try to make IVR work Thanks for any help!!! Byes