Help getting POP e-mail client to behave

I just moved over to an iPhone after years of being an Android user for many years.  The only thing I feel like I'm missing is getting the mail client to behave the way it did on Android.  On Android I used a program called K-9 Mail and it did an excellent job of synchronizing the inbox on the pjhone with my POP e-mail server.  Here's how it behaved:
Download messages from the server to the phone, they stayed on the server but were marked as read.  This is standard and seems to be behaving the same.
Delete a message on the phone.  It was deleted on the server immediately.
Delete a message on the server or download messages from the server to my PC which deleted them from the server, they were deleted from the phone on the next synch.
I can't seem to get this level of synchronization with any iPhone clients.  I've used the stock Mail client as well as tried Sparrow.  Can someone tell me if I'm just missing a setting somewhere?  Thanks very much.

Not sure how this was done with your android since what you are asking does not fall under the standards for a POP account. Nothing is synced with the server with a POP account. When accessing a POP account with more than one email client, new email downloaded and read with one email client will be downloaded as unread mail with the other email client and vice-versa.
If the email account provider supports IMAP account access, I would make use of that.

Similar Messages

  • Help me for Programming Mail Client and Mail Server

    I need help on programming mail client.it is totaly new topic for me.
    and i hope some one experienced would surely help me.
    thanks

    Download mail api, it comes with tons of examples
    http://java.sun.com/products/javamail/
    amgandhi said it all... go download it ya lazy sack

  • How do i get keychain off my computer!?!?! Ive tried absolutely everything, keychain won't reset itself. Ive done everything anyone has suggested in apple support. Keep getting pop ups, mail won't work any more, i can't do ANYTHING.

    Every time i log into my computer, i get bombarded with pop ups asking me for numerous passwords, i enter the CORRECT ones in for my email accounts and they keep coming up, i cant do anything to get this off. Keychains suck i dont know why anyone would have made these.
    I go to the keychain preferences in finder and i try to unlock the local items keychain but it wont because i dont know the password, ive tried any password it could possibly be and it wont go through. I also cant reset it becasue it says "invalid aegument" every time i try to do that in First Aid.
    Everything anyone has said to do wont help. I cant even get my mail accounts to come online but they still work in my phone. I even downloaded the newest version 10.9 or whatever and it doesnt work. My mail accounts are all screwed up, so is icloud, and messages app i cant even use it. ive restarted my computer a million times so dont suggest that either.
    Oh and for those of you who are going to tell me to go to /library/keychain or anything like that, my computer says that the file or folder doestn exist.

    Please follow the directions in this support article. If there's no change, see below.
    Back up all data. Open the iCloud preference pane and uncheck the Keychain box. You'll be prompted to keep or delete the keychain items. Choose to delete and confirm. Then re-check the box. Follow one of the procedures described in this support article to set up iCloud Keychain on an additional device. Test.

  • Need help from ecperienced sup (mail client) users

    Hi there.
    I'm just trying to set up an encrypted mailing list on my Raspberry Pi. Therefore, i wanted to use sup. The scenario is the following:
    I register an E-mail adress with some Provider (e.g. gmail, doesn't matter, since all emails will be encrypted). I then install sup on my raspberry pi. I configure sup to get new mail every minute or so. Now here's the difficult part:
    The E-Mail received will be encrypted, with the gmail adress' public pgp key. I want sup to decrypt the message, then forward it to several persons after reencrypting the mail with their public keys. I know that this is not the intention of sup, but so far, sup is the best suited program i found. If anyone could tell me how to configure sup so it does what i described, or if anyone knew a program or set of programs, that are more suited for this, i would be very grateful if you told me!
    Cheers,
    Gasp0de
    PS: I think i probably need to use those hooks that sup has, i'm still reading about that stuff.
    Last edited by Gasp0de (2013-12-20 15:34:46)

    Well, sup does work well with pgp. I've seen tutorials for using PGP with it, also including per-recipient rules (but haven't had the time to read them yet). So the main thing i'm asking for is how to create some rule to automatically forward incoming email to a list of recipients (preferably without adding anything like FWD in the subject, and/or email headers in the content). Decrypting/Encrypting incoming/outgoing mail shouldn't be too difficult.
    Gasp0de
    PS: Before anyone expresses security concerns, i am aware that this scenario is not a practical solution for any hosted services, as the email will at some time be available in cleartext on the server, but as i'm running the Raspberry Pi at home, and all listmembers trust me (as i will also be on the list) this shouldn't be a problem. I'd be interested in additional security concerns with my scenario!

  • I cannot access my email on i-pad or i-pod, get pop-up mail server not responding I have a problem with computer internrt

    I cannot access my email on i-pad or i-pod keep getting message server not responding although I am connected

    You need to go to options and switch back to classic

  • How do I build a mail client?

    Hi,
    I need help with building a mail client. I have already done some of the coding but i'm finding it diffcult as i'm new to java programming. I'm trying to build a mail client to send and receive email using javamail. The problem i'm having at the moment is that everytime I click on the send button I get an error message saying (java.net.ConnectException: Connection timedout: connect). Here is the code:
    Note: Many of the codes are generated because i used netbeans. I need help please.
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.IOException;
    import java.util.Date;
    import java.util.Properties;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    import javax.swing.JOptionPane;
    ** To change this template, choose Tools | Templates*
    ** and open the template in the editor.*
    ** New_Message.java*
    ** Created on 10-Nov-2009, 19:55:18*
    ** @author Haruna*
    *public class MessageWindow extends javax.swing.JFrame implements ActionListener{*
    */* EmailClient emailClient;*
    public static final int NEW = 0;
    public static final int REPLY = 1;
    public static final int FORWARD = 2;/*
    private String to, content, subject, host;
    private Session session;
    */** Creates new form New_Message */*
    public MessageWindow(/int type, Message message*/) throws MessagingException, IOException {*
    */* super("");*
    *switch(type){*
    default:
    setTitle("New Message");
    break;
    case REPLY:
    *// sets the address to Reply*
    setTitle("Message Reply");
    to = message.getFrom().toString();
    *// sets the message subject*
    subject = message.getSubject();
    *if (subject != null && subject.length() > 0) {*
    subject = "RE: " + subject;
    *} else {*
    subject = "RE:";
    *// Get message content and add "REPLIED TO" notation.*
    *content = "\n----------------- " +*
    *"REPLIED TO MESSAGE" +*
    *" -----------------\n" +*
    emailClient.getMessageContent(message);
    break;
    *// Forward message.*
    case FORWARD:
    setTitle("Forward Message");
    *// Get message subject.*
    subject = message.getSubject();
    *if (subject != null && subject.length() > 0) {*
    subject = "FWD: " + subject;
    *} else {*
    subject = "FWD:";
    *// Get message content and add "FORWARDED" notation.*
    *content = "\n----------------- " +*
    *"FORWARDED MESSAGE" +*
    *" -----------------\n" +*
    emailClient.getMessageContent(message);
    break;
    initComponents();
    public String getFrom()
    return fromField.getText();
    public String getTo()
    return toField.getText();
    public String getSubject()
    return subjectField.getText();
    public String getContent()
    return contentArea.getText();
    */* public String getHost()*
    public void sendMessage()
    *try {*
    *// Initialize JavaMail session with SMTP server.*
    Properties props = new Properties();
    props.put("mail.smtp.host", smtpField.getText());
    session = Session.getInstance(props);//.getDefaultInstance(props, null);
    *// Create a new message with values from dialog.*
    Message newMessage = new MimeMessage(session);
    newMessage.setFrom(new InternetAddress(fromField.getText()));
    newMessage.setRecipient(Message.RecipientType.TO,
    new InternetAddress(toField.getText()));
    newMessage.setSubject(subjectField.getText());
    newMessage.setSentDate(new Date());
    newMessage.setText(contentArea.getText());
    *// Send new message.*
    Transport.send(newMessage);
    *} catch (MessagingException e) {*
    *//e.toString();*
    showError(e.getCause().toString(), false);
    *// Show error dialog and exit afterwards if necessary.*
    *private void showError(String message, boolean exit) {*
    JOptionPane.showMessageDialog(this, message, "Error",
    JOptionPane.ERROR_MESSAGE);
    if (exit)
    System.exit(0);
    /** This method is called from within the constructor to
    * initialize the form.
    * WARNING: Do NOT modify this code. The content of this method is
    * always regenerated by the Form Editor.
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">
    private void sendButtonActionPerformed(java.awt.event.ActionEvent evt) {                                          
    // TODO add your handling code here:
    sendMessage();
    * @param args the command line arguments
    public static void main(String args[]) {
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    //int type = 0;
    // Message mess = null;
    MessageWindow mw = null;
    try {
    mw = new MessageWindow();//type, mess);
    } catch (MessagingException ex) {
    Logger.getLogger(MessageWindow.class.getName()).log(Level.SEVERE, null, ex);
    } catch (IOException ex) {
    Logger.getLogger(MessageWindow.class.getName()).log(Level.SEVERE, null, ex);
    mw.setVisible(true);
    public void actionPerformed(ActionEvent e) {
    throw new UnsupportedOperationException("Not supported yet.");
    }

    Fortunately most of that randomly-bolded stuff you posted is irrelevant. And the one line which is relevant isn't helpful.
    You'll want to make sure that the server you're connecting to (the mail.smtp.host property) is actually running an SMTP server, and that you can connect to it and that there isn't a firewall or anything blocking you.
    And you should read the JavaMail FAQ. There's a whole section in it about this question and other sections about other questions you are going to have.

  • Mac Mail client sent messages not on iPhone (Yahoo mail)

    I have been having this issue for a while now and it's driving me crazy. Whenever I send a message on my Mac Mail client (using 2010 MacBook white unibody), the sent message does NOT show on my iPhone 5 in the mail app sent folder. I have tried everything I could find to fix this. The Mac Mail settings are set to save the emails on the server and it's set up on Mac Mail as IMAP. My outgoing mail server on my iPhone is set to Yahoo SMTP server.
    Strangely enough, emails I send from my iPhone DO show in the sent box on my Mac Mail just not the other way around. Anyone have any insight?

    Hi there,
    I have the same problem. I kept a watch to see what was happening exactly when I send the mail, and this happened right in front of my eyes: The mail goes and leave the outbox.. it goes into the 'sent' mailbox.. and after a few minutes , it disappears and goes into the trash. It happens not on all mails, but randomly on a few..
    After some research, I came to find this and was exactly the problem:
    http://discussions.apple.com/thread.jspa?threadID=2339555&start=15&tstart=0
    it appears that the client 'mail' has a problem in the synchronization with Imap, or any related accounts that is to be synchronized with a distant server account.
    I don't know why Apple is not doing anything because this problem appears for some time now, and mail is getting the worst mail client on the market (can't even protect an account with an access pwd to prevent mails from being seen on a shared mail client ) It would be time that Apple really upgrades the most basic and necessary soft on a computer.

  • Can I set up a Non .mac Email Pop mail client Alias for sending SMTP mail?

    I have a yahoo.com POP mail account - [email protected] When I'm lgged into Yahoo mail, this account can receive and send mail from serveral aliases - [email protected], [email protected], etc.
    Using Tiger's mail.app, I can log into the Yahoo smtp server and get all my mail, including mail to the alias names.
    I would like to be able to reply from my Mac's mail.app account, using one of the aliases, instead of my POP account name. In other words, I'd like the From field be listed as "[email protected]" and not "[email protected]"
    In mail.app (v2.1) is there any way to do this?
    Alan Sampson' suggestion doesn't work - when I set the From field to the alias name, it looks like mail tries to login to the yahoo SMTP server under the alias, and it gets rejected.
    ( - see http://discussions.apple.com/thread.jspa?messageID=2603372&#2603372 )
    Go to Mail > Preferences > Accounts and under the Account Information tab for the primary email account preferences, enter all alias email addresses in the Email Address field for the account separate by a comma.
    [email protected], [email protected], [email protected]
    MacMini - 1.42   Mac OS X (10.4.7)  
    MacMini - 1.42   Mac OS X (10.4.6)  
    MacMini - 1.42   Mac OS X (10.4.7)  

    If Yahoo allows this, it should work. Open Mail Help, type alias in the search box, and read the article titled Adding multiple email alias addresses to an account. Could it be that you're trying to put the aliases in the wrong field (i.e. User Name rather than Email Address)? Or maybe it's Yahoo's SMTP server that doesn't allow you to do this?

  • Outlook (former Hotmail) Forum says I need to get a "Mail Client" that works with 10.4.11

    Hello Apple Friends:
    I have a PowerBook G4 still running Tiger 10.4.11.
    Unfortunately, due to virus concerns and spam at work, I have had to use non-apple mail such as Hotmail for well over a decade now.  Not a problem!  Mac works fine.  But the folks over in the "Microsoft" (delete that word after reading it) group felt their Hotmail was too old fashioned and jazzed it up and are calling it Outlook now.
    And Hotmail/new Outlook no longer works like it did before on the Tiger OSX of course!
    After over a month and reading dozens of Emails (about 20 which I sent myself) to various Forums and help groups, the latest "advice" is that I go searching for an "old style" "Mail client" whatever that is.... that will work with Tiger 10.4.11.  And install and transfer it somehow, hopefully without losing or deleting 17 years of contacts and Email, transfer over to using it for my Outlook (I looked at some others who have the great modern Mountain Lion etc OSX systems and read their posts about this and they had significant problems using the new Outlook too.
    Problem is, I deal with many very stubborn people who are just not going to spend the time and effort needed to "convert" my "hotmail" address into anything new to replace it, not even counting how many weeks of effort, missed emails messed up communications this will entail and last far into 2014 I'm sure.
    The best hope is that someone knows of a "Legacy" site with older mail clients on it (or even older browsers than my Safari 4.1.3 in case someone thinks that is the problem (I also tried it with Firefox, but only can have up to 3.6.28 and TenFoxFour is not highly recommended as it creates unstable computers occassionally)
    So I'm caught in the middle trying to upgrade older Mac and without the funds needed to purchase one that has Intel Chip in it for use with something higher than Leopard so I can use the Hotmail/Outlook again.
    Sorry for long message, but I wanted to cover all the bases in case someone is searching the data base of the Forum in later months, and hopefully someone else here has has similiar total frustration with trying to continue using the  "M--------" free Email product.
    While I'm on the topic, I wondered if the .Mac was an Email client?   I had it once but long ago subscrption elapsed and got notice that it became "mobile me" or something like that....just covering all the bases since Apple has so many more choices.
    Thanks for reading all of this complicated (you should only see the other Emails!) question. (sorry products and username are wrong for this message can't get the hang of editing them "before" I think of writing the message!).

    Hi BDAqua:
    Just catching up to your earlier suggestions so hope this is not taken as anything less than the excellent advice and fantastic support you have given me here..
    I cannot use the current edition of Sea Monkey  2.17.1  as  System Requirements are : 10.6 Minimum, and I have Tiger 10.4.11 max in "non-Intel"  G4
    Note also that reading details (I always do)  I cannot just jump to that one if I could or wanted to as too old a Sea Monkey at 1.1.19.  They say to upgrade to 2.0 first, then reset the "profile" page  (does anyone remember my password or even what Email I used back in 2004??)  before moving on to upgrade  (use it at least once in new profile of course!)  
    So I copied them first here for anyone else's information:
    System Requirements, Installation and Uninstallation
    Before installing, make sure your computer meets the system requirements. SeaMonkey 2.17.1 will no longer offer to migrate your data from SeaMonkey 1.x or Mozilla 1.x at the first start after installation (bug 689437). In order to upgrade from such an old version, install the last SeaMonkey 2.0 release first, do the one-time profile upgrade, uninstall SeaMonkey 2.0 and then install your target release (e.g. this one).
    You can find more details about installation, profile data and uninstallation in our install and uninstall document.
    Here are the specifics of Minimum Requirements of Sea Monkey 2.17.1  version:  
    Mac
    Operating Systems
    Mac OS X 10.6 or higher
    Minimum Hardware
    Macintosh computer with an Intel processor
    200 MB of free hard drive space
    Older System Sea monkey 2.0 requirements are ::
    Mac
    Operating Systems
    Mac OS X "Tiger" (10.4)
    Mac OS X "Leopard" (10.5)
    Mac OS X "Snow Leopard" (10.6)
    Minimum Hardware
    Macintosh computer with an Intel x86 or PowerPC G3, G4, or G5 processor
    256 MB RAM
    200 MB of free hard drive space
    But.....  Caution signs are EVERYWHERE not to download or use this anymore.....
    (I know my 1.1.19 is  really old but so old no one bothers with it anymore??  but newer ones may have huge security loophole for viruses etc....
    Sea Monkey 2.0.14 Warns:
    Released April 28, 2011
    WARNING! The SeaMonkey version available for download from this page is outdated and suffers from known security vulnerabilities. This page is only available for historic reference.
    We strongly advise you to download the current release instead.
    So I'm sorry if I could not follow your instructions and get a better Sea Monkey Experience as well.....  I'm just using existing one as another browser in addition to the newer ones provided as I use them for different purposes, i.e. Sea Monkey can be great for just interrupted "look ups" on google, etc of a quick definition and then closing it, so nothing complicated, no Java/Adobe Flash ads requirements, etc in and out that's all. 
    Then I can leave my major browsing and using Email Hotmail/Outllook which prompted this whole exploration of solutions for the two brand new browsers TenFourFox and OmniWeb..
    Thanks again to everyone!  I replied to everyone below in addition to this reply above to BDAqua....

  • 10.5.1 POP and Other Mail Clients

    Does anyone else have problems with the Leopard Mail server and POP clients? For some reason, any client other than Mail.app does not work with POP, but they do with with IMAP. Thunderbird, Outlook, and even Yahoo and Gmail's POP clients do not work. The user logs in, and it looks like they have no new mail. In fact, there is mail and if you login via IMAP or with POP on Mail.app you will get it. This is a frustrating problem and I was hoping someone had an answer. This was a clean install of 10.5.1 server and migrated data from a 10.4.11 server.

    You are not alone. I have started a current thread because of the same problem, http://discussions.apple.com/thread.jspa?threadID=1278072&tstart=0.
    Another thread ended with the poster claiming to have things working after a clean install, but I have had no such luck with any of my installations so far.
    Do you have only one domain on your server, or are you hosting virtual domains also?
    /Lars

  • TWC Roadrunner "get mail" button not working in Mail client

    Roadrunner "Get Mail" button doesn't work in Mail client 10.4.6 on iMac Intel dual core running 10.6.8 . Activity bar shows 100's of emails downloading, but none appear in inbox.  sent and draft mails box updates normally. outgoing emails send normally. web version and iPhone Mail inbox work normally and showall incoming messages.  Preferences reset per TWC -  updated user names, servers, password etc.  Incoming and outgoing servers on desktop changed to "mail.twc.com" Ports correct.  Restarted computer, no help.  Connection doctor shows computer accesses internet and mail server.  memory capacity 65% of allowable by TWC.  Any suggestions appreciated. 

    *Mail client 4.6

  • Help! My outgoing mail has the image of pink lips in the upper right-hand corner.  I did not put it there; it is fun but not exactly professional!  How do I get rid of it?

    Please help!  My outgoing mail messages arrive with an icon of pink lips in the upper right-hand corner.  I have no idea how it got there.  This is cute but not really professional. Does anyone know how I can get rid of it?  Thanks!

    It's been almost three years since I bought and set up my most recent Mac but if I recall correctly .....
    When you initially set up your Mac, you were offered the opportunity to snap a photo of yourself in order to associate your photo with your user account on the computer. If you declined the photo I think the Mac will pick or suggest a picture from the preinstalled selections in the accounts pane of the system preferences. You can change the picture but you cannot delete it totally. That picture is part of your ID for that user account on the Mac.
    If you want to change it, Open System Preferences and click on accounts. Click on your account to change the picture. You will have to unlock the preference in the bottom left corner - and to do that - you need to enter your password. Click on the picture of the Eagle and then all of the preinstalled photo choices pop up in another window. Select another photo and then clcik the lock icon again when you are done.

  • TS3276 how to get gmail messages without delay on OS X 10.9.1 mail client

    I have OS X 10.9.1 with 4 gmail accounts in the mail client. I noticed that mails come with delay for several minutes and even hours. Click on "Get mail" doesn't help. Connection doctor shows all accounts in green. `on my iPhone I got messages imidiately. Any idea how to solve it? Have I missed some option?

    I have OS X 10.9.1 with 4 gmail accounts in the mail client. I noticed that mails come with delay for several minutes and even hours. Click on "Get mail" doesn't help. Connection doctor shows all accounts in green. `on my iPhone I got messages imidiately. Any idea how to solve it? Have I missed some option?

  • Help: POP Yahoo mail redownloading EVERYTHING

    Hi,
    When I installed Leopard with a fresh copy and setup my Apple Mail with Yahoo (via pop) all my messages began to download and were mark unread. Of course this was a hassle to go through each email again, but that's what you get with POP. Since then, everything has been sorted out, however, for no apparent reason today my Apple Mail client began redownloading EVERYTHING! What happened? Is there anyway to tell Apple mail to stop?
    Thanks,
    TM

    I have the same issue. With Yahoo, with Leopard and with Tiger. Now and then Mail wants to re-download all of the Yahoo emails - and right now there are 15000 or so.
    There is no way to stop it - so I created a mail rule to filter everything older than a week into a "yahoo and mail screwed up again" folder. This is not a solution, but does solve one symptom. It does not solve the use of bandwidth issue though, and I do not want to delete my Yahoo emails as they make a handy backup.

  • POP/IMAP .. confused mail client

    I recently got a new mac and have apple mail 3.3 on it. every time i
    send a message through Google Apps webmail, it automatically sends a copy to my
    mail client. This did not happen with previous versions of mail and I
    have no idea is it a new google feature or a new apple mail feature. I
    know that's supposed to happen in IMAP but Apple Mail clearly says its
    a POP mailbox.. any ideas... would be immensely helpful..

    Check the settings on line at GMail. It may be set to BC you. Apple Mail will do that also if that option is selected in Mail preferences.
    On the GMail page click on Settings and then go to Forwarding and POP/IMAP.
    Good Luck

Maybe you are looking for