Displaying 3 results from an estimated 3 matches for "no_imap".
Did you mean:
nnimap
2004 Dec 11
3
Corrupted index files in 0.99.12.1
Hi - I've got two copies of Dovecot installed on my server (don't worry,
talking to two different sockets for authentication, with two different
sets of filenames using options in configure), and I found at least one
instance where the index file for my INBOX (on my own account, in fact)
got corrupted. So badly so that when I connected via IMAP and selected
my INBOX, it said there were no
2008 Jun 13
0
"Disable non webmail IMAP access" in vpopmail and Dovecot
...oblem and i found one
working for me
in dovecot sources edit src/auth/passdb-vpopmail.c
than add
char *remotehost = net_ip2addr(&auth_request->remote_ip);
auth_request_log_info(auth_request, "vpopmail", "remote ip is: %s",
remotehost);
before if (((vpw->pw_gid & NO_IMAP) != 0 && line
than modify the condition line to look like:
if (((vpw->pw_gid & NO_IMAP) != 0 &&
? ? ? ? ? ? ?strcmp(auth_request->service, "IMAP") == 0 *&&
strcmp(remotehost, "127.0.0.1") != 0*) ||
? ? ? ? ? ? ((vpw->pw_gid & NO_POP) !=...
2008 Sep 25
1
patch for passdb-vpopmail in v1.1.3
...know, don't
ask). Enabling the code to update the relays file brings a small bug
to light, fixable with the following patch:
--- passdb-vpopmail.c~ 2008-09-25 15:06:47.000000000 +0100
+++ passdb-vpopmail.c 2008-09-25 15:07:14.000000000 +0100
@@ -31,9 +31,9 @@
}
if (((vpw->pw_gid & NO_IMAP) != 0 &&
- strcmp(auth_request->service, "IMAP") == 0) ||
+ strcasecmp(auth_request->service, "IMAP") == 0) ||
((vpw->pw_gid & NO_POP) != 0 &&
- strcmp(auth_request->service, "POP3") == 0)) {
+ strcasecmp(auth_r...