Displaying 5 results from an estimated 5 matches for "dovecot_mast".
Did you mean:
dovecot_main
2007 Dec 18
4
Dovecot + Cygwin the 2nd
Hi,
i still try to get dovecot to run under cygwin.
After a post on the cygwin list i am able tu run dovecot.
Under Cygwin you have to run dovecot by inetd. Starting the binary
"dovecot.exe" does not work.
Well the server is running but answers with a fatal error.
Account: 'localhost', Server: 'localhost', Protokoll: POP3,
Serveranswer: 'Fatal: EOF while reading
2008 May 18
1
Domain variable in checkpassword
...'CACHE_TTL' => '3600',
'SERVICE' => 'IMAP',
'USERDB_1_DRIVER' => 'prefetch',
'USERNAME_CHARS' =>
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@',
'DOVECOT_MASTER' => '1',
'RESTRICT_SETGID' => '',
'AUTH_WORKER_MAX_COUNT' => '30',
'AUTH_WORKER_PATH' => '/var/run/dovecot/auth-worker.25291',
'PASSDB_2_ARGS' => '/etc/exim/checkp %d'...
2005 Jan 15
1
STARTTLS and inetd
...000000 +0100
+++ src/login-common/main.c.new 2005-01-15 17:49:53.000000000 +0100
@@ -220,7 +220,7 @@
{
const char *name, *group_name;
struct ip_addr ip;
- int i, fd = -1, master_fd = -1;
+ int i, fd = -1, master_fd = -1, ssl = FALSE;
is_inetd = getenv("DOVECOT_MASTER") == NULL;
@@ -268,6 +268,7 @@
fd = ssl_proxy_new(fd, &ip);
if (fd == -1)
i_fatal("SSL initialization
failed");
+ ssl = TRUE;...
2003 Apr 15
1
PATCH allow_zero_gid option
...hild_process() since it clears environment */
restrict_access_set_env(group->set->user,
group->set->uid, set->login_gid,
- set->login_chroot ? set->login_dir : NULL);
+ set->login_chroot ? set->login_dir : NULL,
+ set->allow_zero_gid);
env_put("DOVECOT_MASTER=1");
Index: src/master/mail-process.c
===================================================================
RCS file: /home/cvs/dovecot/src/master/mail-process.c,v
retrieving revision 1.13
diff -u -3 -p -r1.13 mail-process.c
--- src/master/mail-process.c 15 Apr 2003 16:58:48 -0000 1.13
+++ s...
2003 Nov 04
0
PATCH: make local IP address available to auth modules
The attached patch makes the local IP address to which the client
connected available to the authentication modules; i.e., the local IP
address is available for substitution as %i for the mysql and pgsql
modules. We needed this feature to support thousands of our legacy
accounts which are authenticated by username/local_part (not the full
email address) and IP address (one per domain).
Timo,