Closed
Bug 21064
Opened 26 years ago
Closed 26 years ago
fix nsImapMailFolder::GetCanCreateSubfolders to allow me to create subfolders for the inbox on a cyrus server
Categories
(SeaMonkey :: MailNews: Message Display, defect, P3)
SeaMonkey
MailNews: Message Display
Tracking
(Not tracked)
VERIFIED
FIXED
M14
People
(Reporter: sspitzer, Assigned: Bienvenu)
Details
if you bring up the folder picker in the new folder dialog, you'll notice the
inbox for an imap server is disabled.
this is because the code looks like this:
NS_IMETHODIMP
nsImapMailFolder::GetCanCreateSubfolders(PRBool *aResult)
{
NS_ENSURE_ARG_POINTER(aResult);
// if it's the Inbox, then you can't create a subfolder.
// yes, I know this isn't true for all IMAP servers, but it works for now
*aResult = !(mFlags & MSG_FOLDER_FLAG_INBOX);
return NS_OK;
}
I need to fix this, as some servers (Cyrus) support subfolders on the inbox.
Comment 1•26 years ago
|
||
Reporter | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M14
Reporter | ||
Comment 2•26 years ago
|
||
well, it's dog food for cyrus people, but not for us internally (yet.)
marking m14, accepting.
Assignee | ||
Updated•26 years ago
|
Assignee: sspitzer → bienvenu
Status: ASSIGNED → NEW
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 3•26 years ago
|
||
I'll take this - I need it to work to do some testing on cyrus servers, and I
figured out what the prefs are.
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 4•26 years ago
|
||
fixed by using_noinferiors_flag
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 5•25 years ago
|
||
Used 02-21-08-M14 commercial build for all the platforms(Linux, WinNT & Mac):
Users can create the subfolders of the Inbox for POP, Cyrus, & MS Exchange
servers now... marking as verified!!
Updated•21 years ago
|
Product: Browser → Seamonkey
Comment hidden (collapsed) |
You need to log in
before you can comment on or make changes to this bug.
Description
•