Sent Messages Pending

Hi,
I have a Nokia E61 which shows all my sendt messages are pending, but they have already been delivered...any ideas

If you're talking about SMS Messages, and Delivery Reports, not all networks support them, so they will always be pending.
Most networks have a code you can type at the beginning of messages you want a report for, and get a text back when it's delivered.
Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

Similar Messages

  • Mail 3, smtp, IMAP: sent messages are not saved on server

    Hello,
    I had problems using Mail 3 after I upgraded to Leopard, so I used Thunderbird for the time being. With the update 10.5.1 I tried again: most problems solved BUT: sent messages are not saved on the server in mailbox "Sent".
    Some background: I deleted the folder "<User>/Library/Mail" and "<User>/Library/Preferences/com.apple.mail.plist" and configured Mail from scratch.
    To be sure: I still have Thunderbird installed, and when I send with Thunderbird: a copy is placed in "Sent".
    Another thing I noticed: it takes more than a minute to send from Mail 3 and a few seconds when I send from Thunderbird. I have another Macbook Pro with 10.5.0 installed: same problem with sending.
    Any help is appreciated.
    rene

    Well, be stumped I did all that, but to be sure, I did it again:
    I have a lot folders with subfolders and they are shown under my account name.
    I created a new folder "test" in my IMAP account and designated it to be the new "Sent" folder. It replaces my previous Sent folder in the group Inbox, Drafts, Trash. My previous Sent folder now appears under my account name as a "normal" folder.
    I send a message and the Activity monitor says: +"Delivering message: copying message"+. After a minute Mail is done. I check my (new) "Sent" folder and it's empty. I double check in webmail: it's empty.
    So I go to the Finder and look in my IMAP folder: <user>/Library/Mail/<IMAP-account>/test.imapmbox and there is no folder "Messages", only Info.plist.
    Then I try to move a message to the "Sent' folder: for a minute the Activity moinor says: Copying messages: copying message" and then Mail prompts: +"The message "testing" could not be+
    +The connection to the server mail.hicetnunc.nl on port 143 timed out"+.
    So it looks like Mail has a problem with the default "Sent" folder: it cannot copy messages to that folder at all! Aha!
    But then I try to move a message to a "normal" IMAP folder: same thing! Mail cannot copy to any folder!
    In both instances Mail says: +"The message "..." could not be be moved to the mailbox "..."+
    +The connection to the server mail.hicetnunc.nl on port 143 timed out"+
    Last thing: I try to move a message to a folder in the same account again. But in the process I quit Mail. I open Mail again and Mail is performing pending operations: copying message. After a while Mail prompts: +"Operation could not be completed. (MFMessageErrorDomain error 1028.)"+ and crashes... I open Mail again and it tries to peform pending operations. Again: an error message and Mail crashes. This keeps going on so I delete the whole account and set it up again. Nothing's changed...
    I can receive and send, but sent messages are not copied to the "Sent" folder and I cannot move messages around within a IMAP account. But TADA!!!: I can move messages from account to account.

  • Sent messages not dated and timed.

    My son has given me his old nokia model 1600 phone and I note that when I send messages they are not dated and timed. they do not display as sent only pending. can u help please.
    Thanks
    Margaret

    I noted this reply by Patrick in another forum (thanks Patrick)
    I tried it and it appears to work
    "The solution for me was to select a different Outgoing Mail Server. My Exchange account was set to use the "Exchange SMTP" server (which worked fine for me prior to Mavericks). The other option in the pull down menu was something called "Exchange (Exchange)" so I picked it. This solved the problem. Sent mail once again appears in my Exchange Sent Mail folder."

  • JMS has messages pending in the queue

    Hi, I created a JMS queue to hold some messages, then two message driven bean each take a message from the queue and use JavaMail API 1.2 to send an email out. But somehow, after a while, say, a couple of weeks, there will be about 20 messages pending the queue causing the queue hanging forever. Does anybody know what cause this JMS queue pending? Or is there anything wrong with this design? Thank you very much.

    No, Acknowledgement is sending successfully, no excpeption is raising, in finally it is got acknowledged.
    here is code block,
    public void sendObject(Serializable message) throws JMSException
    try {
    HelperMethods.logDebugMessage("begin sendObject " + System.currentTimeMillis(),
    this.getClass().getName(), "sendObject");
    ObjectMessage objectMessage = getQueueSession().createObjectMessage();
    objectMessage.clearBody();
    objectMessage.setObject(message);
    getQueueSender().send(objectMessage);
    HelperMethods.logDebugMessage("sent sendObject " +System.currentTimeMillis(),
    this.getClass().getName(), "sendObject");
    getQueueSession().commit();
    catch (Exception e) {
    HelperMethods.logDebugMessage("Exception" + e.getMessage(),
    this.getClass().getName(), "sendObject");
    throw new JMSException(e.getMessage());
    public void onMessage(Message message) {
    ObjectMessage objectMessage = (ObjectMessage) message;
    AttachmentFileUtil attachUtil = new AttachmentFileUtil();
    try {
    HelperMethods.logDebugMessage("received write sendObject msg " +
    System.currentTimeMillis(),
    this.getClass().getName(), "onMessage");
    if (message instanceof ObjectMessage) {
    HelperMethods.logDebugMessage("about to process write sendObject msg " +
    System.currentTimeMillis(),
    this.getClass().getName(), "onMessage");
    AttachmentInfoBean attachment = (AttachmentInfoBean)
    objectMessage.getObject();
    HelperMethods.logDebugMessage("processed the write sendObject msg " +
    System.currentTimeMillis(),
    this.getClass().getName(), "onMessage");
    HelperMethods.logDebugMessage("writing the sendObject msg to disk " +
    System.currentTimeMillis(),
    this.getClass().getName(), "onMessage");
    // Here we are calling attachment bean, which uploads the file into file server
         attachUtil.writeContents(attachment);
         HelperMethods.logDebugMessage("After writing the sendObject msg to disk ",
                                                           this.getClass().getName(), "onMessage");
              HelperMethods.logDebugMessage("After Commiting Session " +
                        System.currentTimeMillis(),
                        this.getClass().getName(), "onMessage");
    HelperMethods.logDebugMessage(
    "finished writing the sendObject msg to disk " +
    System.currentTimeMillis(), this.getClass().getName(), "onMessage");
    else {
    HelperMethods.logDebugMessage(
    "oops! no ObjectMessage was received" +
    message.getClass(), this.getClass().getName(), "onMessage");
    throw new NowException("not an ObjectMessage was received" +
    message.getClass());
    catch (Exception ex) {
    ex.printStackTrace();
    HelperMethods.logDebugMessage("Exception" + ex.getMessage(),
    this.getClass().getName(), "onMessage");
    finally {
    try {
    HelperMethods.logDebugMessage("acknowledging the message",
    this.getClass().getName(), "onMessage");
    objectMessage.acknowledge();
    catch (JMSException ex) {
    ex.printStackTrace();
    HelperMethods.logDebugMessage("JMSException" + ex.getMessage(),
    this.getClass().getName(), "onMessage");
    This is my production problem, please suggest me ASAP.
    Regards,
    Murthy Patnaik

  • Nokia 6111 messages pending

    hey, I sent a picture message yesterday to my old phone cos I know I've been having problems. I sent it at 6 PM and in the delivery reports it's still saying it's pending! It has also took the money. I've tried it a couple more times this morning and it's still saying the same thing.. will it finally get sent or not? It's annoying! hope someone can help, thanks!

    If you select Menu > Messaging > Message settings > General settings > Savesent messages > Yes, the sent messages are saved in the Sent items folder
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Sent Messages are not saved in Sent Mailbox

    It was working correctly but suddenly all my sent messages are not saved in the Sent Mailbox. I follow all the Mail Help instructions but nothing seems to work. Hope that someone can help me. I asked for help on december 14 but it was not helpful

    The mailboxes drawer contains all mailboxes under In, Drafts, Sent, Trash and Junk (if you have Junk Mail set to automatic).
    If you have a .Mac or IMAP type account, you also have an account named icon for the .Mac or IMAP type account at the bottom of the mailboxes drawer. It is named by the Account Description you provided/entered for the account under the Account Information tab for the account preferences.
    If you select save Sent messages on the server for a .Mac or IMAP type account, the account's Sent mailbox will be available under the account named icon in the mailboxes drawer along with all other server stored mailboxes.
    To open the account named icon for your .Mac account to reveal the server stored mailboxes including the account's Sent mailbox, select the black triangle beside your .Mac account icon in the mailboxes drawer pointing it down.
    Select the account's Sent mailbox and at the menu bar, go to Mailbox > Use This Mailbox For and select Sent.
    If you deselect store Sent messages on the server for the account preferences, the account's Sent mailbox will be available under Sent in the mailboxes drawer and you can't use "Use This Mailbox For" for mailboxes stored locally on the hard drive. It can only be used for .Mac or IMAP type account mailboxes that are stored on the server.

  • Make Sent messages go to different folder??

    How do I get a sent message to automatically go to a particular folder other than the Sent folder?

    I don't think you can. However, you could set up Mail Prefs to automatically BCC yourself, then make a rule that said "if sender=you, then move message to such-and-such folder". The shortcoming of this approach is that if you have other BCC recipients besides yourself, that information, which would normally be visible in messages in the sent folder, would be lost. However, if you know how to do apple scripting, when that message arrived, rather than move it, maybe you could launch an apple script that moved any messages in the sent folder to such-and-such folder (which would be occurring only one at a time).

  • Sent messages not going to sent folder

    I know this has been asked a bunch of times. This IPAD was purchased in May 2010.
    When I go to the sent box on the IPAD it shows the same emails as are in the inbox, but no sent messages I sent via the IPAD.
    I've read through all the emails discussion boards and can't find any suggestions that work. The email account is a secondary user on the MAC, so I'm not sure if that's an issue.
    I've started blind copying myself to get the messages to the MAC, but is there a way to keep them in the IPAD SENT folder?

    Firefox doesn't do email, it's strictly a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". You need to seek support from your service provider or a forum for that service.
    If your problem is with Mozilla Thunderbird, let us know and we can move this thread to the Thunderbird queue. This question currently is in the Firefox queue for answers.

  • Mail Rules Stopped Applying to Sent Messages Since October 15th 2013.

    Has anyone had a similar experience, or has anyone some idea of what could be done to return the applicability of rules to sent items?
    I'm using OS X's native mail client, Mail. I'm now on Mavericks but the rules that had been working for over a year suddenly stopped working on sent items on the 15th of October 2013 before I upgraded, when I was still running Mountain Lion, so it's not Mavericks' fault.
    Thank you to anyone who takes the time to suggest any ideas they might have.

    Thank you for the link - I had found and read that particular article while doing google research into the problem - it was only after I couldn't find a solution to (or even an explaination of) the problem that I posted this question - it's a very clear article though so I was happy to read it again.
    I understand that people using Mail to handle their Gmail accounts do have all sorts of problems related, perhaps, to not having fully understood carefully researched workarounds that I remember reading and instigating for myself about 3+ years ago. As I said, this resulted in a setup that has had the flexibility to adapt itself flawlessly to my varing requirements since. Perhaps I was fortunate in this regard and I expect that, by striving to achieve my requirements by structuring mailboxes and rules to be as simple as possible, I avoided the vicissitudes that you and I have both read about.
    I made no changes to my Gmail accounts, nor to Mail itself, that could have precipitated the cessation of my rules' influence on sent messages. I never use Gmail itself in fact - I only ever send and read through Mail.
    I know I posted this question under the 'Mavericks' section but, as I tried to make clear, the problem was not caused by upgrading to Mavericks - it started before then. I had not tried any of the betas, nor did I knowingly install any upgrade of Mail prior to the change in behaviour (I upgrade manually).
    In short, whilst I would not expect Mail to apply rules to messages sent directly with Gmail (since Mail would have to read them back in again through IMAP, successfully recognise them as 'sent' and then retrospectivly apply rules), I do expect it to be able to continue applying rules to its own sent messages.

  • Iphone deletes sent messages on my mac

    Hi guys - I have searched on this subject but to no avail.
    When I sync my iPhone with my mac, it deletes all my messages from my Sent Folder on both my Mac and .mac and only keeps the ones on my iPhone (approx 34 messages)
    This means if I want to search for an old email that I have sent from my Mac - I cannot find it which could be disastrous!
    Is there anyway that I can set it so it doesn't delete messages from my mac or do I just have to turn off syncing mail?

    I am sure that your iPhone has absolutely nothing to do with this. Your iPhone and iTunes does not sync messages in Mail. All that is sync'd is simply the account information (name, type, password).
    What is more likely happening, is that you have set Mail to not retain sent messages locally, and the server side with sent messages to be auto deleted once sent, or upon quitting Mail. Or you have set up IMAP like settings, in that a deletion on one client (either Mail or iPhone) deletes the message from the server
    You only need to sync your Mail accounts one time, then you can turn it off. You would turn it back on, when you modify account settings in Mail, add a new account that you also want on your phone, and you simply don't want to double enter that information again on the iPhone.
    HTH
    zac
    Message was edited by: Zac.

  • Sent messages disappeared in Apple Mail

    Hello everybody,
    I use Apple Mail (v. 3.6) with Mac OS X (Version 10.5.8) for my Google Domains email addresses.
    Yesterday, all the sent messages suddenly disappeared from my Inbox in Apple Mail on the Mac (only for one account, although I run 6 accounts on Apple Mail). I therefore signed in with my username on Google Domains and discovered that the messages were still there in the "Sent" folder.
    I tried to Rebuild my mailbox in Apple Mail but it didn't work.
    After that, I removed and reinstalled the account in question in Apple Mail, but it got even worse and now every time I try to open Mail, it completely crashes. I get the coloured circle and nothing happens (except that the email account that I reinstalled blinks in alternatively on the Mac files side and GoogleMail side...). Eventually I have to force quite
    Does anybody have an idea of what the problem could be and how I could solve it?
    Many thanks in advance. Your help will be really helpful.
    Clément.

    Salut Clément, et un accueil chaleureux aux forums!
    Not certain, but this can fix myriad Mail problems...
    Safe Boot from the HD, (holding Shift key down at bootup), it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move these folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.
    If that doesn't help & you can afford to redo any Mail Rules...
    Trash these files...
    /Users/YourUserName/Library/Mail/... MessageRules.plist and MessageRules.plist.backup

  • When I go click on a specific "Sent" message, all the lettering on the screen fades to an opaque, an hourglass icon appears, & nothing happens.

    When I open the window for all my "sent" messages and click on a specific message, nothning happens. Instead, the lettering on the list of "sent" messages fades to an opaque, and an hourglass iconn appears. When this happens, I can't even close out Thunderbird to start up again. Sometimes if I wait up to a minute or so, the message will appear. Usually, I control/alt/delete, and start all over again. This has only started happening in the past few weeks. During this same time, another problem has appeared. I use google and Youtube to watch a lot of old TV shows. Now, the Yahoo search appears, and the results include many items I don't wish to see. FYI, I use e-mail a lot, receiving and sending up to a dozen messages a day.

    re'' During this same time, another problem has appeared. I use google and Youtube to watch a lot of old TV shows. Now, the Yahoo search appears,''
    I presume you are refering to the Thunderbird search facility that allows you to 'Search google for', but now it says 'search Yahoo for'.
    When you enter something and select 'search Yahoo for' you will see a list of icons on the left side, currently the yahoo icon is selected and at the bottom the heart icon is also red.
    You can select any of those icons to change to another search engine.
    select the google icon, then at the bottom on the left, look for the heart icon, it will appear white with black outline. Click on the heart icon to change it to red. This will set google as default.
    Now close the search and retry, this time it should say 'Search google for'.

  • After upgrading to iOS 5 I have lost all my sent messages'all my deleted messages have returned ,2 of which I also can't delete!

    After upgrading to ios5 all my sent messages disappeared,my deleted messages returned,a couple of which I also cannot delete!Anyone any ideas?I am thinking I should have stayed with ios4,as ios5 seems to be pitched at iPad 2 users.

    Thanks for the clarification.    Yes, I do access my email from 2 different sources. 
    FYI, I use the POP mailserver as I need most of the information to be loaded onto my PC while on a plane / not connected to the interenet.
    The primary use of mail on my iPhone is to be available as much as possible - even when I'm away from my office.
    Thanks again for your help.   I'll start deleting them in segments of 100.......

  • My ipad mail is synced to my iMac mail account. On iPad, I can only see my inbox and sent messages. I can't see any of the folders I have created on my iMac. How do I do that? Probably a dumb question, but I know there's a lot of smart people out there!

    My iPad mail is synced to my private email account, which I organise on my iMac. On iPad, I can only see inbox and sent messages folders, not any of the other folders in my email account I have created on my iMac. How do I get iPad to show my other folders? Probably a dumb question, but I know there's a lot of smart people out there.

    If you select a mailbox, you should get an Edit button (easier to see in landscape mode). Clicking the button will provide you with check circles for the messages. You also get Delete and Move buttons at the bottom. Check the messages you want to move and then navigate to the mailbox you want to drop them into. I think as long as you can navigate to a mailbox you can move the messages to it.
    In the Mac Mail application and probably Outlook on the Windows side, you also setup rules to move messages to specific mailboxes. If the mailboxes are stored on the server, then you can have the sorting done on the server and they should appear that way on the iPad. If your later messages do not show up, you may need to have the iPad app pulled down more messages until they are all showing.

  • I use a gmail account for my mail.  When I send an email I sometimes get multiple duplicates (up to 10-12) of the same sent message saved in my sent file.  help

    I use a gmail account for my mail.  When I send an email I sometimes get multiple duplicates (up to 10-12) of the same sent message saved in my sent file.  help

    Did you check your user name and password in Settings>Mail,Contacts,Calendars...tap your email account, tap SMTP, then tap the primary server name.  Make sure the settings there are correct.

Maybe you are looking for