2013-03-05 4 views
0

Gmail에서 IMAP STORE 명령을 사용하는 데 문제가 있습니다. 인터넷 검색에서 다른 몇몇 사람들이이 문제를 겪고있는 것처럼 보이고 일부는 수정 프로그램을 발견 한 것으로 보이지 않았고 그 중 일부는 막 중단 된 것처럼 보였습니다. 나는 그것을 고치는 법을 모른다. 내가 Gmail로 연결하면Gmail받은 편지함 읽기 전용

가 나는 단지 내가받은 편지함을 선택하면

2013-03-05 01:22:47-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] C: '0003 EXAMINE INBOX' 
2013-03-05 01:22:47-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] S: '* FLAGS (\\Answered \\Flagged \\Draft \\Deleted \\Seen)' 
2013-03-05 01:22:47-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] S: '* OK [PERMANENTFLAGS()] Flags permitted.' 
2013-03-05 01:22:47-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] S: '* OK [UIDVALIDITY 1] UIDs valid.' 
2013-03-05 01:22:47-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] S: '* 22 EXISTS' 
2013-03-05 01:22:47-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] S: '* 0 RECENT' 
2013-03-05 01:22:47-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] S: '* OK [UIDNEXT 110] Predicted next UID.' 
2013-03-05 01:22:47-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] S: '0003 OK [READ-ONLY] INBOX selected. (Success)' 

그래서 그것을 읽고있는 사서함에 읽기 전용 액세스 권한 부여입니다 만

난 다음 나중에 시도하고 메시지를 삭제하고 이 오류를

2013-03-05 01:43:04-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] C: '000E STORE 2 FLAGS.SILENT (\\Deleted)' 
2013-03-05 01:43:04-0500 [IMAP4Client (TLSMemoryBIOProtocol),client] S: '000E NO STORE attempt on READ-ONLY folder (Failure)' 

트위스트보고이 오류, 난 단지 읽기 전용 액세스 받았다으로 예상되는 읽기 전용 폴더에 저장 한 시도를 얻을. READ-WRITE 액세스를 얻으려면 어떻게해야합니까?

Traceback (most recent call last): 
Failure: twisted.mail.imap4.IMAP4Exception: STORE attempt on READ-ONLY folder (Failure) 

RFC 정보 http://tools.ietf.org/html/rfc3501#section-6.3.1

If the client is permitted to modify the mailbox, the server 
    SHOULD prefix the text of the tagged OK response with the 
    "[READ-WRITE]" response code. 

    If the client is not permitted to modify the mailbox but is 
    permitted read access, the mailbox is selected as read-only, and 
    the server MUST prefix the text of the tagged OK response to 
    SELECT with the "[READ-ONLY]" response code. Read-only access 
    through SELECT differs from the EXAMINE command in that certain 
    read-only mailboxes MAY permit the change of permanent state on a 
    per-user (as opposed to global) basis. Netnews messages marked in 
    a server-based .newsrc file are an example of such per-user 
    permanent state that can be modified with read-only mailboxes. 

나는 Gmail의 IMAP 구현 (http://memegenerator.net/instance/35708036) 하지만 깨진 것을 알고 지금까지의 내가 등 Mail.app, 썬더 버드, 그래서 메시지를 삭제할 수 있습니다을 말할 수있는 것

삭제 코드

,159,822,477 .... 내가 읽기 - 쓰기 액세스 얻을 수없는입니다
+1

작동하는 오픈 소스 프로그램을 알고 있기 때문에 코드를 확인해보십시오. –

답변

3

받은 편지함을 선택하지 않아야합니다. 검사는 읽기 전용으로 사서함을 여는 명령입니다.

+0

와우 나는 바보 같다고 생각한다. 내 두뇌가 검사 라인을 보았고, 당신이 이미 그것이 선택인지 알았다. – Zimm3r

관련 문제