私の IMAP サーバーは IDLE をサポートしているように見えますが、通知が遅れて届きます。そこで私は自問自答していました: どうすれば IDLE が機能しているか (または私のメール クライアントか) を確認できますか?
質問する
5779 次
1 に答える
7
http://pymotw.com/2/imaplib/に着想を得て、次の Python スクリプトを使用して、IDLE 経由のプッシュ通知が機能するかどうか、およびその速さを確認できます。
imaplib_connect.py
import imaplib
import ConfigParser
import os
def open_connection(verbose=False):
# Read the config file
config = ConfigParser.ConfigParser()
config.read([os.path.abspath('settings.ini')])
# Connect to the server
hostname = config.get('server', 'hostname')
if verbose: print 'Connecting to', hostname
connection = imaplib.IMAP4_SSL(hostname)
# Login to our account
username = config.get('account', 'username')
password = config.get('account', 'password')
if verbose: print 'Logging in as', username
connection.login(username, password)
return connection
if __name__ == '__main__':
c = open_connection(verbose=True)
try:
print c
finally:
c.logout()
print "logged out"
imaplib_idlewait.py
import imaplib
import pprint
import imaplib_connect
imaplib.Debug = 4
c = imaplib_connect.open_connection()
try:
c.select('INBOX', readonly=True)
c.send("%s IDLE\r\n"%(c._new_tag()))
print ">>> waiting for new mail..."
while True:
line = c.readline().strip();
if line.startswith('* BYE ') or (len(line) == 0):
print ">>> leaving..."
break
if line.endswith('EXISTS'):
print ">>> NEW MAIL ARRIVED!"
finally:
try:
print ">>> closing..."
c.close()
except:
pass
c.logout()
設定.ini
[server]
hostname: yourserver.com
[account]
username: yourmail@yourserver.com
password: yoursecretpassword
これらのファイルを作成したら、呼び出すだけです
python imaplib_idlewait.py
CTRL+C を押すと、このスクリプトは正常に終了しないことに注意してください (readline() はブロックされており、close() によって終了されません)。ただし、テストには十分なはずです。
また、ほとんどのメール サーバーは 30 分後に接続を終了することに注意してください。その後、たとえばここに示すように、接続を再度開く必要があります。
于 2013-08-07T12:22:58.893 に答える