私はRubyとRailsを使用してIMAPクライアントに取り組んでいます。メッセージやメールボックスなどを正常にインポートできます...ただし、最初のインポート後に、最後の同期以降に発生した変更を検出するにはどうすればよいですか?
現在、UIDとUIDの有効性の値をデータベースに保存し、それらを比較して、適切に検索しています。これは機能しますが、削除されたメッセージやメッセージフラグの変更などは検出されません。
これらの変更を検出するために、毎回すべてのメッセージをプルする必要がありますか?他のIMAPクライアント(つまり、Apple MailとPostbox)はどのようにそれをすばやく実行しますか。私のスクリプトは、メールアドレスが非常に少ないアカウントごとにすでに10秒以上かかっています。
# select ourself as the current mailbox
@imap_connection.examine(self.location)
# grab all new messages and update them in the database
# if the uid's are still valid, we will just fetch the newest UIDs
# otherwise, we need to search when we last synced, which is slower :(
if self.uid_validity.nil? || uid_validity == self.uid_validity
# for some IMAP servers, if a mailbox is empty, a uid_fetch will fail, so then
begin
messages = @imap_connection.uid_fetch(uid_range, ['UID', 'RFC822', 'FLAGS'])
rescue
# gmail cries if the folder is empty
uids = @imap_connection.uid_search(['ALL'])
messages = @imap_connection.uid_fetch(uids, ['UID', 'RFC822', 'FLAGS']) unless uids.empty?
end
messages.each do |imap_message|
Message.create_from_imap!(imap_message, self.id)
end unless messages.nil?
else
query = self.last_synced.nil? ? ['All'] : ['SINCE', Net::IMAP.format_datetime(self.last_synced)]
@imap_connection.search(query).each do |message_id|
imap_message = @imap_connection.fetch(message_id, ['RFC822', 'FLAGS', 'UID'])[0]
# don't mark the messages as read
#@imap_connection.store(message_id, '-FLAGS', [:Seen])
Message.create_from_imap!(imap_message, self.id)
end
end
# now assume all UIDs are valid
self.uid_validity = uid_validity
# now remember that we just fetched all those messages
self.last_synced = Time.now
self.save!