View Single Post
  #13 (permalink)  
Old 03-18-2008, 12:32 AM
rhf1 rhf1 is offline
Member
 
Posts: 11
Default

Hi

Thanks for the reply and yes I have this:

<zimletConfig name="com_zimbra_sms" version="2.2">
<global>
<property name="smsusername">yyyyyy</property>
<property name="smspassword">XXXXXX</property>
<property name="smsfrom">RHF</property>
</global>
</zimletConfig>

(yyy and xxx obviously is my username and pass with ipipi which I won't show here)

Further to that I changed the other xml file to update the version number and name so I was sure the server was showing the right one:

<zimlet name="com_zimbra_sms" version="2.2" description="RHF SMS Sender">
etc....

And the same for the config xml as you saw...

I also amended the jsp file to stop it putting the +1 in front of all numbers by removing these lines:

if (!phone_num.startsWith("+1")) {
if (phone_num.startsWith("1")) {
phone_num = "+" + phone_num;
} else {
phone_num = "+1" + phone_num;
}
}

Now it sort of says it has sent but when I type +33616..... my french number BUT it removes the " + " from the message and presumably from the number...

Maybe my cutting out the above is too brutal?


Any further ideas now?

Thanks
Reply With Quote