Sent messages never go through and keep saying wil...

My wifes Nokia N79 has recently started putting sent messages in her outbox saying that it will try to re-send then fails to send them at all. She got the phone 2nd hand which was originally on T-Mobile network but she is on O2. I have tried taking her sim card out and putting in my phone and it works fine.
She has had a couple of messages back form a few people saying that they got the same message 45 times yet she never gets a delivery report! Does anyone know if this is a handset issue rather than a network issue or have any advice whatsoever?
Many thanks,
Gordy1976 
Solved!
Go to Solution.

Hi gordy1976,
This might be of help:
/discussions/board/message?board.id=messaging&message.id=21688#M21688
(Too lazy to type)
Cheers,
DeepestBlue
5800 XpressMusic (Rock Stable) | N73 Music Edition (Never Say Die) | 1108 (Old and faithful)
If you find any post useful, click on the Green "Kudos" Button on the left to say Thank You...

Similar Messages

  • Hi, I've recently bought an iPad2 and can't get connected with AppStore or iTunes, when I tap on these icons a grey page pops up saying is loading but never opens the page, no failure message is displayed, it just keep saying is loading. Apparently it is

    Hi, I’ve recently bought an iPad2 and can’t get connected with AppStore or iTunes, when I tap on these icons a grey page pops up saying is loading but never opens the page, no failure message is displayed, it just keep saying is loading.
    Apparently it is not an issue with wifi since Safari, You Tube and Maps work well, I’ve tried some of the tips, e.g. log off/on my Id, change password but no one worked.
    Your help will be highly appreciated.
    Thank you.
    Luis.

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider.

  • Trying to send "Message" on iPad 2 and keep getting message that "x" is "not registered with iMessage." Never happened on previous iPad. What does it mean and how do I solve?

    Trying to send "Message" on iPad 2 and keep getting message that "x" is "not registered with iMessage." Never happened on previous iPad. What does it mean and how do I solve?

    Trying to send "Message" on iPad 2 and keep getting message that "x" is "not registered with iMessage." Never happened on previous iPad. What does it mean and how do I solve?

  • HT4623 I started to update my iphone4 software to iOS 7.0.4 while in the process of updating a text message came in- now it keeps saying checking for update then an error comes up that says try again . How do I finish updating my phone?

    I started to update my iphone4 software to iOS 7.0.4 while in the process of updating a text message came in- now it keeps saying checking for update then an error comes up that says try again . How do I finish updating my phone?

    Hi
    A little information will be of a great help, witch iPhone did you upgrade, memory , and version of software ( iOS 8.x.x )?
    Try restarting you iPhone and make sure you have a god internet connection , get as close to your wifi router (1-3 meter / 2-9 feet ) as possible. Don't use restore to factory  settings before you tried other options .  And most imported du you have an iCloud backup.
    //Sorenc

  • For some reason, my sent messages never arrive.

    Using this code, for some reason my sent messages never arrive, with no exception.
    package com.stryker.cmf.cimailer;
    import java.io.UnsupportedEncodingException;
    import java.util.ArrayList;
    import java.util.Date;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import javax.annotation.PostConstruct;
    import javax.annotation.Resource;
    import javax.ejb.Stateless;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.internet.AddressException;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    * @author Anthony G. Mattas
    @Stateless
    public class CIMailerBean implements CIMailer {
         @Resource(name="comp/env/mail/CIMailer") private javax.mail.Session session;
         private String subject;
         private StringBuffer message;
         /* Hash maps for e-mail address in the format Address, Name */
         private ArrayList<String> recipient;
         private ArrayList<String> cc;
         private ArrayList<String> bcc;
         private String senderaddress;
         private String sendername;
         @SuppressWarnings("unused")
         @PostConstruct
         private void init() {
              this.message = new StringBuffer();
              this.recipient = new ArrayList<String>();
              this.cc = new ArrayList<String>();
              this.bcc = new ArrayList<String>();
         * Add a recipient to the message
         * @param address
         * @return Number of Recipients in class
         * @throws CIMailerException
         public int addRecipient(String address) throws CIMailerException {
              if (validateEmailAddress(address) == false)
                   throw new CIMailerException("Invalid E-mail Address Format");
              recipient.add(address);
              return recipient.size();
         * Add a recipient to the message
         * @param address
         * @return Number of Recipients in class
         * @throws CIMailerException
         public int addCC(String address) throws CIMailerException {
              if (validateEmailAddress(address) == false)
                   throw new CIMailerException("Invalid E-mail Address Format");
              cc.add(address);
              return recipient.size();
         * Add a recipient to the message
         * @param address
         * @return Number of Recipients in class
         * @throws CIMailerException
         public int addBCC(String address) throws CIMailerException {
              if (validateEmailAddress(address) == false)
                   throw new CIMailerException("Invalid E-mail Address Format");
              bcc.add(address);
              return recipient.size();
         * Checks to make sure an e-mail address is valid.
         * @param address Address to validate
         * @return True is yes, false if no.
         //TODO - Match e-mail address at form.
         private boolean validateEmailAddress(String address){
    Pattern p = Pattern.compile("^([\\w\\-\\.]+)@((\\[([0-9]{1,3}\\.){3}[0-9]{1,3}\\])|(([\\w\\-]+\\.)+)([a-zA-Z]{2,4}))$");
    Matcher m = p.matcher(address);
    return m.find();
         * Sets the Subject
         * @param subject
         * @throws CIMailerException
         public void setSubject(String subject) throws CIMailerException {
              if (subject == null) throw new CIMailerException("Subject is Null");
              this.subject = subject;
         * Sets the sender address
         * @param senderaddress
         * @param sendername
         * @throws CIMailerException
         public void setSender(String senderaddress, String sendername) throws CIMailerException {
                   if (validateEmailAddress(senderaddress) == false)
                        throw new CIMailerException("Invalid E-mail Address Format");
                   else {
                        this.sendername = sendername;
                        this.senderaddress = senderaddress;
         * Sets the message to be send
         * @param message
         * @return Message length
         public int setMessage(String message) {
              this.message = new StringBuffer(message);
              return this.message.length();
         * Appends the message being sent
         * @param message
         * @return Message length
         public int appendMessage(String message) {
              this.message.append(message);
              return this.message.length();
         * Sends a message
         * @throws CIMailerException
         public void sendMessage() throws CIMailerException {
              try {
                   Message msg = new MimeMessage(session);
                   if ((this.sendername != null) && (this.senderaddress != null))
                        msg.setFrom(new InternetAddress(this.senderaddress, this.sendername));
                   if (this.subject != null)
                        msg.setSubject(this.subject);
                   else
                        throw new CIMailerException("Subject is Null");
                   // Not allowing date spoofing
                   msg.setSentDate(new Date());
                   msg.setFrom();
                   if ((this.recipient.size() < 1) && (this.cc.size() < 1) && (this.bcc.size() < 1))
                        throw new CIMailerException("No Recipients");
                   for (String address: this.recipient) {
                        msg.addRecipients(Message.RecipientType.TO, InternetAddress.parse(address, false));               
                   for (String address: this.cc) {
                        msg.addRecipients(Message.RecipientType.CC, InternetAddress.parse(address, false));               
                   for (String address: this.bcc) {
                        msg.addRecipients(Message.RecipientType.BCC, InternetAddress.parse(address, false));               
                   MimeBodyPart mbp = new MimeBodyPart();
                   if (this.message.toString() != null)
                        mbp.setText(this.message.toString());
                   Multipart mp = new MimeMultipart();
                   mp.addBodyPart(mbp);
                   msg.setContent(mp);
              } catch (AddressException e) {
                   throw new CIMailerException("Internal Address Exception", e);
              } catch (MessagingException e) {
                   throw new CIMailerException("Internal Messaging Exception", e);
              } catch (UnsupportedEncodingException e) {
                   throw new CIMailerException("Unsupported encoding type", e);
    }

    Well, that unformatted and unindented code is hard to read, so I may be wrong, but I don't see where you call the Transport.send() method.

  • Iv downloaded the 0845 wizard from the App Store. Registered my details and it has been working. But for some reason it won't let me log in and keep saying failed every time I try to use it. Iv deleted and re-downloaded the app and it still says the same?

    Iv downloaded the 0845 wizard from the App Store. Registered my details and it has been working. But for some reason it won't let me log in and keep saying failed every time I try to use it. Iv deleted and re-downloaded the app and it still says the same?

    I would say to start by looking on their web site... unfortunately, that appears to be dead.
    Based on the horrible ratings on the App Store (1 star for the current version), I'm not surprised it doesn't work well.

  • TS1702 I bought 100 minutes for my daughters pinger ex app. The minutes never showed up and it says "You've already purchased this In-App purchase but it hasn't been downloaded". What do I do? How do I download it??

    I purchased 100 Pinger EX minutes on my daughters ipod, the minutes never showed up  and it says "You've already purchased this In-App Purchase but it hasn't been downloaded". How do I download it????

    -First try contacting the app developer/go to their support site.
    Next contact iTunes
    Apple - Support - iTunes - Contact Us

  • I deleted iTunes when it said "iTunes could not back up iPhone because the backup could not be saved on the computer"and now it wont let me install it again and keeps saying "itunes cannot be installed because the file cannot be found in the cabinet "

    iTunes told me to delete my backup folder when I was having problems syncing my phone to my computer. After that it wouldn't work at all. After trying and trying I deleted iTunes when it said "iTunes could not back up iPhone because the backup could not be saved on the computer"and now it wont let me install it again and keeps saying "itunes cannot be installed because the file cannot be found in the cabinet ". What the **** itunes? Nothing is working!!
    I wanted to update my iTunes so I could sync my phone to my computer and update my phones software so I can use the latest apps that need a 4.2 or higher.
    This is not fun for me so if anyone knows what I can do to fix this please help. Is it possible to download the "cabinent file" with the lastest iTunes?
    Thank you.
    -Kait
    My phone is the iPhone4 and my computer is a Windows Vista

    I doubt that corrupt files are the problem. It is more likely a space or permissions issue. Is the hard-drive on which iTunes is stored close to capacity? Do you (or the particular user profile you have logged on with) have the requisite permissions to save to that drive?
    Otherwise, do you get an error code? This might point us in the right direction.

  • I performed a software update and the system is installing an update but it has been running for over 24hrs and keeps saying "This may take a few minutes, don't shut down your computer" Can anyone help?

    I performed a software update and the system is installing an update but it has been running for over 24hrs and keeps saying "This may take a few minutes, don't shut down your computer" Can anyone help?

    Hello cor-el, thanks for your reply. I changed my settings for downloads to desktop and it has appeared on there. When I double click I am asked which program I want to open file. I click firefox and another box "opening install" says I have chosen to open the file which is an application and do I want to save it. This is the only real option so I press save file. I get a box saying this is an executable file which may contain viruses - do you want to run. I press ok and the final box showing C drive file name and desktop appears stating application not found.
    This happens the same whenever I try to install.
    To my untrained eye the application is not being recognised as an application and I cannot work out how to get it to do that.
    My plugin is still showing as out of date.
    Is there anything you could suggest. Thanks for your time.

  • I tried to update my phone last night. When I woke up, it said it needed to be connected to iTunes. I restored my phone and now it won't turn on and keeps saying it needs to be connected to iTunes.

    I tried to update my phone last night. When I woke up, it said it needed to be connected to iTunes. I restored my phone and now it won't turn on and keeps saying it needs to be connected to iTunes.

    probably need pc or mac update for ios 6 on your home device

  • HT1430 When i connected my Iphone to Itunes it started to update the software, and then said it's unable to update and to please restore it, now it wont "activate" and keeps saying "try again"

    When i connected my Iphone to Itunes it started to update the software, and then said it's unable to update and to please restore it, now it wont "activate" and keeps saying "try again"

    What iPhone do you have? You can check in settings>>general>> about.
    If you have a 3G you cannot update beyond iOS 4.2.1. The 3G is over 4 years old an was discontinued over 2 1/2 years ago. You need the latest ios to run the latest versions of some apps. If you have a 3GS you can update.
    If your phone is not responding, reset it by pressing and holding down both the home button ad lock/ sleep button simultaneously until the Apple logo appears.

  • IMessage will not let me in and keeps saying I'm not connected to the internet when I am

    Imessage will ill not let me in and keeps saying I'm not connected even though I am.

    1. Make sure Date and Time is correctly set; Settings>General>Date and Time>Set Automatically>On
    2. Make sure phone number or email address is correct
    3. Restart iPad

  • My widget browser keeps showing "failed getting widget feed" and keeps saying "failed getting widget feed and make sure you are connected to the internet" when I am connected to the internet. How do I fix this?

    my widget browser keeps showing "failed getting widget feed" and keeps saying "failed getting widget feed and make sure you are connected to the internet" when I am connected to the internet. How do I fix this?

    Widget Browser is gone.  Adobe pulled the plug on it quite a while ago.
    See this related discussion from earlier today.
    Widgets a Gone Gone
    Nancy O.

  • Please help. Ipod has black battery and keeps saying need to restore via Itunes.. but when I restore it goes back to the way it was...

    Please can somebody help me.
    My iPod keeps saying I need to connect to iTunes and restore.
    I have done that, but then it says it has been restored and then reverts back again to same message.
    Any help greatly appreciated.

    Unfortunately, it is possible that the iPod's hard drive has become faulty.  No matter how many time you Restore it, iTunes sees something wrong with the iPod's storage the next time, and asks you to Restore it again.
    There is one more thing I can think of, that you can try.
    Put the iPod into Disk Mode again.  With iTunes NOT running, reformat the iPod's disk like it was an external drive, using the Windows command.  Make sure you are selecting the iPod's disk for formatting.  Select the format type of "FAT."  If there is an option for a "quick" format, do not use it; do a "full" format.  If there is a physical problem on the hard drive, this formatting attempt may fail.  If it succeeds, run iTunes and do another Restore.  (Even if it does not prompt you this time, you need to do a Restore so that iTunes can re-install the iPod's onboard software.)

  • Sent messages never get recieved.

    I have sent a message to different addresses and the message never gets received by the addressee. I have sent to myself, my work email and never go the message.
    Any suggestions??

    Who is the email account provider for this email account?

Maybe you are looking for