Displaying 2 results from an estimated 2 matches for "no_pop".
2008 Sep 25
1
patch for passdb-vpopmail in v1.1.3
...+ 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_request->service, "POP3") == 0)) {
auth_request_log_info(auth_request, "vpopmail",
"%s disabled", auth_request->service);
password = NULL;...
2008 Jun 13
0
"Disable non webmail IMAP access" in vpopmail and Dovecot
...p; 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) != 0 &&
? ? ? ? ? ? ?strcmp(auth_request->service, "POP3") == 0)) {
? ? ? ? ? ? ? ? auth_request_log_info(auth_request, "vpopmail",
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? "%s disabled", auth_request->service);
? ? ? ? ? ? ? ? password = NULL;
? ? ? ? ? ?...