Unable to retrieve mail from server on my account

Hi there.
I am unable since june 26 to retrieve email from the server. I check information on my mail app and i see my mail list store on the server. I also tried to send me an email. But still unable to retrieve it. So i can send email, but enable to get them. I tried to reconstruct the database directly on the server without success.
OSX server 10.4
Does someone have an idea of what i could be?
Thx.
Alain

Hi
Not a lot to go on is there? However if you use the GUI or the command line its a good idea to stop the mail service before attempting a Reconstruct. In my experience I don't think its ever worked using the GUI. Perhaps others have had more luck?
Following these instructions should get you back on track:
http://docs.info.apple.com/article.html?artnum=107996
You'll get all previously read mail marked as unread but that's easily dealt with. As already stated it's difficult to give any clear advice as you are keeping things to yourself somewhat. The above link assumes its a standard Mail Service setup using the GUI alone.
Tony

Similar Messages

  • Delete Mail From Server Gmail-Imap-Account

    Hi,
    My problem is that when I delete email from the z10 it Doesnt delete it from the server
    1. I am use to read my mails from some devices (web,macbook,mobile)
    2. had an ios device before and use to have mails automaticly deletes from the server as well
    3. If its not possible I beleive it will be available on the next release (10.1.2 ?)
    4. If someone know how to solve this issue it will be nice (not a fan of pop3 )
    Thanks 
    Solved!
    Go to Solution.

    hollywoodhenry wrote:
    Hello,
    Has there been a solotion to this?? 
    My blackberry 9900 would allow me to delete an email on my phone and it would also be deleted on GMAIL. 
    Now with the new Blackberry OS,  I delete an email on my phone and the only action it does on GMAIL is removing it from the inbox, but it still appears in ALL MAIL, so after weeeks of this, there are litreally hundres of emails still in ALL EMAIL that i thought I had deleted already. 
    It's a matter of tweaking your Gmail settings to have the email go to Gmail Trash instead of All Mail.  The article at this link has the clearest desription I've seen..  This is working for me.
    http://crackberry.com/how-get-gmail-delete-hub-without-archiving

  • I am unable to send mail from my Orange.fr account on my ipad add

    Orange.fr lost personal data on Sunday, so I decided to change the password on my mail account which I did successfully can pick up and send mail via Thunderbird on my PC.  However, I had to delete my orange account from the mail application as it would let me change the password in settings.  I can now receive mail OK, but I an unable to send as I get the message that "That the username or password for "SMPT (email address)@smtp.orange.fr" is incorrect.  I have checked the server settings against those on Orange.fr website, and they are correct.   Any ideas what the problem is?

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    iPhone, iPad, iPod touch: Microsoft Outlook 2003, Outlook 2007, Outlook 2010 may not display contacts and calendars after sync
    http://support.apple.com/kb/TS1944
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iCloud: Create a group and add contacts to it
    http://support.apple.com/kb/PH2667
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email  -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • How to retrieve mails from a Mail Server ? PLEASE REPLY IF YOU KNOW !

    Hello,
    I am trying to retrieve mail from a mail server using the example from JGuru. The command line is as follows:
    java GetMessageExample mail.wlfdle1.on.home.com (Mail Server Name) <username> <password>
    I should be prompted to read the messages in your INBOX. Enter YES to see the message content.
    0: [email protected] Thanks.
    Do you want to read message? [YES to read/QUIT to end]
    YES
    Blah Blah Blah
    1: [email protected] No Thanks.
    Do you want to read message? [YES to read/QUIT to end]
    YES
    Blah Blah Blah Blah
    I do not get any error or any output.
    Any Clue or any idea how I can get some result ??
    Response will be appreciated.
    Thanks.

    This is the sample program from jguru. After executing the following command (replacing the mail server, username, and password):
    java GetMessageExample POP.Server username password
    You'll be prompted to read the messages in your INBOX. Enter YES to see the message content.
    0: [email protected] Thanks.
    Do you want to read message? [YES to read/QUIT to end]
    YES
    Blah Blah Blah
    1: [email protected] No Thanks.
    Do you want to read message? [YES to read/QUIT to end]
    YES
    Blah Blah Blah Blah
    import java.io.*;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class GetMessageExample {
    public static void main (String args[]) throws Exception {
    String host = args[0];
    String username = args[1];
    String password = args[2];
    // Create empty properties
    Properties props = new Properties();
    // Get session
    Session session = Session.getDefaultInstance(props, null);
    // Get the store
    Store store = session.getStore("pop3");
    // Connect to store
    store.connect(host, username, password);
    // Get folder
    Folder folder = store.getFolder("Inbox");
    // Open read-only
    folder.open(Folder.READ_ONLY);
    BufferedReader reader = new BufferedReader (
    new InputStreamReader(System.in));
    // Get directory
    Message message[] = folder.getMessages();
    System.out.println(folder.getMessages());
    for (int i=0, n=message.length; i<n; i++) {
    // Display from field and subject
    System.out.println(i + ": " + message.getFrom()[0]
    + "\t" + message[i].getSubject());
    System.out.println("Do you want to read message? [YES to read/QUIT to end]");
    String line = reader.readLine();
    if ("YES".equals(line)) {
    // Display message content
    System.out.println(message[i].getContent());
    } else if ("QUIT".equals(line)) {
    break;
    // Close connection
    folder.close(false);
    store.close();
    Please help me on this.
    thanks.

  • Unable to send Mail from POP account

    I have an Iphone 4 and have upgraded the IOS from 5-1 to 6.1.3. Since then I have been receiving all my mails but i have been unable to send mails from my POP account. the notification "Cannot Send Mail. A copy has been placed in your Outbox. The receipient, "xxyyzz @ gmail . com " was rejected by the server" displayed. Please Help. the same thing happens when I configure my POP account on my Son's Iphone4, and there is no problem in receiving and sending mails from my Outlook. Please Help!!!!!
    Can i revert back to IOS5.1.1?????

    Contact your email provider and get the correct settings to use for the outgoing mail server (SMTP) on a mobile device. If it's email provided by your ISP, they have likely blocked email from outside their network from relaying to prevent spam.

  • Delete mail from server

    I use a pop3 account for mail. Can I set up the mail program to delete mail from server when I delete mail locally?

    Not precisely. You can set it to delete when when you move a message from the Inbox which should have the same effect in most cases, but I haven't tested it to make sure. 
    Mail -> Accounts -> Your POP account. Go to the Advanced pane and check the box that says "remove copy from server after retrieving a message" and make the appropriate setting in the pulldown.
    Regards.

  • I am suddenly unable to open mail from the dock. dock shows mail is up and running, but stamp does not respond when clicked, and will not quit. help?

    I am suddenly unable to open mail from the dock. dock shows mail is up and running, but stamp icon does not respond when clicked, there is no mail window opened, and will not quit. when double clicked, get new mail is not an option and I get no response with other actions.
    I am retrieving mail on my phone with no problem. this just began happening, no updates or problems with anything else.
    help?

    command-option-esc keys and force quit Mail. Then relaunch.

  • Unable to retrieve tables from this connection

    I have been using Dreamweaver for over 5 years. I have been
    using an Access database and ASP the entire time. I am using a
    Windows 2000 server for the database and web site. I have used
    every verson of Dreamweaver since Ultra Dev. When I bought verson 8
    and upgraded to 8.0.2, I began getting the following message when I
    try to edit or create a recordset.
    "Unable to retrieve tables from this connection, click on the
    'Define...' button to test this connection."
    I don't know what to do. Is this a widespread problem? Is it
    a Windows problem? Is it a Dreamweaver problem? Is it a network
    problem?
    Please HELP!

    Did you ever get an answer for this ?
    I am having the same issue but using XP professional.

  • Unable to retrieve collections from the Search Service.

    Hi,
    I have a user trying to upload a collection. She gets the
    following error:
    Unable to retrieve collections from the Search Service.
    Please verify that the ColdFusion MX Search Server is
    installed and running.
    Obviously, I checked the service. It was running. I restarted
    the service. That did nothing. I restarted all the CF services.
    Didn't fix the issue. I also rebotted the server, not expecting
    that to work. It didn't.
    Checking the server logs, I see this:
    The description for Event ID ( 105 ) in Source ( ColdFusion
    MX 7 Search Server ) cannot be found. The local computer may not
    have the necessary registry information or message DLL files to
    display messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support
    for details. The following information is part of the event:
    ColdFusion MX 7 Search Server.
    Also, after talking to my co-worker more, it turns out this
    occurred right after she uploaded a new collection to the
    administrator. This link sounds similar to what I'm experiencing:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=6c6881a9
    Maybe it's a corrupt collection?
    but I don't see any errors in the log
    (:\CFusionMX7\verity\Data\services\ColdFusionK2_indexserver1\log\status.log)
    Finally, there are some errors in the Verity service, and it
    looks like the Verity service Verity K2Server (Version 2.20pr6)
    points to D:\CFusionMX\lib\k2server.exe, which doesn’t exist
    anymore because we’ve upgraded to MX7.I'm not sure if this is
    an old service left over from before we upgraded from CFMX to
    CFMX7.
    We are running CFMX7 on a Windows 2003 Server SP1 if that
    matters.
    Thanks in advance for any help.

    In the left hand panel of the ColdFusion Administrator expand
    the Data & Services link. Then select the Verity K2 Server
    link. Change localhost to 127.0.0.1 in the Verity Host Name
    textbox.
    Ted Zimmerman

  • AAE - Error -  Unable to retrieve MappingInterfaceLocalHome from JNDI while

    Hi Friends,
    We have an interface which runs in AAE.  (Advanced Adapter Engine, PI 7.1, EHP1)
    Sender is SOAP, Async Call.
    We have used the condition to determine receiver. One Receiver is SOAP (by remove proxy) and another one receiver is RFC.
    When we check the messages, in message monitoring, database overview, those are failed with error "
    Unable to retrieve MappingInterfaceLocalHome from JNDI while invoking the mapping"
    Detailed error is as below:
    Execution of mapping "http:/bigbiz.com/xi/MDM/IM_MATERIALUPDATE" failed. Reason: MappingException: Unable to retrieve MappingInterfaceLocalHome from JNDI while invoking the mapping, NamingException: Exception during lookup operation of object with name localejbs/MappingBean, cannot resolve object reference., javax.naming.NamingException: Error occurs while the EJB Object Factory trying to resolve JNDI reference Reference Class Name: Type: clientAppName Content: sap.com/com.sap.xi.services Type: interfaceType Content: local Type: ejb-link Content: MappingBean Type: jndi-name Content: MappingBean Type: local-home Content: com.sap.aii.ibrun.sbeans.mapping.MappingAccessLocalHome Type: local Content: com.sap.aii.ibrun.sbeans.mapping.MappingAccessLocal com.sap.engine.services.ejb3.runtime.impl.refmatcher.EJBResolvingException: Cannot start applicationsap.com/com.sap.xi.services; nested exception is: java.rmi.RemoteException: [ERROR CODE DPL.DS.6125] Error occurred while starting application locally and wait.; nested exception is: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5106] The application .....
    I confuse why suddenly this error comes, since it was working fine earlier. The message status is now 'To Be Delivered'.
    Can you kindly clarify friends how to fix this ?
    Kind regards,
    Jegathees P.

    Hi,
    PI 7.1 Ehp1 receiver determination can be done conditionally by selecting operation specific...
    I don't think this error is related to AAE ...looks like this error is related to server ...
    check other mappings also whether they are executed with out any error ?
    this is related to module lookup error...need to check with the basis
    HTH
    Rajesh

  • Mail won't retrieve messages from my primary Comcast account

    Apple Mail, Version 2.1 (752/752.2), downloads emails from my yahoo.com and gmail.com accounts, but it has suddenly stopped downloading emails from my primary Comcast account to my G5 iMac. I get no error messages.
    Trying to retrieve email in Apple Mail can sometimes cause the Comcast email server to classify all unread messages as read. If Mail is set to "remove copy from server right away after retrieving a message," then all of my new messages are deleted from the Comcast server before I ever see them, even though they have not been retrieved.
    Curiously, the only emails that Mail can access from my primary Comcast account are those that have been automatically forwarded from my secondary Comcast accounts. (Just out of curiosity, I tried manually forwarding a message from my primary account to my primary account; it could not be retrieved by Mail.)
    My wife and daughter, on the same hard-wired ethernet LAN, have no problem accessing their primary Comcast email accounts with Mail on their Macs (MacBook and G4 iMac). Our settings for Comcast accounts seem to be identical on all three computers.
    Perhaps coincidentally, I also have Comcast Digital Voice VoIP telephone service, and this email problem started while Comcast was troubleshooting problems with my voicemail. I use separate cable modems for phone (Arris TM402P) and Internet (Motorola SB5100).
    I've tried: 1) rebuilding all of the mailboxes in my Mail Inbox; 2) deleting all of my emails on the Comcast server and emptying the trash; 3) setting the outgoing SMTP mail server on all of my email accounts to Comcast; 4) repairing permissions and running maintenance scripts; 5) shutting down the computer overnight; 6) Comcast support -- they try, but then give up and say that they don't support Apple Mail.
    I'd appreciate any assistance.
    iMac G5 1.9GHz   Mac OS X (10.4.7)   1 GB RAM

    This problem was apparently caused by one of two things: 1) trying to use Mail with an AIM.com IMAP account; or 2) corruption somewhere in my Rules and Mailboxes.
    I had to rebuild my POP accounts from the ground up. First, I backed up Mail preferences and messages. After quitting Mail and deleting the preference file com.apple.mail.plist and the Mail folder from Users/Home/Library, I launched Mail and created new accounts and new rules.
    Prior to this issue, I had been using Apple Mail for three years to retrieve POP mail from Comcast and other accounts. This was my first experience with IMAP.
    iMac G5 1.9GHz   Mac OS X (10.4.7)  

  • HT1277 How do I make Mail remove junk/deleted messages from the server? The only option tht works for me now is the "Remove from server" button at Account Info Messages on server.

    How do I make Mail remove junk/deleted messages from the server? The only option tht works for me now is the "Remove from server" button at Account Info > Messages on server. What am I doing wrong?

    Mail > Preferences… > Accounts > Advanced > Remove copy from server after retrieving a message

  • Removal of mail from server in mail

    my Mail program will not remove mail from server when marked to do so in advanced preference settings. I have marked mail to be removed upon retrieval, but the mail sits on the server and builds up until I manually click "remove from server". What to do? Is there an update for 10.3.9 to correct this?

    Bob,
    Glad my little "0 size" discovery helped you as well!
    Here was my post from the other thread that you said helped you out:
    Marc, thanks so much for your post. The first time I tried this it did not help, (in fact I deleted quite a few "new" emails with no luck), but then remembered the ctrl-click "Get Info" command on the faulty email account inbox just to see what was going on. . . . .
    In the window that shows all the messages that are currently on the server, ALL my mail showed up, which seemed strange that it would not download it even though Mail knew it was there. I noticed, however, under the "size" column that one of the messages had a size of 0 (zero). I deleted that one, clicked "get mail" and it all started downloading! Apparently the first time I tried it I just erased the wrong messages, and managed to miss the one that was causing the problem (because it was not the message immediately after the last one successfully received as Marc suggested).
    To everyone else who is having this problem. . . do the "Get Info" command on your inbox that is having the problem and check to see if any of the messages on your server that are not downloading have a file size of "0". This was obviously a glitch on the server side, but at least I know how/where to find which message is causing the backup. Hope this helps!

  • Retrieving Mails from Exchange or from outlook 2010 using TSQL

    Hi,
    Will you please provide step by step queries to retrieve mails from directly from Exchange Server or else retrieving mails from the outlook 2010 which is connected Exchange Server.
    I have SQL Server 2012 developer edition, outlook 2010 and no idea what version of Company Exchange Server available.
    I google this solution but not successful. Mostly example i found old Exchange or SQL Server 7.0
    Thanks.

    Hi Visakh,
    Will you please assist here :
    EXEC sp_addlinkedserver 'exchange',
    'Exchange OLE DB provider',
    'exoledb.DataSource.1',
    'file:\\.\backofficestorage\localhost\public folders'
    - I don't have "Exchange OLE DB Provider"(exoledb.DataSource.1) in my Linked Server connection, from where can I download so that it can view in SQL Server Linked Servers.
    Will you please let me know the path('file:\\.\backofficestorage\localhost\public folders'), what exactly it is. Is it .pst/.ost file location.
    Thanks.
    Best Regards
    Kashif Chotu

  • How to retrieve mails from outlook or hotmail?

    Hello all,
    How do I retrieve mails from hotmail or outlook using javamail. I am very new to javamail. Please give some idea.
    Thanks,
    mamata.

    sorry u can't.
    not from hotmail because u don't know the server address of hotmail.
    and not from outlook b'cause that is yet another Mail Transfer Agent like Java mail API.
    hope that helps.
    bye

Maybe you are looking for

  • Alternatives to iTunes music syncing for the Pre

    Now that Apple has closed the door on syncing with their iTunes (for those that do upgrade past 8.2), let's discuss alternatives.  After this happened yesterday, I've seen other alternatives such as:  Reverting back to a version that works:  http://w

  • MBA won't connect to the internet

    I am having a problem that I cannot figure out. I've searched Google as well as the Apple discussion boards, and I have found nothing that addresses my problem. Yesterday, I was able to turn on my airport in my iMac (which is connected to a cable mod

  • PowerBuilder connectivity with Oracle 9i or 10g

    We are working on a project that involves migration of data from Informix to Oracle 9i/10g. The application is built on PowerBuilder 6.0. We need to have the application continue to run in PowerBuilder 6.0. We are trying to find out if necessary driv

  • Custom Info Panel as Bridge MetaData Panel

    Hello, I have built a Custom XMP InfoPanel that shows up in CS6 Bridge just fine! But for ease of data entry we want it to show up in the Bridge MetaData panel. How is this done with the latest best practices? I have looked everywhere found a number

  • Setting response HTTP status code

    Hi all, it's possible to set a response HTTP 202 status code for Axis? Thanks Pasquy.