OS2 Messages program - deleting messages from server

The email client is deleting messages from the server - even though keep messages on server is "on".  This is a big issue for those of us who download messages to our pc's.

Ive been playing around with a test account. 
Upon first setting up the account on the PB, I have the "keep messages on server" set to ON.  I then checked the mail and it downloaded onto the PB.- then checked the server via webmail and the messages were gone from the inbox.. 
I then turned the feature OFF in the PB and checked mail again.  After that, I turned  the feature back ON and the mail stayed on the server afterward.  
I'm not sure why this is - but it occurred with every new account I set up on the PB.

Similar Messages

  • "Delete messages from server" Mail iPhone 5

    Hi, I am trying to locate "delete messages from server" option in Mail Settings on iPhone 5 and can't find it. In iPhone 4 it was just in the Advanced settings but it is not there in iPhone 5. Help please? Thanks

    Not sure who your email provider is. Mine is hotmail. When you set up email with hotmail on an iPhone 4 the delete from server never is available. I just got an iPhone 5, i reset up my hot mail account and can't find that setting either. I set it up by using the hotmail button not "other" so meaning delete your hotmail account from your phone. Then re set it up. But when you do add email account, don't use the button that says hotmail. Use the bottom choice that says "other". I have no idea why this is different but if you do this it will set up hotmail just the same. But now that setting is there. The "delete from server" and you set it to "never". Now when you delete the emails from your hot mail account on the iPhone, it leaves that email on the hotmail server. So when you look at email on the computer it's there still. It's good this way if you share email with someone.

  • Move messages from server

    Does anyone know how to move messages from the server to the local machine?
    This is an IMAP account hosted at pair.com and I am over my allotment. Thanks.

    Michael Spencer wrote:
    Does anyone know how to move messages from the server to the local machine?
    You would start by clicking on the "plus" sign at the bottom of the list of mailboxes and choosing "New Mailbox" with the choice of "On My Mac". Then drag messages from server mailboxes to the new mailbox. If those messages also remain on the server, you'll have to delete them from that mailbox.

  • 'Cannot obtain error message from server' when trying to use ODBC

    Post Author: Grant C
    CA Forum: Data Connectivity and SQL
    Hi, I'm developing some reports using Crystal XI on my local PC, using an Oracle 10i back end on a separate server.  The SQL for the report is in a method in an oracle package.
    When I set the datasource location, selecting 'Oracle Server' then entering the details works fine, and the report runs.  However, when I try to use an ODBC connection I get the following error:
    Database Connection Error: 'Cannot obtain error message from server.'
    The ODBC link is set up as a System DSN, which works fine when I test it.  I think I need to use ODBC as some of the reports (which I inherited) seem to fail when run on the Crystal Server, and it seeme to be the ones set up with ODBC which work.
    Any thoughts?  Thanks.

    Hi Mars-
    It sounds like your NI-DAQ installation may have become corrupted. I would suggest uninstalling and reinstalling the DAQmx 7.4 driver to correct this problem and ensure that you're up to date. This download is available here: NI-DAQ 7.4
    If the problem persists you may want to uninstall and reinstall LabVIEW and then NI-DAQ in that order. The error message will usually give an indication as to which VI the error occurred in. Please let us know which VI is failing if you're unable to avoid the error with these suggestions.
    Have a good day-
    Tom W
    National Instruments

  • How to send Subtopic Message From Server-Side to Client ?

    I’m new at flex and i have a new question about Flex
    Message Service.
    How to send messages from Server-Side Java Code with
    Subtopic?
    For example.
    I customed a Flex Message Adapter in Tomcat Server , with
    this Adapter , i can send message to Client with following code .
    ---------------------Send message to Client------------
    MessageBroker msgBroker =
    MessageBroker.getMessageBroker(null);
    String clientID = UUIDUtils.createUUID(false);
    AsyncMessage msg = new AsyncMessage();
    msg.setDestination("CustomMsgServiceDes");
    msg.setClientId(clientID);
    msg.setMessageId(UUIDUtils.createUUID(false));
    msg.setTimestamp(System.currentTimeMillis());
    msg.setBody(clientID + "this is my message from server! \n");
    msgBroker.routeMessageToService(msg, null);
    ---------------------Send message to Client------------
    But i want send a message that have Subtopic to the Client ,
    How to do ?
    Thank you for reply.

    There's a white paper that talks about this subject -
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=8f1eb6ea

  • How can i dispaly an Error Message from Server Side To form

    Hi All,
    How can i dispaly an Error Message from Server Side To form side .
    i try several ways nothing succed.
    i put the error in stack and after call the procedure from form i added
    Qms$Trans_Errors.Display_Messages;
    and because it is an error not informantional error the error screen displayed and enter
    in infinite loop acts like flashing .
    can any one help me please i use C/S Headstart6i and Designer 6i
    thanks alot
    radi

    hi,
    thanks alot lauri.
    yr code work only using information message but in error message its still the same .
    the error window still flash and enter in infinite loop of executeing the same triggers.
    thanks again
    radi

  • How can I show message from server?

    Has anyone idea, how can I show message from server? I want to show message after some files are uploaded via FTP.

    Hi,
    You can use OPEN DATASET for this purpose.
    Try this code:
    <b>****************************************</b>
    Data:
    A_FILE TYPE RLGRAP-FILENAME,   "Application server
    P_FILE TYPE RLGRAP-FILENAME.   "Presentation server
    DATA: BEGIN OF ITAB OCCURS 0,
    LINE TYPE STRING,
    END OF ITAB.
    DATA: FILENAME TYPE STRING.
    FILENAME = P_FILE.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                = FILENAME
      TABLES
        DATA_TAB                = ITAB[]
      EXCEPTIONS
        FILE_OPEN_ERROR         = 1
        FILE_READ_ERROR         = 2
        NO_BATCH                = 3
        GUI_REFUSE_FILETRANSFER = 4
        INVALID_TYPE            = 5
        NO_AUTHORITY            = 6
        UNKNOWN_ERROR           = 7
        BAD_DATA_FORMAT         = 8
        HEADER_NOT_ALLOWED      = 9
        SEPARATOR_NOT_ALLOWED   = 10
        HEADER_TOO_LONG         = 11
        UNKNOWN_DP_ERROR        = 12
        ACCESS_DENIED           = 13
        DP_OUT_OF_MEMORY        = 14
        DISK_FULL               = 15
        DP_TIMEOUT              = 16
        OTHERS                  = 17.
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    OPEN DATASET A_FILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    LOOP AT ITAB.
      TRANSFER ITAB-LINE TO A_FILE.
    ENDLOOP.
    <b>*****************************************</b>
    Hope this helps,
    Regards,
    Pragya

  • Database Connector error: 'cannot obtain error message from server'

    I am using Oracle stored procedures and I have used IN parameters for input and INOUT parameter of REF_CURSOR TYPE for returning resultset in Crystal Report 2008 by using package. Now when I am trying to add the package in the Crystal Report, parameter input box prompts, I enter some values and gets Database Connector error: 'cannot obtain error message from server'.
    But when I do not use INPUT parameters and use OUT parameter of REF_CURSOR type it runs well without any issues.
    We are using ODBC connection for Oracle.
    Kindly suggest.

    Hello,
    Search the Knowledge Base for "oracle store procedures" and you'll find a document on how to write a SP so CR can use them.
    Thank you
    Don

  • Invalid authorization specification,  message from server

    I am new to JDBC, and Java. I'm trying to connect MYSQL database with the following code, i compiled and execute jdbcExample (using JCreator). It giving me this error:
    Exception: Invalid authorization specification, message from server: "Access denied for user: '[email protected]' (Using password: YES)". I have full access granted to the mydb database. Please advise. Thanks!!
    package BeanDir;
    import java.sql.*;
    public class jdbcExample {
    public static void main(String args[]) {
    Connection con = null;
    try {
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    con = DriverManager.getConnection("jdbc:mysql://myintranet/mydb?user=slai&password=mypasswd");
    if(!con.isClosed())
    System.out.println("Successfully connected to MySQL server...");
    } catch(Exception e) {
    System.err.println("Exception: " + e.getMessage());
    } finally {
    try {
    if(con != null)
    con.close();
    } catch(SQLException e) {}

    When setting up users it is possible to restrict access by ip. You may have full priviledges as 'slai@localhost" but not as '[email protected]' . Check the user tables and see.

  • 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.

  • Delete mail from server when deleting from mail

    I like Mail.
    But - the ONE feature I miss from Entourage is this:
    Delete mail from server when deleting the trash
    Mail can be set to delete messages from the server -- after downloading to the local computer. OK - BUT - I read my email from 3 computers. I want to keep the messages on the server - unless I delete them after trashing - and to read them on 3 computers.
    The BEST way is to delete when I trash them -- NOT when I read them.
    Using the mail program to see all messages on the server and to then delete them one-by-one is a major PITA.
    How can I tell Apple to add this feature?
    Dick
    Dual 2.7 G5, intel iMac, 3 G4 Macs, 2 iPods   Mac OS X (10.4.6)  

    Use the "When moved from Inbox" option that should do it. If you trash it then it goes, if you move it goes... HTH
    Siberian

  • Deleting email from server

    I have had email from my ISP (Plus.net) that I'm over their "email limit"
    Apparently after I download the emails to my Mac they are not being delted from the server.
    So I try to google an answer and they say "Go to Preferences > Account > Advanced and select the third option "delete email from server" or some such.
    However... when I go to Preferences > Account > Advanced etc no such option exists
    I have "Keep copies for offline viewing" - the exact opposite option and doesn't help me at all!!!
    If I select "don't keep copies" the whole inbox disappears!!! And I'm thinking: what is the point of an app that deletes all its data?
    Anyway I only have a few days before Plus.Net kicks me off their service...

    Imap accounts should be in sync with their server (the website) so anything you delete from Mail should be deleted from the website. Yours appears not to be working.
    Check whether (in Mail) 'Store Deleted Messages on Server' is selected or not.
    Mail>Preferences>Accounts>Mailbox Behaviour

  • The past few days my Mail app has started downloading multiple copies of e-mails from all pop servers.  This is only happening on my Macbook not other macs.  Deleting mail from server does not help. I ran ClamXav found 2 viruses deleted problem continues

    opps.  Long title there... The past few days my Mail app has started downloading multiple copies of e-mails from all pop servers.  This is only happening on my Macbook not other macs.  Deleting mail from server does not help. I ran ClamXav found 2 viruses deleted those.  Checked for software update and installed suggested downloads.  Problem still contintues.  Any suggestions?

    Folks,
    even after having repaired the inbox folder under "properties" a few times, I still had some e-mails where the contents are different from the subject line.
    In other words in the inbox there are two e-mails: one with subject line "abc", and another one with subject line "def".
    When I display the e-mail with the subject line "abc", the contents are from the e-mail with the subject line "def" in the in-basket.
    What else can be done to correct this problem?
    Thanks and best regards.
    Fred Kunz-Shirzad
    Chemin Ronzeures 6A
    1297 Founex VD
    Switzerland
    [email protected]

  • Redundant folders created in root of C drive of server and Client . I want to stop the same and want to automatically delete them from server and client .

    Redundant folders created in root of C drive of server and Client . I want to stop the same and want to automatically delete them from server and client .
    Please let me know the solution to delete them not manually . It should not create automatically .Is there a way we can change the path of creation.
    Is there a way that once the folfer is create should be automatically deleted once the task is done.
    Redundant folders are created in the root of my C drive all the time,
    folder names look like:
    09b0508d0bd2dbd70523
    56f51b81c1462bb378009ee4d5ed03
    02afe4378371907aca40ab

    This is a duplicate of
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/ae99c2d0-8dea-4c5e-8a79-17e08e9e5de4/sccm-2012-issue-folders-with-long-guid-are-created-in-c-drive?forum=winservergen#ae99c2d0-8dea-4c5e-8a79-17e08e9e5de4
    Jason | http://blog.configmgrftw.com

  • Delete message from server after download.

    Hi, I'm normally use to Gmail and so haven't used an email client in years.
    I have a .mac account and Mail is setup to check it.
    At the moment, when mail downloads new mail from the server, it still leaves a copy of the email(s) on the server.
    Instead what I would like it to do is, download from the server and then delete the copy on the server.
    ... is this possible?... and how do I do it?
    I'd appreciate any help at all.
    Nick.
    iMac 24inch   Mac OS X (10.4.8)   2.33Ghz Intel Core Duo / 3GB DDR2 SDRAM / 250GB HD / NVIDIA GeForce 7600GT 256MB

    Hello Nick.
    If this is for your .Mac account, a .Mac type account is really an IMAP type account and behaves in the same way.
    You can create/access a .Mac account with the Mail.app as a .Mac, IMAP or POP type account and as an IMAP or POP type account with other email clients.
    If you plan on accessing your .Mac account with another email client or via webmail access on another computer, you may want to reconsider.
    If not, to change the account type of an existing account with the Mail.app requires deleting and recreating the account.
    If you want to save any sent messages with the account before doing so, create an "On My Mac" location mailbox and transfer all existing sent messages from the account's Sent mailbox to the user created "On My Mac" location mailbox. Deleting an account has no affect on messages that remain on the server.
    Delete and re-create your .Mac account selecting POP as the account type when re-creating the account.
    After doing so, go to Mail > Preferences > Accounts and under the Advanced tab for the account preferences will be the available settings for removing messages from the server when downloaded.

Maybe you are looking for

  • Problem building applicatio​n using Report Generation Toolkit, LV 2011

    I'm using LabVIEW 2011 under Windows 7. I tried to use Application Builder to create an executable from a large body of code. One thing the application does is load VIs into a subpanel and run them. Application Builder created the executable and gave

  • Event Creation in UCCX

    Hi, I am using UCCX 10.0 with Premium License. I have both Inbound and Outbound. For Outbound calls, i have to popup the details of customer. I created a HTTP event in the workflow for that in Ringing Event and is working fine. But i need to popup th

  • Is there any IDE for compiling/debugging FlasCC apps?

    I want to use FlasCC for a large project, but I have no experience with GDB. Is there an IDE for FlasCC out there so I can do the compiling/debugging things (mostly debugging)? Or could anyone tell me how to configure one (like eclipse)?

  • InDesign won't open, help me!!

    I am doing some work for college in which I have to add text to a tif file in InDesign but for some odd reason when I click on the icon on my desktop it comes up with a message saying that it won't open, does anyone know why?

  • Printing multiple employees on a page...!

    Hi Experts, A standard HR ALV report when executed for printing. It is printing details of an employee in a new page altogether. Consider if there are 100 employees then the details of which are printed in 100 pages. I want multiple employees to be p