What non-standard behaviour features does Gmail exhibit, when it is programmatically used as a POP3 server?

后端 未结 1 620
梦毁少年i
梦毁少年i 2020-11-29 06:18

I am trying to prepare a complete list of behaviour that Gmail POP3 exhibits, that you wouldn’t expect to generally find in a POP3 server.

For example, Gmail appears

相关标签:
1条回答
  • 2020-11-29 06:53

    I cannot come with a complete list, but I can come with what I know of:

    • Fetching an email will hide it from all later POP3 sessions unless you reset your gmail pop3 settings (sets them again).
      To be more precise: I found out that this happens with the RETR command only. Not the TOP command. I also noticed that if the QUIT command is not sent after issuing RETR commands, the messages are kept on the server for later sessions. It is therefore possible to fetch the messages and just close the connection, and gmail will keep the messages visible for the next session.
    • Depending on your gmail settings, a fetched email can be deleted from your gmail web interface as well.
    • Logging in with a special "recent:" in front of your username will show emails received in the last 30 days, regardless of being sent to another POP3 client already.

    Those are the only non-standard behaviour I know about the gmail pop3 service. Most of this information I have gathered while being a developer for OpenPop.NET.

    References that might be of use:

    • GMail's POP3 behavior
    • GMail - Behavior Explained
    • Understanding GMail’s Behavior
    • Using POP on multiple clients or mobile devices
    0 讨论(0)
提交回复
热议问题