How can I read my email on two computers?

I have two iMac's and want to read my e-mail from both computers.
I have a shared network drive that can contain all the data.
with iPhoto this is easy. You can replace the iPhoto library to any location, open iPhoto with the alt key pressed in and you can select the location of the requested library. In this way both computers an point to the same source.
I want to do the same with mail. I know where to locate the files, but how can i setup mail that it will read from an other location?
(buying OSX server just for this is to much)

POP. Post Office Protocol. http://en.wikipedia.org/wiki/PostOfficeProtocol
Standard behavior for POP is to download messages from the mail server, once downloaded they are erased from the server. You can tweak this default behavior on your mac by setting it to leave a copy on the server for any number of days you wish before telling the server to erase the message(s).
In your case if you set mail to leave messages on the server for 7 days, you could have the same messages on both machines, and a seperate copy of each stored on each machine provided you check the mail at least once a week on each machine. EASY.
IMAP. Internet Message Access Protocol. http://en.wikipedia.org/wiki/Imap
A handy primer on imap and apple mail:
http://superfluousbanter.org/archives/2007/04/setting-up-imap-in-apple-mail/
Allows your computer to essentially mirror all files and folders on the mail server. Useful for when you want to view from more than one machine, or one machine and some kind of web mail interface.
With both machine set to access via IMAP, you would see on each machine what is actually on the mail server. If you view mail on one machine, delete junk and go to the other machine, you will not see nor have to delete the junk from the second machine. HANDY - but maybe a little more work to configure.

Similar Messages

  • How can I read an email that someone sent me if it is in powerpoint?

    How can I read an email that someone sent me if it is in powerpoint?

    An email in Powerpoint sounds kind of odd, however, you can download neooffice or openoffice to read it. Microsoft hasn't provided a reader for mac in quite awhile.

  • How can i read outlook emails (from my Dell) on my mac?

    Hi!  I have saved all my outlook emails from my PC to a hard drive and want to view them on my macbook.  Do i have to buy the full office/outlook software package or is there another way to read them?
    I have word and xls on my mac from buying the student office package... but want to avoid buying it all again if i can just read the emails on another reader or just buy the outlook email software...
    Thanks
    Graham

    can annyone assist me whit this problem?
    Not without providing more information about the type of email account (POP3, IMAP, or Exchange) and what settings you use in the account

  • How can I read an email on my iPad and have it not be marked as read?

    I have an Exchange account set up on my iPad for my work email. My email is partly organized such that I look at unread emails (whether or not I've actually read them) for actions required. However, when I tap an email on my iPad, it is automatically marked as read as soon as it comes up in the reading pane. I do realize I can tap a button to have it marked as unread, but I want the default to be that an email is not marked as read. Any feedback?

    On the iPad, using the mail app, there is no way to do what you are asking without tapping the flag icon and marking the item as unread. Have you tried the OWA app for the iPad? It may have that functionality, but I haven't tested it as you need an Office 365 subscription with Exchange support to use the app.

  • How can i read multiple email accounts?

    hi,
    my program is to get emails from multiple email accounts, and grab the attachments, but it doesn't work properly.
    If there's only one email account, it works fine, but if there are more, it looks like that the program always goes into the first mail account to read the messages. i suspect that the 'Server' or the 'Session' are not reset before each connection, i printed out the connected 'Folder', it looks fine, but every time the 'Folder.getMessageCount()' returns the same number of messages as the first email account has.
    Here's my code:
    // this is to get the folder, mostly 'inbox'
    // serverString is like: "protocol://username@host/foldername"
    // all parameters are retrieved from the Database
    public static Folder getMailFolder(String serverString, String username, String password) throws Exception {
            // URLName server = new URLName("protocol://username@host/foldername");
            Folder folder = null;
            URLName server = new URLName(serverString);
            // the session is created by grabbing the authentication using the username and password
            // the MailAuthenticator is an inner class as shown at the bottom
            Session session = Session.getDefaultInstance(new Properties(),
                    new MailAuthenticator(username, password));
            folder = session.getFolder(server);
            // this message always show the same number of messages
            System.out.println("folder retrieved for " + serverString + ", with " + folder.getMessageCount() + " messages");
            return folder;
    // this method is to get the messages from the folder
    public static void getEmailWithSubjectContaining(String emailUrl, String username, String password,
                  String regex, String filepath, boolean addPrefix, boolean delete)
             throws Exception {
             Folder folder = getMailFolder(emailUrl, username, password);
            if (folder == null)  return;
            folder.open(Folder.READ_WRITE);
            Message[] msgs = folder.getMessages();
            // Here is my problem, the msgs.length always returns the same value
            // which is the number of messages that the first email account has
            System.out.println("Totally there are " + msgs.length);
            for (int i = 0; i < msgs.length; i++) {
                 String pathToSave = filepath;
                   String subject = msgs.getSubject();
                   System.out.println("Email subject: " + subject);
    // examine if the message should be dumped and deleted
                   if (!subject.matches(regex)) {
                        System.out.println("Email subject doesn't match regex: " + regex + ", this email is ignored.");
                        continue;
                   Part p = (Part) msgs[i];
    //               p.getFileName();
                   if (addPrefix) {
                        pathToSave = filepath + "/" + getFilenamePrefix(subject);
    // this method call is to save the attachment
                   dumpAttachment(p, pathToSave);
                   msgs[i].setFlag(Flags.Flag.DELETED, delete);
              folder.expunge();
    folder.close(false);
    // this method calls getEmailWithSubjectContaining using a loop
    public static void getEmailWithSubjectContaining(String dbUsername, String dbPassword, String dbUrl) throws Exception {
         Connection con = null;
         if (dbUrl == null || dbUrl.equals("")) dbUrl = "jdbc:mysql://localhost/email_util";
              try {
    // here is just simply get the Database connection
                   con = MySqlJDBCConnection.getConnection(dbUsername, dbPassword, dbUrl);
                   Statement s = con.createStatement();
                   String sql = "SELECT * FROM email_fetching_config WHERE active = 1";
                   ResultSet rs = s.executeQuery(sql);
                   while (rs.next()) {
                        String protocol = rs.getString("protocol");
                        String url = rs.getString("url");
                        String box = rs.getString("email_box");
                        String username = rs.getString("username");
                        String password = rs.getString("password");
                        String regex = rs.getString("sub_regex");
                        String path = rs.getString("save_to");
                        String prefix = rs.getString("append_prefix");
                        boolean delete = rs.getBoolean("delete");
                        String emailUrl = protocol + "://" + username + "@" + url + "/" + box;
                        boolean addPrefix = (!prefix.equals("") || prefix != null);
                        System.out.println("Ready to grab emails from " + emailUrl + ", path to save is: " + path);
                        try {
                             getEmailWithSubjectContaining(emailUrl, username, password, regex, path, addPrefix, delete);
                        } catch (Exception ex) {
              } catch (Exception ex) {
                   ex.printStackTrace();
              } finally {
                   MySqlJDBCConnection.close();
    ********* Authenticator *******
    class MailAuthenticator extends Authenticator {
    private String username;
    private String password;
    public MailAuthenticator() {
    public MailAuthenticator(String username, String password) {
    this.username = username;
    this.password = password;
    public PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(this.username, this.password);
    This is all my program doing, anyone knows what the program is? thanks for your help!
    regards                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Assuming you're passing in the right URL, I don't see the problem.
    Still, try change session.getDefaultInstance to session.getInstance
    and see if that helps. If not, turn on session debugging and check the
    protocol trace for clues. If you still can't figure it out, post the protocol
    trace.

  • How can I read a email from a POP3-Server?

    Hallo,
    I want to read emails from a POP3-Server.  Also attached files.
    I use LabVIEW 7.0 and the Internet toolkit.
    Any suggestions?
    Thank you
    Thomas

    Hallo Thomas,
    2 suggestions :
     - first go to Help >> Seach examples... and search for pop mail, no doubt you'll find somtehing.
     - then have a look at that thread, there are some informations you might want to know before coding
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • How can I use iphone 4s on two computers?

    We have an iMac that may be dying. (Alas) Our other computer is Windows. On the PC, I just downloaded the latest itunes and used my apple sign-in, but when I attach my iPhone and attempt to drag a podcast from PC to iphone, it won't let me. (I have manual on iphone, not auto syncing.) What can I do to get podcasts from the second computer? It must be possible? Right?
    All advice greatly appreciated.

    You will need to "migrate" the itunes data from the Mac to the PC.
    Read this great article for some hints on someone else did this very thing:
    http://joshmccarty.com/2011/01/transfer-itunes-library-and-iphone-data-from-mac- to-pc/
    It's better to have the Mac still running to make sure the transfer works smoothly.
    Good luck

  • How can I read email from my aol account from my iphone and keep it as uread on my computer at home.  It automatically goes to read mail on my computer.  On my computer if I want to keep an email to answer later I can mark it "Keep as New".

    How can I read my email from my aol account from my iphone and keep it as "unread" on my computer at home?  At home I can read an email and if I want to get back to it at a later date I can mark it as "keep as new".  I tend to forget it if it goes to "read" mail.   Right now, when I read an email from my phone it goes automatically to "read" mail.

    On the iPad, using the mail app, there is no way to do what you are asking without tapping the flag icon and marking the item as unread. Have you tried the OWA app for the iPad? It may have that functionality, but I haven't tested it as you need an Office 365 subscription with Exchange support to use the app.

  • How can I change my email address in iMessages so that I can receive messages. My apple seems to have two different email identities and I cannot figure out how to change the wrong one.

    My email address in the imessage part of my ipad is incorrect. How can I change the email address to conform with the email address on the rest of my apple products? I can get messages on my iphone, mac but not on my ipad because of the incorrect address.

    Go on to settings> Messages > send and receive
    this should give you the opportunity to edit email adressed
    Hope it helps.

  • Siri says she can't read my email from the iphone5s lock screen when I'm using the standard headphones, but I could do that on 4s. How can I get my 5s to do that?

    Siri says she can't read my email from the iphone5s lock screen when I'm using the standard headphones, but I could do that on 4s. How can I get my 5s to do that?

    Hi Liz,
    Sorry to hear you are having a similar problem.  Last night I went to the tool bar at the top of iphoto, clicked on "File",  then clicked "Browse Backups" in the drop down menu.    I have an external hard drive that is set up to Time Machine.   The Browse Backups  opened the iphoto pages in the Time Machine.  I selected a date one day ahead of the day I performed the now infamous update, and it showed my iphoto library as it had existed that day.   I then clicked  "Restore Library" at the bottom right corner of the Time Machine screen.   Roughly 2 hours later my iphoto was back to normal.   When I opened iphoto there was a message saying I need to upgrade my program to be compatible with the new version of iphoto(version 9.2.1).  I clicked "Upgrade" and within seconds it had done whatever upgrading it needed to do. 
    The only glitch in the restoration was that it restored the library as it appeared last week, so I no longer had photos I had imported this past weekend.   I simply went back to the Browse Backups in the drop down menu,  when Time Machine opened I selected the page showing my pictures from this weekend and again said to Restore Library.   Roughly 45 minutes later the library was restored including the most recent photos.  
    I am now a happy camper. 
    I don't know if any of this will be of help to you because your email says you are having trouble with photos imported after the upgrade was performed.   Have you had any pop up notices when you first open iphoto,  that tell you you need an upgrade to be compatible with the new iphoto?     If so have you clicked "upgrade"? 
    Good luck Liz,  if you have Time Machine running as a back up to your library, maybe you wil be able to get help there, by following my instructions above.   Otherwise,   good luck with your investigations.   I'd be interested in hearing how you make out.
    Karen

  • How can I read emails that have been moved onto my local hard disk?

    Hallo Everyone,
    I had some emails in my local folders. I moved my local folders to a new drive. There are now none of my local folders in TB. I used TB and found the messages through the profile, but I cannot read them, they are not displayed as messages they seem like txt files. How can I read those messages as I need to print out some of the information.
    Thanks for your help.
    Cheers,
    Russ Kent

    What was the reason to start messing with this in the first place? It's not recommended, unless you know exactly what you're doing.
    I'd just revert the change, and you should be good to go again.

  • How can you close an email after reading without either deleting it or saving it somewhere?  I use AOL and it just goes to "old mail" after you have read the email.

    How can you close an email in Apple iPad after reading it without deleting it.  I use AOL and in their application it just goes to "old mail" after you have read it.  In Apple's email it stays open. Very annoying.

    You cannot actually close an email in the mail app on the iPad. You can tap on the drafts folder or any empty folder that you migh have when you are done reading the email and then the blank white window will appear in the mail app.
    The mail app will always show emails otherwise. That is just the way that it works currently on the iPad.

  • How can I send an email to a group in my address book, but hide the individual names and email addresses?

    how can I send an email to a group in my address book, but hide the individual names and email addresses?

    You used to be able to do this through leaving unchecked the box in preferences "when sending to a group show all member addresses". However, that feature failed some time ago (two or three years?) and the only way to hide the addresses now is to put the group in the BCC field.

  • I changed my email address on one of my old APPLE accounts and want to merge my accounts together, how can I change my email address on my old Apple account?

    I changed my email address on one of my old APPLE accounts and want to merge my accounts together so I can get all my songs!!  My computer crashed and I'm tryng to change everything over to my mac via my ipod classic and just Transfer old files.  It's ejecting my disc (ipod) so I figured I could just change my old Apple ID to be one with my new one.
    how can I change my email address on my old Apple account?

    There is no way to merge two Apple IDs as all purchases made with each account are always tied to those accounts.
    All you can do to each account is change the email address for each one but they can't have the same email address.

  • How can I unverify an email once it is not being used?

    I changed my iTunes account email once. Now, I need to get back to that email, but Apple says it is being used in another account. I am pretty sure that the first email is not being used for any other account.
    Through Apple's site, I chose "iForgot" to resend the password , so I should be able to login to that email account (if it was linked to another account, like they claim). Apple can't send an email for verification. Actually, they say that the email was sent, but it was not.
    How can I unverify this email once Apple says it is linked to another account, but it is not (if it was, the iForgot email would come)?

    for either method to work the state dividing lines must go past the state borders, for example, the line that divides these two states needs to go north a little bit more, I exaggerated the space so you can see, for your map this gap must be really small. Zoom in where you have trouble making separate shapes and fix it before using either tool.

Maybe you are looking for

  • Acrobat 9 Pro and Windows 7

    I recently purchased a new laptop with Windows 7 (64 bit), and then installed Acrobat 9 Pro. When i opened a document in Word 2010 and tried to access PDF Settings, Word crashed. I could 'print' but then no bookmarks were created. I ran a compatibili

  • Upload file - get rid of Content-Disposition: form-data;

    Hello,there.I just want to know if somebody had succesfully solved problem of getting rid of rows at uploaded file -----------------------------7d23c05be8 Content-Disposition: form-data; name="fromflr"; filename="C:\WINDOWS\Desktop\Clock" Content-Typ

  • Best way to backup Windows Formatted Ipod to convert to Mac OS X?

    Hi, My wife has a 3rd gen iPod nano which was formatted using a Windows machine which is no longer available. I now have a linux desktop and my macbook. We would like to convert her iPod for use with the my macbook, but the only way seems to be refor

  • PDF/Keynote will not work and IMac (2009) Lion 10.7.5  is extremely slow

    Both MBP 15" 2010 and IMac 2009 - both Lion 10.7.5 are slow I do not have a lot of garbage on them- I try to be careful about the sites that I visit (in school so I usually visit sites through the university's VPN) This is driving me insane!

  • How to refine data in Aggregate tables  in Oracle BI

    Hello! How to refine data in aggregates tables (created by "create aggregates ..." statement) after the data in corresponding database tables was updated? It is unable to use the "delete aggregates" statement and then "create aggregates" again, becau