<DIV>Here is relevant portion of sip.conf. for those peer softswitches....I have tested with 2 Clarent Softswitches one with 3 and other with just one mailbox..worked fine. I will go to bugs.digium.com..and submit a case....Thx</DIV>
<DIV>&nbsp;</DIV>
<DIV>I followed the NOTIFY mechanism for sending MWI as per RFC 3842....</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>---------------------------------------------------------------sip.conf---------------------------------------</DIV>
<DIV>[10.1.1.1:5080]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //This sofswitch uses port 5080 for VoiceMail...we do have to </DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; explicitly&nbsp;mention the port here so that Asterisk does not loose it while </DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sending NOTIFY to Softswitches..I found out that Asterisk does loose </DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this port.<BR>type=friend<BR>username=c5cm<BR>context=clarentcm<BR>dtmfmode=rfc2833<BR>host=10.1.1.1<BR><A href="mailto:mailbox=12895551001@suppc5cm1,12895551002@suppc5cm1,12455551000@suppc5cm1">mailbox=12895551001@suppc5cm1,12895551002@suppc5cm1,12455551000@suppc5cm1</A><BR>allow=ulaw<BR>port=5080</DIV>
<DIV>[10.1.1.2:5080]<BR>type=friend<BR>context=JerryC5_84<BR>dtmfmode=rfc2833<BR>host=10.1.1.2</DIV>
<DIV><A href="mailto:mailbox=15142550001@jerryc5vm">mailbox=15142550001@jerryc5vm</A><BR>allow=ulaw<BR>port=5080</DIV>
<DIV>--------------------------------------------------------------------------------------------------------------------------------------------<BR><BR><BR><B><I>John Todd &lt;jtodd@loligo.com&gt;</I></B> wrote:</DIV>
<BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid"><BR>This looks interesting. Can you provide a bit more detail and some <BR>other updates?<BR><BR>1) Can you supply a diff on the sip.conf file that shows an example <BR>of your new method (comment the section out, and use several lines of <BR>comments to explain what the example does)<BR><BR>2) On what softswitches is this known to work? I assume you've <BR>tested with SER, as a baseline?<BR><BR>3) Have you signed a disclaimer with Digium?<BR><BR>4) Can you submit this as an addition to bugs.digium.com so that it <BR>will be included in future Asterisk releases if it meets approval and <BR>functionality criteria (as nebulous as both of those are...)?<BR><BR>JT<BR><BR><BR>At 11:05 AM -0700 on 4/14/05, Jay Ray wrote:<BR>&gt;Hi All,<BR>&gt;<BR>&gt; I had proposed the changes to be able to support Asterisk <BR>&gt;VoiceMail for 3rd Party Softswitches. Here is what I have changed on
 <BR>&gt;Asterisk in chan_sip.c<BR>&gt;<BR>&gt;While in function sip_send_mwi_to_peer() . in case peer-&gt;tohost has <BR>&gt;a value which means that its not a registered EP - but a static <BR>&gt;peer, I call another function called sip_send_mwi_to_softswitch() <BR>&gt;.....in which I separate the comma separated mailboxes defined in <BR>&gt;sip.conf for that peer. and send NOTIFY in a for loop for each of <BR>&gt;the Mailboxes....by calling another new function <BR>&gt; transmit_notify_to_softswitch_with_mwi()<BR>&gt;<BR>&gt;In transmit_notify_to_softswitch_with_mwi() , I populate the <BR>&gt;sip_pvt-&gt;username with the mailbox number (minus the mailbox <BR>&gt;context, if any)...so that the mailbox number gets added to the "TO" <BR>&gt;header in the NOTIFY going out to that Softswitch...for the <BR>&gt;Softswitch to pass on the NOTIFY to the appropriate Endpoint....<BR>&gt;<BR>&gt;The DIFF is below, comments
 appreciated.......<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;[root@jerrylinux channels]# diff chan_sip.c.wrking1 chan_sip.c.orig<BR>&gt;489,490d488<BR>&gt;&lt; int *lastmsgsent_switch; /* maintaining last message <BR>&gt;sent for EPS on a Third Party Softswitch */<BR>&gt;&lt;<BR>&gt;1207c1205<BR>&gt;&lt;<BR>&gt;---<BR>&gt;&gt;<BR>&gt;1209d1206<BR>&gt;&lt;<BR>&gt;1212d1208<BR>&gt;&lt;<BR>&gt;3930,3932d3925<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;4217,4271d4209<BR>&gt;&lt; /*--- transmit_notify_to_softswitch_with_mwi: Notify Softswitch user of<BR>&gt;&lt; messages waiting in voicemail ---*/<BR>&gt;&lt; /* Notification works for Softswitch peers with mailbox= definitions<BR>&gt;&lt; * in sip.conf<BR>&gt;&lt; * We use the SIP Event package message-summary<BR>&gt;&lt; * MIME type defaults to "application/simple-message-summary";<BR>&gt;&lt; */<BR>&gt;&lt; static int transmit_notify_to_softswitch_with_mwi(struct sip_pvt <BR>&gt;*p, char *mbox, int newmsgs, int oldmsgs)<BR>&gt;&lt;
 {<BR>&gt;&lt; struct sip_request req;<BR>&gt;&lt; char tmp[256];<BR>&gt;&lt; char tmp2[256];<BR>&gt;&lt; char *tmp_mbox;<BR>&gt;&lt; char clen[20];<BR>&gt;&lt;<BR>&gt;&lt; /* I will put the Mailbox Number - the part before the @<BR>&gt;&lt; * in p-&gt;username, and then call initreqprep as initreqprep<BR>&gt;&lt; * looks for a p-&gt;username and puts it in TO Header<BR>&gt;&lt; */<BR>&gt;&lt;<BR>&gt;&lt; tmp_mbox = (char*) calloc(strlen(mbox), sizeof(char));<BR>&gt;&lt;<BR>&gt;&lt; strncpy(tmp_mbox, mbox, strlen(mbox));<BR>&gt;&lt;<BR>&gt;&lt; tmp_mbox = strsep(&amp;tmp_mbox, "@");<BR>&gt;&lt;<BR>&gt;&lt; strncpy(p-&gt;username, tmp_mbox, strlen(tmp_mbox));<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt; initreqprep(&amp;req, p, "NOTIFY", NULL);<BR>&gt;&lt;<BR>&gt;&lt; add_header(&amp;req, "Event", "message-summary");<BR>&gt;&lt; add_header(&amp;req, "Content-Type", default_notifymime);<BR>&gt;&lt;<BR>&gt;&lt; snprintf(tmp, sizeof(tmp), "Messages-Waiting: %s\r\n", <BR>&gt;newmsgs ?
 "yes" : "no");<BR>&gt;&lt; snprintf(tmp2, sizeof(tmp2), "Voice-Message: %d/%d\r \n", <BR>&gt;newmsgs, oldmsgs);<BR>&gt;&lt; snprintf(clen, sizeof(clen), "%d", (int)(strlen(tmp) + <BR>&gt;strlen(tmp2)));<BR>&gt;&lt; add_header(&amp;req, "Content-Length", clen);<BR>&gt;&lt; add_line(&amp;req, tmp);<BR>&gt;&lt; add_line(&amp;req, tmp2);<BR>&gt;&lt;<BR>&gt;&lt; if (!p-&gt;initreq.headers) {<BR>&gt;&lt; /* Use this as the basis */<BR>&gt;&lt; copy_request(&amp;p-&gt;initreq, &amp;req);<BR>&gt;&lt; parse(&amp;p-&gt;initreq);<BR>&gt;&lt; if (sip_debug_test_pvt(p))<BR>&gt;&lt; ast_verbose("%d headers, %d lines\n", <BR>&gt;p-&gt;initreq.headers, p-&gt;initreq.lines);<BR>&gt;&lt; determine_firstline_parts(&amp;p-&gt;initreq);<BR>&gt;&lt; }<BR>&gt;&lt;<BR>&gt;&lt; return send_request(p, &amp;req, 1, p-&gt;ocseq);<BR>&gt;&lt; }<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;8628,8734d8565<BR>&gt;&lt; //Ujju - sip_send_mwi_to_softswitch : Sending MWI to another Softswitch.<BR>&gt;&lt; static int
 sip_send_mwi_to_softswitch(struct sip_peer *peer)<BR>&gt;&lt; {<BR>&gt;&lt; /* Checking for all the m alboxes configured for a softswitch<BR>&gt;&lt; and sending NOTIFY w/MWI for all */<BR>&gt;&lt; struct sip_pvt *p;<BR>&gt;&lt; char name[256] = "";<BR>&gt;&lt; int newmsgs, oldmsgs;<BR>&gt;&lt;<BR>&gt;&lt; if(peer-&gt;mailbox==NULL){<BR>&gt;&lt; ast_log(LOG_WARNING, "No Mailboxes defined in sip.conf and <BR>&gt;voicemail.conf for this softswitch");<BR>&gt;&lt; return 0;<BR>&gt;&lt; }<BR>&gt;&lt;<BR>&gt;&lt; int i;<BR>&gt;&lt; int mbox_count=0;<BR>&gt;&lt; char *mbox[500]; /*Pointer to individual malboxes*/<BR>&gt;&lt; char *tmp=NULL; /*Temp Pointer to individual mailboxes*/<BR>&gt;&lt; char *mailboxes;/* storing full comma separated mailbox <BR>&gt;string here */<BR>&gt;&lt;<BR>&gt;&lt; mailboxes=(char *)calloc(strlen(peer-&gt;mailbox),sizeof(char));<BR>&gt;&lt;<BR>&gt;&lt; strcpy(mailboxes,peer-&gt;mailbox);<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt; tmp=strchr(mailboxes,',');<BR>&gt;&lt;
 //**mbox=(char **)malloc(sizeof(char *)*256);<BR>&gt;&lt; //This copies first Mailbox in mbox[0]<BR>&gt;&lt; mbox[mbox_count]=mailboxes;<BR>&gt;&lt; mbox[mbox_count]=strsep(&amp;mbox[mbox_count], ",");<BR>&gt;&lt;<BR>&gt;&lt; //This copies rest of the mailboxes in mbox[1, 2, 3......]<BR>&gt;&lt; while(tmp!=NULL)<BR>&gt;&lt; {<BR>&gt;&lt; mbox_count++;<BR>&gt;&lt; tmp+=1;<BR>&gt;&lt; mbox[mbox_count]=(char*) calloc(strlen(tmp), sizeof(char));<BR>&gt;&lt; strncpy(mbox[mbox_count],tmp, strlen(tmp));<BR>&gt;&lt; mbox[mbox_count]=strsep(&amp;mbox[mbox_count], ",");<BR>&gt;&lt; tmp=strchr(tmp,',');<BR>&gt;&lt; }<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt; /* Allocating memory for PTR to last msg for each mailbox <BR>&gt;for EPs on Softswitch */<BR>&gt;&lt; if (peer-&gt;lastmsgsent_switch == NULL) {<BR>&gt;&lt; peer-&gt;lastmsgsent_switch = (int *) <BR>&gt;calloc(mbox_count,sizeof(int));<BR>&gt;&lt; for (i=0;i&lt;=mbox_count;i++)<BR>&gt;&lt; peer-&gt;lastmsgsent_switch[i]=-1;<BR>&gt;&lt;
 }<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt; //Now looping through all the Mailboxes to send individual Notify's<BR>&gt;&lt; for(i=0;i&lt;=mbox_count;i++) {<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt; ast_app_messagecount(mbox[i], &amp;newmsgs, &amp;oldmsgs);<BR>&gt;&lt;<BR>&gt;&lt; time(&amp;peer-&gt;lastmsgcheck);<BR>&gt;&lt;<BR>&gt;&lt; /* Retur n now if it's the same thing we told them <BR>&gt;last time */<BR>&gt;&lt; if (((newmsgs &lt;&lt; 8) | (oldmsgs)) == <BR>&gt;peer-&gt;lastmsgsent_switch[i]) {<BR>&gt;&lt; if (i==mbox_count)<BR>&gt;&lt; return 0;<BR>&gt;&lt; else<BR>&gt;&lt; continue;<BR>&gt;&lt; }<BR>&gt;&lt;<BR>&gt;&lt; p = sip_alloc(NULL, NULL, 0);<BR>&gt;&lt; if (!p) {<BR>&gt;&lt; ast_log(LOG_WARNING, "Unable to build sip <BR>&gt;pvt data for MWI\n");<BR>&gt;&lt; return -1;<BR>&gt;&lt; }<BR>&gt;&lt; strncpy(name, peer-&gt;name, sizeof(name) - 1);<BR>&gt;&lt; peer-&gt;lastmsgsent_switch[i] = ((newmsgs &lt;&lt; 8) | (oldmsgs));<BR>&gt;&lt; if (create_addr(p, name)) {<BR>&gt;&lt; /*
 Maybe they're not registered, etc. */<BR>&gt;&lt; sip_destroy(p);<BR>&gt;&lt; return 0;<BR>&gt;&lt; }<BR>&gt;&lt; /* Recalculate our side, and recalculate Call ID */<BR>&gt;&lt; if (ast_sip_ouraddrfor(&amp;p-&gt;sa.sin_addr,&amp;p-&gt;ourip))<BR>&gt;&lt; memcpy(&amp;p-&gt;ourip, &amp;__ourip, sizeof(p-&gt;ourip));<BR>&gt;&lt; build_via(p, p-&gt;via, sizeof(p-&gt;via));<BR>&gt;&lt; build_callid(p-&gt;callid, sizeof(p-&gt;callid), p-&gt;ourip, <BR>&gt;p-&gt;fromdomain);<BR>&gt;&lt; /* Here I call another Function to Build Proper to header */<BR>&gt;&lt; /* Sen d MWI */<BR>&gt;&lt; ast_set_flag(p, SIP_OUTGOING);<BR>&gt;&lt;<BR>&gt;&lt; //Ujju Set the p-&gt;peername pointer to char to NULL <BR>&gt;if its length is 0<BR>&gt;&lt;<BR>&gt;&lt; if (!strlen(p-&gt;peername)){<BR>&gt;&lt; strncpy(p-&gt;peername, peer-&gt;name, sizeof(p-&gt;peername));<BR>&gt;&lt; }<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt; transmit_notify_to_softswitch_with_mwi(p, mbox[i], <BR>&gt;newmsgs, oldmsgs);<BR>&gt;&lt; ;
 sip_scheddestroy(p, 15000);<BR>&gt;&lt; }<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt; return 0;<BR>&gt;&lt;<BR>&gt;&lt; }<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;&lt;<BR>&gt;8743,8750c8574<BR>&gt;&lt; /* Ujju Here we call function to separate all the mailboxes <BR>&gt;if tohost ne NULL and<BR>&gt;&lt; then call the below func - sip_send_mwi_to_softswitch - <BR>&gt;for each of those mailboxes */<BR>&gt;&lt;<BR>&gt;&lt; if (strlen(peer-&gt;tohost) != 0){<BR>&gt;&lt; sip_send_mwi_to_softswitch(peer);<BR>&gt;&lt; return 0;<BR>&gt;&lt; }<BR>&gt;&lt;<BR>&gt;---<BR>&gt;&gt; /* Check for messages */<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;Do you Yahoo!?<BR>&gt;Yahoo! Small Business - <BR>&gt;<HTTP: evt="31637/*http://smallbusiness.yahoo.com/resources/" us.rd.yahoo.com>Try <BR>&gt;our new resources site!<BR>&gt;<BR>&gt;_______________________________________________<BR>&gt;Asterisk-Dev mailing list<BR>&gt;Asterisk-Dev@lists.digium.com<BR>&gt;http://lists.digium.com/mailman/listinfo/asterisk-dev<BR>&gt;To
 UNSUBSCRIBE or update options visit:<BR>&gt; http://lists.digium.com/mailman/listinfo/asterisk-dev<BR><BR></BLOCKQUOTE><BR><BR><p>
                <hr size=1>Do you Yahoo!?<br> 
Yahoo! Mail - 250MB free storage. <a href="http://us.rd.yahoo.com/evt=29915/*http://info.mail.yahoo.com/mail_250">Do more. Manage less.</a>