Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the IMAP protocol there is a folder hierarchy character. If you try to create folder with such character in the name, mailserver will create two folders. For example, if a delimiter character is "/", then command CREATE "aaa/bbb" will create two folders aaa and bbb in folder aaa.

Is it possible to create single folder with delimiter character inside? For example, the single folder with the name aaa/bbb, without aaa and bbb in aaa folder.

share|improve this question
3  
Even if you could, it will probably cause something to break somewhere. I'd avoid even trying, if I were you. – RichieHindle Nov 13 '09 at 9:18

2 Answers

up vote 1 down vote accepted

You may try UTF7 encoding:

CREATE "one&AC8-two"

But RFC says:

If the server's hierarchy separator character appears elsewhere in the name, the server SHOULD create any superior hierarchical names that are needed for the CREATE command to be successfully completed. In other words, an attempt to create "foo/bar/zap" on a server in which "/" is the hierarchy separator character SHOULD create foo/ and foo/bar/ if they do not already exist."

http://www.faqs.org/rfcs/rfc3501.html

share|improve this answer
Yep, escaping with UTF7 works. – Pawel Lesnikowski Nov 13 '09 at 22:41
Well, it looks like a hack than a feature. Could break some client applications. – Sergey Stolyarov Nov 14 '09 at 15:09
All clients should support UTF7 encoding, so may opinion is it should not cause problems. Have you checked if it works with your server/client? – Pawel Lesnikowski Nov 15 '09 at 19:02
yep, it's working for thunderbird and kmail, checked some server, also ok – Sergey Stolyarov Nov 18 '09 at 10:19

Strictly speaking, no, there is no way officially allowed by the protocol.

The accepted answer violates the protocol:

In modified UTF-7, printable US-ASCII characters, except for "&", represent themselves; that is, characters with octet values 0x20-0x25 and 0x27-0x7e. […] Modified BASE64 MUST NOT be used to represent any printing US-ASCII character which can represent itself.

5.1.3. Mailbox International Naming Convention

The hack only works because most servers aren't strict about the above rule.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.