Tagged Questions
The poplib tag has no wiki summary.
2
votes
3answers
2k views
Python: Retrieving only POP3 message text, no headers
I'm trying to make a Python program that retrieves only the body text of an email without passing headers or any other parameters. I'm not sure how to go about this.
The goal is to be able to send ...
1
vote
1answer
212 views
python poplib get attachment
I am trying to access POP3 email server. I will be polling messages and downloading attachments for each one of them. I can successfully login and get the messages but cannot figure out how to ...
1
vote
0answers
147 views
How to connect pop3 server via http proxy?
I am using poplib to receive email but my computer accesses internet via http proxy. It seems that poplib does not support proxy? How to use poplib using http proxy? Many thanks!
1
vote
3answers
818 views
Select mails from inbox alone via poplib
I need to download emails from the gmail inbox only using poplib.Unfortunately I do not see any option to select Inbox alone, and poplib gives me emails from sent items too.
How do I select emails ...
1
vote
2answers
435 views
commands to send messages in Python via the Poplib module?
I've found a number of tutorials online involving downloading messages via Poplib, but haven't been able to find anything explaining how to create new messages. Does this exist?
1
vote
3answers
392 views
Incoming poplib refactoring using windows python 2.3
Hi Guys could you please help me refactor this so that it is sensibly pythonic.
import sys
import poplib
import string
import StringIO, rfc822
import datetime
import logging
def ...
0
votes
2answers
50 views
Get emails with Python and pop lib
I would like to log into my account with Python and get python to print the messages I received in my mail box. I know how to connect
import getpass, poplib
user = 'my_user_name'
Mailbox = ...
0
votes
1answer
72 views
Aide with error when trying to get email poplib
This what ive tried so far :
# view and delete e-mail using the POP3 protocol
import sys, getpass, poplib, re
# change according to your needs
POPHOST = "pop3.126.com"
POPUSER = "Username"
POPPASS ...
0
votes
2answers
116 views
If I give a POP server invalid credentials using poplib, why can't I try again with the correct ones?
I'm writing a script to login to Hotmail. It asks the user to enter a password and if they get the password right, all is well.
If they get the password wrong the first time however, the valid ...
0
votes
0answers
83 views
Does poplib support proxy?
My laptop is using a server to connect to the internet. Now I want to get mail by poplib. Dose poplib support proxy? How to set proxy for poplib? Thanks.
0
votes
2answers
122 views
Pydev can't import poplib
I'm using Aptana Studio 3 beta which comes with Pydev, everything appears to be working apart from I can't import poplib which is part of the standard library.
I added poplib to the Forced Builtins ...
0
votes
2answers
349 views
error when using poplib to get email
I am using poplib to get email from the POP3 server.
But this error occurred:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File ...
0
votes
2answers
203 views
how to maintain mail conversion (reply / forward / reply to all like gmail) of email using python pop/imap lib?
I've develop webmail client for any mail server,
I want to implement message conversion for it, for example same emails fwd/reply/reply2all should be shown together like gmail does...
my question ...
0
votes
4answers
248 views
Poplib not working correctly?
I want to get all the messages from my gmail inbox, but I am facing 2 problems.
It does not get all the emails, (as per the count in stat function)
The order of emails it get is random.
I am ...