Murder, folders, outlook express
Rob Siemborski
rjs3 at andrew.cmu.edu
Sat May 31 11:20:24 EDT 2003
On Fri, 30 May 2003, b wrote:
> For this (show the folder in OE) action, there is no log on backend.
OK. I *think* I know what is going on now.
We recently fixed a bug in proxyd_findinboxserver() because it wasn't
dealing correctly with altnamespace. I'm still not sure its totally
dealing correctly with virtual domains, but see if this replacement works
for you (in proxyd.c):
static struct backend *proxyd_findinboxserver(void)
{
char inbox[MAX_MAILBOX_NAME+1];
int r;
char *server = NULL;
struct backend *s = NULL;
r = (*proxyd_namespace.mboxname_tointernal)(&proxyd_namespace, "INBOX",
proxyd_userid, inbox);
if(!r) {
r = mlookup(inbox, &server, NULL, NULL);
if (!r) {
s = proxyd_findserver(server);
}
}
return s;
}
-Rob
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Rob Siemborski * Andrew Systems Group * Cyert Hall 207 * 412-268-7456
Research Systems Programmer * /usr/contributed Gatekeeper
More information about the Info-cyrus
mailing list