C6 email synchronisation issue

My Nokia C6 does not show the emails I receive in OVI on the main screen, I have configured OVI mail, it always shows 0 email, when I open the email client than it synchornises & displays the new emails received, I have set the synchronisation to once every 15 minutes & also tried the option "soonest" still emails dont display on main screen. always says 0. Sometimes if it does show new email received, it would be an email sent approx 4-5 hours ago.

First, your post was removed because it was in webdings font, which is ultimately a list of symbols on a page which people will not be able to understand and no one will decipher. This was explained to you through a PM that was sent to you. If you could take time to read it, that would be much appreciated.
Secondly, It might be worth you trying to do the following resets:
Soft Reset:
Enter into your keypad *#7780# and when prompted, enter the default passcode 12345. If you have changed the code, it will be the code you changed it to.
A backup will not be needed as this will not delete any data.
Hard Reset:
This will erase all data on your device, so a backup is recommended before you do this.
Once backed up, enter *#7370# and when prompted, enter 12345 as the default passcode.
If there is an issue with Nokia device hardware, it should always be taken to Nokia Care point. 
If you find this post helpful, a click upon the white star at bottom would always be appreciated.
If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

Similar Messages

  • Moving emails - synchronisation issue (N8)

    Recently (last week or so) when I try and move an email from my ovi mail inbox to a personal mail folder using my N8 it can take several attempts to before anything happens and the message appears to move (manually synchronising to check this after each attempt). Typically the message then mysteriously reappears back in my Inbox apparently duplicating itself and needs to be manually deleted from there. This morning I even had messages I'd moved reappearing in the widget display but not appearing in my inbox when I opened mail - eventually they reappeared in the inbox (why, when they'd been moved out of there?) and I could delete them.
    Is there a backend issue with mailbox synchronisation at the moment or any idea what's going on?
    I'm on PR1.2 and the issue seems to conincide with me upgrading to this release.

    I'm not sure about the second issue with the duplicating emails but,
    For the first issue, the problem is if its setup with POP3 or IMAP it will not push only fetch or manual. If you setup your exchange account using exchange on the iPhone then it will push. You shouldn't need the enterprise data plan (I think thats only for phones under a corporate account).
    No doubt setting up it as exchange on the iPhone will probably fix the duplicating issue.

  • How do I connect my MacBook Pro to my Network using Ethernet as there is nowhere to plug the Ethernet cable in? What adaptor do I need? then how do I keep everything, docs and emails, synchronised daily?

    I have just bought a MacBook Pro and want to synchronise all data (excluding photos and music) and emails currently on my desktop iMac.
    First question, how to I plug in an Ethernet cable to the MacBook so that the two can be connected to the same network via the ethernet? Step one of the Apple setup wizard has me flummoxed!
    Second question, once I have that sorted, how do I keep the two devices synchronised (data files and email) and how do I keep the email synchronised to my iPhone?
    Help!

    Direct you to the proper forum for MacBook :
    MacBook Series Forumshttps://discussions.apple.com/community/notebooks?view=discussions
    http://www.apple.com/support/macbookpro
    Mac OS X Forum
    https://discussions.apple.com/community/mac_os?view=discussions
    This forum deals with a desktop/tower 65lb Mac Pro
    http://www.apple.com/support/macpro

  • Email notification issue in some schemas

    Hi,
    My problem is almost identical as here DBMS_SCHEDULER send email notification issue
    One privileged scheduler user - user1 receive email notifications while two another (user2, user3) no.
    More plot is below i know 'what' resolve the problem but don't know how to do it :-)
    I want to execute code below on user3 schema, we tried this successfully on user2 (code executed directly on schema with temporary sys.dbms_aq access) so he receive his notifications.
    Problem is - we do not have direct access to second account (user3) how to execute this code as user3 ?
    declare
      reginfo1    sys.aq$_reg_info;
      reginfolist sys.aq$_reg_info_list;
    begin
      reginfo1    := sys.aq$_reg_info('SYS.SCHEDULER$_EVENT_QUEUE:SCHED$_AGT2$_X',
                                      1,
                                      'plsql://SYS.SCHEDULER$_JOB_EVENT_HANDLER',
                                      null);
      reginfolist := sys.aq$_reg_info_list(reginfo1);
      dbms_aq.register(reginfolist, 1);
    end;
    Already tried create procedure on user3 and execute immediate annonymous block but it still register with USER# 1 not 3 in  DBA_QUEUE_SUBSCRIBERS.
    More detailed plot:
    Jobs for user2 and user3 was created by user1, so JOB_CREATOR was user1 but OWNER was user2 or user3.
    We started with notifications configuration witch was ended with error on both user2 and user3 accounts:
    ORA-24093: AQ agent SCHED$_AGT2$_XX not granted privileges of database user1
    W get rid wit this using
    dbms_aqadm.enable_db_access(SCHED$_AGT2$_2, user1);
    dbms_aqadm.enable_db_access(SCHED$_AGT2$_3, user1);
    So user1 get privilege on agents for user2 and user3
    I believe error was already there because DBMS_SCHEDULER.add_job_email_notification is more automatic it probably registered subscriber that belongs to user2 and user3 with wrong USER# ID that belongs to user1.
    Database is 11.2.0.3

    it doesn't work because notifications are set from user1 account so USER# is still 1 even when I removed record first.
    This is my aproach based on Ask Tom: On Becoming Others, Limits, and Restoration
    >sqlplus user1
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    SQL> grant execute on sys.dbms_aq to user1;
    Grant succeeded.
    SQL> alter user user3 grant connect through user1;
    User altered.
    SQL> connect user1[user3]
    Enter password:
    Connected.
    SQL> create or replace procedure sched_not_add_q as
      2    reginfo1    sys.aq$_reg_info;
      3    reginfolist sys.aq$_reg_info_list;
      4  begin
      5    reginfo1    := sys.aq$_reg_info('SYS.SCHEDULER$_EVENT_QUEUE:SCHED$_AGT2$_3',
      6                                    1,
      7                                    'plsql://SYS.SCHEDULER$_JOB_EVENT_HANDLER',
      8                                    null);
      9    reginfolist := sys.aq$_reg_info_list(reginfo1);
    10    dbms_aq.register(reginfolist, 1);
    11  end;
    12  /
    Procedure created.
    SQL> exec sched_not_add_q;
    PL/SQL procedure successfully completed.
    SQL> drop procedure sched_not_add_q;
    Procedure dropped.
    SQL> connect user1
    Connected.
    SQL> revoke execute on sys.dbms_aq from user3;
    Revoke succeeded.
    SQL> alter user user3 revoke connect through user1;
    User altered.
    SQL> exit;
    >
    So it works now.

  • Email password issues

    Why am i having email password issues? This is the email from [email protected] "Your account (email) could not be authenticated. If you have recently changed your email password, please enter the most current password in settings to continue receiving emails. You can enter the password 100 times a day and still will not receive emails.
    Anyone have an answer?

    Delete and re-add the account.  I just had the same thing happen, and that fixed it.  I think it was some error on Verizon's end.

  • I changed my ID due to an email accessibility issue and I lost access to all my purchased music for the last few years.  Been browsing through the support area and it seems like everyone is saying I will have to rebuy everything.  Is this really true?

    I changed my ID due to an email accessibility issue and I lost access to all my purchased music for the last few years.  Been browsing through the support area and it seems like everyone is saying I will have to rebuy everything.  Is this really true? 
    Apple has to be more user friendly than to let something like this happen, right?

    Did you change the ID, or did you create a new Apple ID? If you had simply changed the ID then what I suggested above should work as the ID itself is the same (even though the name of the ID - the address - has changed).
    However if you created a new ID, logged in with that, and purchased items on it, then you have two separate IDs each with purchased associated with them. You say that you can't log in to the original account with the 'alternate' email - have you tried logging in with the original email address? It doesn't matter if it doesn't actually work to receive mail, as far as logging in is concerned it's just a text string.

  • I'm experiencing major synchronisation issues on ICloud, especially for documents created on my Mac in pages, keynote and numbers. Contacts and agenda items work fine. I checked all my account settings.

    I'm experiencing major synchronisation issues on ICloud, especially for documents created on my Mac in pages, keynote and numbers. Contacts and agenda items work fine. I checked all my account settings. But while I can upload documents from my MAC onto ICloud, they don't show on my IOS devices (whereas previously this worked without issues).

    On this Mac I did move all the visible iCloud documents out of iCloud, into another folder, then disabled syncing, exactly as you suggested.  But there were, apparently, documents remaining in my Mac's local iCloud store, "~/Library/Mobile Documents/" that I could not see (so could not remove). The Pages file "CSU-PD-UN1.pages" was one such document.
    The act of disabling iCloud's document sync'ing, in System Prefs, just renames the local "iCloud" store to "~/Library/Mobile Documents/<appleid#>/" effectively shielding the it from the sync'ing mechanism.  Looking at this renamed folder (the screenshot above) revealed that "CSU-PD-UN1.pages" (and other files) had not been removed; it would be reasonable to assume that one, or more, of these "undeletable" files were related to my original problem, and when I re-enabled doc sync'ing, those bad files would just clog up the works again.
    So I deleted them with the Finder on both Macs (the other Mac had bad files too, but different ones), then re-enabling sync'ing on the two Macs and doc sync'ing between the Macs (and iCloud.com) appears to now work as intended.
    Sadly, iOS devices (iPhone and two iPad) now do not sync at all.  Newly created documents do not migrate to any other devices, and documents on other devices do to migrate to the iOS devices.
    Your suggestions have certainly done some good, but something is now keeping my iOS devices out of the the iCloud doc sync'ing process.  I suspect it's a similar problem as the Macs had ("invisible" files gumming up the works), so I'm going to apply some nasty tricks to explore the iOS devices file system and see if I can find them, and delete them by brue force.

  • Email sync issues

    I'm having email sync issues & can't find a solution that fixes my problem.  Tried everything I've been able to find, including ensuring Sync function is enabled in multiple locations, disabling then reenabling sync features, powering my phone off/on, even resetting the battery. Received the NK1 update on 11 Dec. Not sure if that's when the problems started or not, as I've been busy, but that's seems about the time things stopped sync'ing properly. Am using the email app that comes with the phone (an S4 mini), and have 3 email accounts, cox.net, and 2 aol accts.  The cox & 1 of the aol accts won't sync, but the other aol acct does sync.  The one that is working I have set to not auto sync, & the manual sync works. Not so on the other two ... the sync app says they are sync'd, but the email app says they haven't been sync'd in like 2-3 days, even tho I've sync'd them multiple times today. Get a continually circling busy / working symbol.  Get new email on desktop computer without issues. After a few days, the other two accts will sync up.

    CSForest,
    From time-to-time I have had this issue with the default email app.  Have you checked to see that the app is synched?  When it happens with my S4, there is a message at the bottom of the screen saying the app isn't synched.  Try this: pull down the status bar and click on the icon at the far right.  This will open all the functions available on the status bar.  Make sure 'Synch' is on.  For some reason, this function on my phone gets turned off without me doing it.  KarenC suggested using another email app.  As a backup, I use K-9 Mail.  I really like this app.
    I hope this helps.

  • ICloud OS X email setup issue

    Hi need some help with an iCloud email setup issue that doesn’t seem to have been covered by other posts or the Apple help factsheets.
    Used my old mac.com Apple ID to set up an iCloud account which now shows as having my iMac as a linked device. To use iCloud Mail was prompted to create a new email address which I could do by turning on Mail in iCloud settings.
    I signed into iCloud via my iMac and having deselected default options to use iCloud for Contacts etc arrived at the account page which has the various options on the RHS and my mac.com ID info on the left.
    Ticked the Mail option on the RHS was asked to “choose an iCloud email address” underneath the box where you enter the chosen email address was a note saying “you cannot change your email address after creating it”. When I tried to  set up the new iCloud email address got a prompt saying “you cannot change your email address after creating it”.
    Help!

    You need to know Comcast's settings for incoming and outgoing server when setting up your OSX Mail app. The info should be somewhere on Comcast's help web page.
    lenn

  • IMAP Synchronisation Issue

    Hi,
    What it is, I manage two VPS and have them linked to my Outlook 2013 Software.  One of the VPS works absolutely fine in retrieving and sending mail, however the alternative VPS (with its own Outlook Profile), is able to send mail however cannot retrieve
    mail from the inbox on the VPS.  I get an error message saying there is a Synchronisation issue.  To the best of my knowledge, both VPS have the same settings.  I have spoken to my ISP who have stated that there is nothing wrong with the server
    but then always ignore me when I query how Outlook 2013 is able to retrieve from one server but not the other.  They do say there is an issue with the IMAP settings but I have gone through all of that and cannot see any issue.  Additionally, a Microsoft
    representative remotely accessed my computer who also confirmed I need to speak to my ISP but they just simply state it is an issue with Outlook.
    Anybody had any similar experiences?
    Thanks
    Craig 

    Hi Craig:
    Do you mean Virtual Private Server by VPS? If so, I'd also suggest you contacting your ISP. Thanks for your understanding.

  • Android 2.2 update coming in early September- Will it address the email notification issues??

    The upcoming Android 2.2 update for Droid X. Will this update address the email notifications issues?? I don't have a corporate email account, but use my Droid X for my personal business. I love this phone but the email is annoying. The emails are not coming through quick enough, I don't get notified when new email arrives. I have to do a refresh to lear that I have new emails in my inbox.
    I want like to know if the upcoming 2.2 update will address these issues for personal email like aol, yahoo etc. I know they mentioned something about exchange servers being faster. This is a disappointment for me, I thought I have push email with Droid X but not really. Can Verizon comment on this?
    Thanks,

    I did all those, ie. set my email config to push email, battery on performance mode, check my outgoing and incoming servers and ports. All are corect settings, I even configured all my aol accounts with gmail settings to see if that would work but still not getting push emails. I even did a factory reset. I know this is an issue because I also checked Motorola support forums, a lot people were experiencing what I am going except that I think most them have corporate email and exchange issues.
    I don't know whether this could be addressed with the upcoming 2.2 update not just for corporate but personal emails as well, VERIZON ? Motorola??
    Thanks

  • Email synchronisation in E65

    Dear All
    How can make an email synchronisation in the E65?
    the Nokia PC suite synchronizes only the contacts, Calender and Notes.
    Please help

    I am also looking for the solution to the e-mail synchronisation with Nokia E65.

  • N97 - Where are emails synchronised to when using ...

    I noticed today that Nokia PC Suite allows synchronisation of emails (it didn't for my old N95).  Having gone through the wizard and then synchronised the phone I can't actually see where these emails might have been placed on the phone.
    I use Profimail as my phone client and this is setup to handle my personal email using IMAP.  So there's no account setup on the phone for the built in Nokia email client.
    So this issue is about copying of work emails, not my personal emails.  The MfE folder is empty, the sync log files don't mention anything about failing to copy over the emails.  So where would I see these please?
    Edit...
    Sorry, just to add that I only want to view the emails, not reply to them.
    Message Edited by hyde_tds on 01-Sep-2009 12:37 PM

    I'm afraid my question hasn't really been answered. I'll be more specific. In Camera Raw, I set Exposure to +0.80, then click Open Object to open the file as a Smart Object in Photoshop CS4. Does that embed an "Exposure=0.80" instruction somewhere in the PSD file? I think the answer is "yes," that a Smart Object consists of the RAW camera data along with all the Camera Raw settings, including the Exposure setting.
    But if that is the case, then why does Camera Raw create an XMP file next to the PSD? It seems to me that the XMP file is unnecessary, that it contains information redundant with the settings stored in the PSD, and that it gets out of sync with the PSD as soon as I double-click the Smart Object layer in Photoshop and set Exposure to anything other than +0.80. I find the presense of the XMP file to be terribly confusing.
    -- John

  • Pages - Share and Print - Email document issue

    I ran into an issue today on my iPad2 and wanted to see if it was just me or can anyone reproduce this error. If it turns out to be just me, someone help me undertand how to get around the issue. If it is more widespread, where do I report this so it can be resolved in an future release?
    Here is what happened.
    I received a Word document via e-mail. When I opened it in e-mail and chose to "open with Pages" it worked fine. Imported into Pages sans the font (which I've come to expect). Then I edited the document (it was a quick survey I was taking) and then was ready to send it back to the person who sent it to me. I chose the tools icon, selected "Share and Print" then selected "Email Document" and then chose Word as the format. It converted it and attached the file in a blank e-mail ready for me to address and send.
    Well, I wasn't ready to send just yet. So I clicked on "Cancel" and then "Save Draft" which it did successfully. Then I went into email, edited my "Draft" in my Drafts folder, addressed it, etc. and sent it on its merry way. Well, guess what? The file did not come through on the e-mail. Just my text.
    I tried "copy and paste" of the file after saving as a draft and it only sent the "picture" of the file ICON and not the file itself. I tried multiple times saving it as a draft and then sending and it never worked.
    If I send from within Pages right at the time after "Email Document" is selected, it works every time. It seems to only be when I save the email as a draft from within Pages that it will not send the attachment or something happens to the attachment. I did notice also, that if I edited any "text" from that draft and then saved the draft again, all my edited text wouldn't save either. So any "Draft" saved from Pages I couldn't edit regardless of any attempt.
    Draft saving and editing within the email application works as expected.
    NOTE: Just before submitting this discussion, I tried the above on my wife's iPad2 with the same results. Anything "saved as a draft" from Pages in e-mail, will not send the attachment. Anything sent directly from within Pages and not saving it as a draft, will send the attachment.
    There are times I would like to save it as an attachement, should this work? Thanks everyone!
    Edward

    I am only vaguely familiar with iWork.com. I know it is a cloud based way to share documents with others, but this is what the send to option does when you work with Pages, Numbers or Keynote on the iPad. I would assume that the function performs the same way in iWork.com. - but it is only an assumption.
    "Send to" is the command that will let you send that file to your computer the next time you sync with iTunes. It is the way the iPad transfers the file to your computer - the iPad method of file sharing. You can sync files back and forth from iPad to computer with file sharing as long as the app on the iPad is compatible with a similar application on your computer. In your case iWorks apps on both the iPad and your Mac.
    This article will explain it in great detail for you.
    http://support.apple.com/kb/HT4088

  • CRM 7.0 Unable to open/view PDF Attachments in Email (Intermittent issue)

    Hi,
    Unable to open an attachment (PDF format) sent from exchange server(Lotus) to SAP CRM,Actually its an intermittent issue When i try to open email in UI ,getting an error message "File is damaged and couldnot be repaired".
    I understand that PDF attachment wasn't delivered(Synchronization issue between Lotus and CRM) to SAP CRM system properly by the exchange server ( Lotus ).Hence the particular attachments are not able to view/open in SAP CRM system.
    Is there anyway to trace and find out root cause of the issue?
    Regards,
    Shan

    Issue with IE version and some PDF wasn't delivered properly by lotus exchange server

Maybe you are looking for