IMAP versus POP, room for improvement

IMAP su cks, and POP is 'grouchy' what to do....
I want (need actually) all incoming and outgoing mail to be saved permanently on my mac. Problem is using IMAP, when the mail from the server is deleted - it gets deleted everywhere (synced). EVEN IF YOU SET MAIL TO KEEP A LOCAL COPY. How stupid is that? POP suits me to a 'T', however with more than one platform retrieving mail from the same server a problem develops.
I set my iPhone to not delete from server when retrieving and my mac to delete as soon as the mail is retrieved. This works really well. I usually respond on the mac, and mostly use the iPhone to check mail on the road. If I do send a reply, I Bcc it back to my account so it ends up on my mac.
Trouble is when my mac and iPhone check the same account within a few minutes of each other, the mail server won't let the later of the two machines log in (as one is still logged in). This causes the mail retrieval to fail along with its associated annoying 'wrong password' messages and/or the account goes offline.
I have an elegant solution that would create a 'hyper IMAP' without breaking any IMAP or POP rules.
Using the IMAP protocol, outgoing iPhone mail could easily be copied, tagged to indicate its status and emailed back to the same account. IPhone would ignore it as it has a 'tag'. The main mac would retrieve it, read the tag (remove the tag) and store it in the right folder (sent box, or even sent form iPhone box). All mail sent/received on the main mac would be treated like POP, in that it would be stored locally. Using tags the mac would know if files should be cleared from the server or not, as any deleted by the iPhone would actually be 'tagged' as deleted. As long as a copy existed on the main mac it could be cleared from the server.
This is really basic stuff. Easy to solve, with very few lines of code. APPLE!!!!! help me out here!!! I want IMAP with the ability to keep a local copy of ALL email in and outgoing from either iPhone or a Mac to end up on my main mac. I regularly search for items in email going back many years, and need a copy on my mac to search.
I am not alone in this!! Many just put up with IMAP or POP shortcomings. Why? This is 2009!!!! and we are using such primitive methods for getting text messages.
This would really offer some great functionality with very little effort for your programing team.
Does anyone else have a better (but simple) way to do this now?
Cheers,
Jeremy Williams
p.s. thanks for incorporating my ideas in the latest Nano - its nice to know you guys listen! (feel free to cut me a cheque sometime)

Hi Jeremy,
The "technology" already exists if you put a little work at it. I have an Apple Script do it for me. It's a bit complex but it gets the job done very nicely. I run the script and it does the following:
1.) Takes the account offline temporarily
2.) Copies the contents of all IMAP folders to local folders of the same name
3.) Quits mail
When I launch Mail I have the option to run in normal, online mode. Or run in offline archive mode which shows me all of my folders since the last sync that the script performed. This way I have current, archived and untouched version of my IMAP account (Inbox, Sent, Trash, all subfolders).
It works great and it sounds like exactly what you're after. I can't take credit for it, though. I actually got the script after a demo of it, during MacWorld '07. The developer indicated that he published it online (never looked for it) under the name: IMAP Anywhere Archive

Similar Messages

  • Any room for improvement for this query? Explain Plan attached.

    Is there any room for improvement for this query? Table stats are up-to-date. Any suggestions Query rewrite, addition of indexes,...etc ??
    select sum(CONF
                 when (cd.actl_qty - cd.total_alloc_qty - lsd.Q < 0) then
                  0
                 else
                  cd.actl_qty - cd.total_alloc_qty - lsd.Q
               end)
      from (select sum(reqd_qty) as Q, ITEM_ID as ITEM
              from SHIP_DTL SD
             where exists (select 1
                      from CONF_dtl
                     where CONF_nbr = '1'
                       and ITEM_id = SD.ITEM_id)
             group by ITEM_id) lsd,
           CONF_dtl cd
    where lsd.ITEM = cd.ITEM_id
       and cd.CONF_nbr = '1'Total number of rows in the tables involved
    select count(*) from CONF_DTL;
      COUNT(*)
       1785889
    select count(*) from shp_dtl;
      COUNT(*)
        286675
      Explain Plan
    PLAN_TABLE_OUTPUT
    Plan hash value: 2325658044
    | Id  | Operation                           | Name               | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                    |                    |     1 |    39 |     4  (25)| 00:00:01 |
    |   1 |  SORT AGGREGATE                     |                    |     1 |    39 |            |          |
    |   2 |   VIEW                              |                    |     1 |    39 |     4  (25)| 00:00:01 |
    |   3 |    HASH GROUP BY                    |                    |     1 |   117 |     4  (25)| 00:00:01 |
    |   4 |     TABLE ACCESS BY INDEX ROWID     | SHIP_DTL           |     1 |    15 |     1   (0)| 00:00:01
    |   5 |      NESTED LOOPS                   |                    |     1 |   117 |     3   (0)| 00:00:01 |
    |   6 |       MERGE JOIN CARTESIAN          |                    |     1 |   102 |     2   (0)| 00:00:01 |
    |   7 |        TABLE ACCESS BY INDEX ROWID  | CONF_DTL           |     1 |    70 |     1   (0)| 00:00:01 |
    |*  8 |         INDEX RANGE SCAN            | PK_CONF_DTL        |     1 |       |     1   (0)| 00:00:01 |
    |   9 |        BUFFER SORT                  |                    |     1 |    32 |     1   (0)| 00:00:01 |
    |  10 |         SORT UNIQUE                 |                    |     1 |    32 |     1   (0)| 00:00:01 |
    |  11 |          TABLE ACCESS BY INDEX ROWID| CONF_DTL           |     1 |    32 |     1   (0)| 00:00:01 |
    |* 12 |           INDEX RANGE SCAN          | PK_CONF_DTL        |     1 |       |     1   (0)| 00:00:01 |
    |* 13 |       INDEX RANGE SCAN              | SHIP_DTL_IND_6 |     1 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       8 - access("CD"."CONF_NBR"='1')
      12 - access("CONF_NBR"='1')
      13 - access("ITEM_ID"="SD"."ITEM_ID")
           filter("ITEM_ID"="CD"."ITEM_ID")

    Citizen_2 wrote:
    Is there any room for improvement for this query? Table stats are up-to-date. Any suggestions Query rewrite, addition of indexes,...etc ??You say that the table stats are up-to-date, but is the following assumption of the optimizer correct:
    select count(*)
    from CONF_dtl
    where CONF_nbr = '1';Does this query return a count of 1? I doubt that, but that's what Oracle estimates in the EXPLAIN PLAN output. Based on that assumption you get a cartesian join between the two CONF_DTL table instances, and the result - which is still expected to be one row at most - is then joined to the SHIP_DTL table using a NESTED LOOP.
    If above assumption is incorrect, the number of rows generated by the cartesian join can be tremendous rendering the NESTED LOOP operation quite inefficient.
    You can verify this by using the DBMS_XPLAN.DISPLAY_CURSOR function together with the GATHER_PLAN_STATISTICS hint, if you're already on 10g or later.
    For more information regarding the DISPLAY_CURSOR function, see e.g. here: http://jonathanlewis.wordpress.com/2006/11/09/dbms_xplan-in-10g/
    It will show you the actual cardinalities compared to the estimated cardinalities.
    If the estimate of the optimizer is incorrect, you should find out why. There still might be some issues with the statistics, since this is most obvious reason for incorrect estimates.
    Are your index statistics up-to-date?
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • 808 pureview small room for improvement

    Hi,
    i like my 808, nevertheless I miss
    - a full Grid
    - built in function to use front camera
    - active streaming navigation over bluetooth
    - some apps which are available for N8 but I couldnt find for 808 like Skype
       (there Videocall would be verry nice)
    - accessoires like a really good car holder
      having buttons, connectors and camera free for a road movie
    - some plan back just to let the phone on the desk and type without swinging

    Hi,
    i like my 808, nevertheless I miss
    - a full Grid
    - built in function to use front camera
    - active streaming navigation over bluetooth
    - some apps which are available for N8 but I couldnt find for 808 like Skype
       (there Videocall would be verry nice)
    - accessoires like a really good car holder
      having buttons, connectors and camera free for a road movie
    - some plan back just to let the phone on the desk and type without swinging

  • Need IMAP and POP for solaris 8

    Hello,
    I need to install impa and pop agent for solaris 2.8 machine and can anyone please help out where I can file them or buy them ?
    Thanks
    -K.Kim-
    [email protected]

    There is a freeware IMAP daemon available on the
    Solaris 8 companion software CD.
    http://www.sun.com/software/solaris/freeware/index.html
    -- richard

  • HT1338 I can no longer use Macmail for my btinternet account.  I was advised to delete the imap account and begin again with a pop account for incoming mail.  My Macbook will not let me do that and neither BT nor Yahoo have been able to help.

    I can no longer use Macmail for my btinternet account.  I was advised to delete the imap account and begin again with a pop account for incoming mail.  My Macbook will not let me do that and neither BT nor Yahoo have been able to help.

    Btinternet being your internet service provider? If I'm correct, have you followed their directions:
    http://btbusiness.custhelp.com/app/answers/detail/a_id/7073/c/2048,2053,3883,206 5
    Just found a seemingly newer article (and there are several more on the right of those pages):
    http://btbusiness.custhelp.com/app/answers/detail/a_id/7071/related/1/session/L2 F2LzEvdGltZS8xMzU0NzI1NTMyL3NpZC9qaThFVi1jbA%3D%3D

  • How does Mail 4 organize folders for IMAP vs POP in sidebar?

    Can someone explain how Mail organizes the sidebar for POP vs IMAP and what would happen if I switched totatlly to IMAP?
    I'm a bit confused by how Mail is organizing the folders in the sidebar for an IMAP account. Way back in Panther days I had an IMAP mac.com email for a year or two and if I recall correctly I saved it in On My Mac as a folder. Same for a POP account I was getting rid of.
    Since then I have had only POP accounts (including a gmail account). I managed to keep the inboxes (at least) in sync by not removing mail from the server so that my ipod, iphone, and other Macs can log into the mail server too. This has worked OK. However, since I send a lot of mail from my iPhone, I'm wondering if it's time to switch to IMAP since I will be giving up several ISP issued email addresses that only use POP.
    I signed up for a new gmail account recently and it set up as an IMAP account by default. Now there's a folder for the new IMAP Gmail account at the bottom of the sidebar under On My Mac folders. It doesn't have an inbox or sent folder but does have a "sent items" folder.
    Additionally, at the top of the sidebar is "Mailboxes" with Inbox, Sent, Drafts, Trash and under these are a subfolder for each POP account and also one for the new IMAP gmail. It seems weird to have the inbox and sent items so far away from the rest of the folders. I'm also not clear if it's keeping 2 copies on my hard disk one in the top mailboxes under "Sent" and one at the bottom Gmail folder under "sent items".
    Finally, I'm wondering would it be prudent to back up all of the existing POP mailboxes or move everything to On My Mac before switching some of the other mail accounts over to IMAP? I will want to keep archives of the ISP emails when I cancel my service with them.
    Thanks for any clarification and advice.

    You Wrote:
    This is what Gmail help suggests to set
    Drafts:
Store draft messages on the server > do NOT check
    Sent:
Store sent messages on the server > do NOT check
    Junk:
Store junk messages on the server > checked
Delete junk messages when > Never
    Trash:
Move deleted messages to the Trash mailbox > do NOT check
Store deleted messages on the server > do NOT check
    These settings in Mail on your Mac or other device is what you want that device to do with these folders. If you want to be able to start a message on an iPhone and finish it on your Mac, then check the setting on the iPhone to store the draft message on the server. Then, it will be available on all other devices set up with the account to finish it. You would need to set each device to the settings you wish. You really don't want to store anything useless like junk mail or trash on the server and take up server space.
    You Wrote:
    As I understand it, the IMAP keeps a local cache and the servers synced. However, Mail sends email and stores it in the Sent folder and the web interface sends email from the Sent Mail folder. Can't I tell Mail to store outbound mail in Sent Mail?
    As I understand it, if you send a message from your IMAP account from Mail on your Mac, it will also copy it to the Sent Items folder in IMAP to be seen from any device. If you delete it from the IMAP Sent Items folder, you won't see it on any other device. It will still be in the Sent Mail on the Mac you sent it from. That is a local folder on that particular device.
    The advantage of the IMAP account is that you can control email from multiple devices either locally on them if it is set up with that account or from any browser without having to physically sync all of them together. Like you said, you have to leave the messages on the server to view them on other devices and it also takes up storage on each device.
    If you want to store them locally to be saved on one computer, then move or copy them from the IMAP folder to a local folder on that computer.
    As Barney suggested, enable the advanced IMAP controls in the Labs section on the gmail website settings. That will give you much more control on what you see in Mail on your Mac.
    For example, after enabling this feature, I went  to the Labels section in settings on the website and unchecked all boxes to show in IMAP. the only one left is Inbox which you can't disable. When I go to Mac Mail, I don't see any gmail folders except an Inbox subfolder for gmail, a gmail subfolder for sent, and a gmail subfolder for trash.
    I have also checked the box in the Mac account settings on the Trash to move deleted messages to the trash, but not store them on the server. That way, a copy goes to the trash on my Mac and it puts the subfolder in the Mail Trash.
    I have also set Mail Preferences in gmail under the Forwarding and POP/IMAP tab to Auto Expunge off and immediately delete messages forever. I did this to keep the gmail site clean and to give all control to my Mac since I never pull it up at the gmail website except when away on vacation.

  • Using iOS 8.1, can I still use pop account for email instead of imap

    UUsing iOS 8.1 on iPhone 4. Can I still use pop account for my email instead of IMAP. Don't like all my email on mail server

    MMy biggest problem is both iPhone and iPad when I set up email account uses IMAP automatically. So I really have no choice. Since IMAP doesnot allow downloading email to device, I have to leave all restates on mail server. This really concerns me.

  • BB Z30 For Lotus Domino IMAP or POP

    Hi,
    I am trying to configuring  imap or POP email on Z30,but its not working.
      My question is that BB Z30  compatible with Lotus Domino 7.0.4. POP and IMAP/pop email accounts?? however i configured same account on some other smart phone (Andorid and windows mobile) i didn't get any error.
    Solved!
    Go to Solution.

    Hi and Welcome to the Community!
    There are a number of KBs that might be useful to you, but it's better for you to search rather than me guessing:
    http://btsc.webapps.blackberry.com/btsc/microsites/microsite.do
    You also might try the advanced/manual configuration rather than the automated wizard, and you should be able to find the required settings via this:
    Article ID: KB33444 How to use the Email Account Validation Tool (EAVT)
    Basically, just about all (there are no 100%'s when it comes to this stuff) internet-facing email accounts can be integrated to a BB10 device. It is normally a matter of finding the right settings and methods to use in order to get it properly integrated.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • The Skinny on IMAP vs POP Email and work arounds

         It took me a while to figure out email so I figured I'd share what I've learned so far.  Do feel free to reply with more useful tips for us all if anyone has some.
    First email accounts are either IMAP or POP and the first step was figuring out the difference:
    IMAP
       Mirror of the server
    What is done one place is done everywhere because you are looking at the server.
           Advantage: can access email from multiple devices/locations
           Disadvantage: May have to mark as read individually when adding to a new device
    POP
       Independent of the server
    What is done one place stays that place because you have moved it from the server.
            Advantage: once it's delivered the mail can be viewed offline
            Disadvantage: where ever it is delivered once, the other divices do no have access to the mail
    Think of the server as a huge mailbox as big as a room!
       IMAP
    With IMAP the mail stays in the mailbox until you delete it permenently,
        but once it is deleted it has moved out of the main part of the huge mailbox into the trash can in the room of the huge mailbox (the trash folder settings decide when the trash gets taken out and deleted permenently) when deleted permenently it is no longer in the trash can in the huge mailbox it has been taken out the the dump.
    If you read it then it's like opening the mail but leaving it in the huge mailbox.
    If you move it to another folder then it's like moving it to the desk in the room but still in the mailbox.
       POP
    With POP the mail is taken out of the mailbox and moved to the computer (in the other room)
    Once you request/download your mail it is taken off of the server and whatever is done with the mail the server no longer has access to it
    If you read it (or move it to a folder) it is the same thing as Mom taking the mail out of the huge mailbox and putting it in the car, if Dad checks the mailbox the mail may have been delivered by Dad is not going to find it because it is no longer in the mailbox it is with Mom in the car.
    Here a link that helped me figure it out:
    http://www.office.mvps.org/glossary/pop_imap.html
    So after you decide wether you want to use IMAP or POP which email carrier is which?
    Microsoft Exchange is IMAP
    MobileMe is IMAP
    Yahoo! mail is IMAP
    Hotmail is IMAP
    Gmail is IMAP can be set up as POP
         see here for that:  https://discussions.apple.com/message/8149520#8149520
    ~Most web-based email is IMAP (if it is designed to be accessed via the web by ANY computer it's likely IMAP)
         settings for incomming/outgoing servers:   http://www.emailaddressmanager.com/tips/mail-settings.html
    AOL is POP can be set up as IMAP (origanally intended to be used with only one computer via the ISP)
          see here for that: http://email.about.com/od/aoltips/qt/Access_an_AOL_Email_Account_with_any_POP_IM AP_Email_Program.htm
    Comcast is POP
    Qwest is POP
    Earthlink is POP
    ~Most ISP (internet service providers) email from a cable/internet company of a business specific email is a POP account
    Use this chart HT1277 ( http://support.apple.com/kb/HT1277 ) for contacting your service provider or IT department to acquire the proper settings for your email account!
    Finally, as promised, work around for your email:
        If you only have access to a POP email account and it won't work on your iPhone or want it to act like an IMAP account, then follow these steps~
    1)   Get a free IMAP email account (using Gmail for this example)
    2)  Sign in to your Gmail account
    3)  Click the gear icon in the upper-right
    4)  Select Gmail settings
    5)  Select the Accounts and Import tab
    6)  Under Send mail as, click Add another email address
    7)  In the 'Email address' field, Enter your name and alternate email address (ie the POP address)
    8)  Choose use Gmail's servers to send your mail
    9)  Click Next Step>>
    10) Click Send Verification
                 (Gmail will send a verification message to your alternate email address to confirm that you own it)
    11) Open your other account and click the link in the message Gmail sent
    12) Add your new Gmail account to your iphone
    You will be able to send, receive, reply, forward, delete, and manage folders of your other address through your Gmail address on your phone and it will appear to the recipients as though it came from your other address.

    Allan, I have run into questions in this area recently since I got my iPhone. I have a long time Charter ISP POP email account which I've accessed with Apple Mail. This has worked fine. I also have a Yahoo web based account which I've also used separately.
    Now when I set up my Yahoo account on my iPhone it worked great. But when I set up the Charter account it resulted in an IMAP account with incoming and outgoing servers being mobile.charter.net. Charter website implies that all email accounts on all mobile devices must be set up like this. My question is whether I can, or should, try to set up the account manually as a POP on my iPhone so it will behave similarly to the Charter POP account in my iMac?
    I've run into some conflicts after using my iPhone to access my Charter email. My inbox on my desktop iMac in Apple Mail will give me the message that another client is accessing the email account when I try to get new mail soon after my iPhone has been accessing the Charter account. I've wondered whether this is a conflict between IMAP and POP?
    Confusing. Thanks.
    Steve M.

  • HT201320 I want to set up a POP3 email account but in all the help I have found so far I should get the option to choose IMAP or POP.  This doesn't appear and I need POP3 because I don't want anything deleted from the mail server.  I have an iPhone 5s and

    How do I set up a POP3 email account on my iPhone5s, using iOS 7.1.1.  All the help I have found tells me to select IMAP or POP but I am not given the choice.  I need to be able to set 'Don't delete from mail server' which can't be done in IMAP.

    tim.fry wrote:
    My email provider is BT and they do support POP3, that's what I have been using for a number of years
    Okay.
    Then set it up.

  • How do I change my email account from IMAP to POP on my MacBook Pro

    My email provider has changed and no longer uses Yahoo IMAP, so I need to change the email to a POP account but my MacBook automatically chooses Yahoo IMAP when I try to create a new account.  Any suggestions how I can change from IMAP to POP?

    My email provider is BT and they have just moved me from BT Yahoo Mail to BT Mail.  I deleted the Yahoo email account and then used the Other Account option to input BT Mail, but unfortunately my MacBook decided that it still wanted me to use BT Yahoo.  So for several weeks I keep getting locked out of my mail and get the message box "Can't access mail' or something like that and wants me to put in the Yahoo mail password which is no longer valid.  I don't actually want to use POP (and actually have no idea what IMAP AND POP do!), but when I contacted BT support they suggested that I needed to use POP for BT Mail.  However having trawled the BT site I think what I was told was a load of rubbish.  So I suppose the real question is how to get rid of Yahoo Mail.

  • How do I convert yahoo email on iPhone FROM IMAP TO POP?

    I have Yahoo Mail Plus. When I first got my iPhone 4, I set it up so my yahoo email was accessible on my phone without my doing anything. I only check the email from two devices: my desktop via the internet, and my iPhone. I'm pretty sure the email set up on my phone is an IMAP protocol, because when I delete an email from one device, it deletes it on the other device.
    I actually want to change it so that when I delete an email on my phone, it DOESN'T delete it from the Yahoo server. I think that's the POP protocol. I realize setting it up as POP will require that I delete the emails multiple places. I can live with that. What I don't currently like is that all of the emails I've saved in my Yahoo account, in multiple folders, are now also sitting on my iPhone. It's a risk exposure I'd like to eliminate. My iPhone password is a start, but I'd feel better if I could purge old emails off my iPhone. Right now, if I delete the various emails and folders from my phone, it's my understanding they'll also be gone from my Yahoo internet account. I don't want that.
    I've read various posts saying I should delete my Yahoo email account on my iPhone and then set it up as a new account and select POP.
    1. Is that the only way to change from IMAP to POP?
    2. If I delete Yahoo mail on my iPhone, what will happen to my stored emails on Yahoo? Will they be saved or deleted?
    3. Is there another solution?
    4. Any other advice?
    Thanks for any help. And if I've skewered any terms here, forgive me. Sometimes dealing with this stuff is like learning another language.  Cindy

    First off, you are correct in the assumption that emails are sitting on your iPhone. You should, however have the option to set how much to sync, as well as what folders to sync to determine what is visible. The only setting to change that is to set a passcode on the phone.
    Also, deleting the emails and folders from the phone will result in them being deleted from the server, this is how IMAP works.
    To answer your other quesetions:
    1. That would have to be answered by Yahoo, since the server would have to be different. An IMAP server acts differently than POP.
    2. Deleting will delete everything everywhere.
    3. The only other solution I can think of is as I stated earlier is if there is a setting for days to sync in IMAP. I'm not sure of this since I do not use an IMAP account. I know that Exchange behaves in this way.
    4. If this does not work as you want after talking ot Yahoo, then maybe selecting a POP email provider and forwarding the Yahoo mail to that and picking up the POP mail on the iPhone.
    I think that Yahoo will give you information that you will need to start your search for answers.

  • My time capsule is full and when I attempt to back up, I only receive a preparing back up message and the earliest and most recent back up dates remain the same.  Why are the oldest backups not being deleted to make room for the newest backups?

    My time capsule is full and when I attempt to back up, I only receive a preparing back up message and the earliest and most recent back up dates remain the same.  Why are the oldest backups not being deleted to make room for the newest backups?

    linda mariefromharper woods wrote:
    My time capsule is full and when I attempt to back up, I only receive a preparing back up message and the earliest and most recent back up dates remain the same.  Why are the oldest backups not being deleted to make room for the newest backups?
    It may be in the process of making room.  What version of OSX are you on?    (That process can be excruciatingly slow on Leopard or Snow Leopard backups over a network;  Lion has improved it greatly.)
    A clue may be lurking in your logs.  Use the widget in #A1 of  Time Machine - Troubleshooting to display the backup messages from your logs.   That should help you figure out what's going on.  If in doubt, copy and post them here (but if the same ones repeat over and over, drop most of the duplicates).
    If you can, connect via Ethernet; it will be 2-3 times faster.

  • IMAP and POP

    I want to access GMAIL from my application MAIL in MAC OS X and find that I don't understand IMAP or POP and why I should choose one over the other to setup my account. What are the advantages / disadvantages of one over the other? I use email only in my stand alone iMac.
    Thanks
    Andy

    IMAP leaves mail stored on the server and synchronizes server mailboxes with client mailboxes, and thus is much preferable if you will ever be checking mail from more than one machine. (Even if you just may want to check your mail via GMail's web interface every now and then.) POP, on the other hand, is meant for downloading and removing messages from the server, and thus prevents easy access from multiple computers.

  • Can't Start Imap or Pop Services

    In server admin I have enabled both pop and imap and restarted the mail services. However in the Overview tab it says both imap and pop are disabled. I'm guessing this means that cyrus is not running.
    How can i fix this?
    Can cyrus be started from the terminal?
    I fixed permissions, but this did nothing to help.

    For those who may have a problem with this my /etc/imapd.conf file had corruption. Once fixed server started.

Maybe you are looking for

  • Cannot Install iTunes 9 in Windows XP Pro 64-bit

    Okay, here's the situation: I was an early adopter of Vista, in its 32-bit form. Ran fine, lasted a long time. Needed more memory, so installed Vista 64-bit a few months back as part of an upgrade to a larger boot disc. Initially, the version (whatev

  • F-32 validation

    The Issue is that. When i clear Cutomer with T.code f-32, we require when business ares field is empty at the in the documents , so while clearing it should pop up inforamtion message to input business area regards sri

  • USEREXIT_PRICING_PREPARE_TKOMP

    Hi, I have added new field on the screen of va01 and va02. The idea is to display amount with VAT. In va02 everything is ok.I made some modifications in USEREXIT_PRICING_PREPARE_TKOMK and it is OK. But when I try to calculate the amount with VAT in U

  • Keep losing bookmarks in Safari

    Twice now.  Didn't have a crash in Safari or any other app, bookmarks just gone when I opened Sarfari after using other app's.  The only bookmarks there are the default ones ("History" folder, "iCloud Tabs" folder, "Apple" bookmark, and "iPod touch U

  • Bom billing plan

    PLEASE TELL ME STEP BY STEP PROCESS OF CONFIGURING MILE STONENBILLING IN CASE OF  BOM ITEMS