search for: process_typ

Displaying 5 results from an estimated 5 matches for "process_typ".

Did you mean: process_type
2008 Mar 16
3
max connects per host?
Hi everyone! I want to manage mail server resource part (like it can CGP) and with it I have one question. Is any way to limit overall max simultaneous connections to imap/pop3 server from one(each) host, except use iptables/ipfw and so on? Like a patch to dovecot or, maybe, it can be released in future versions? I know about mail_max_userip_connections in dovecot 1.1 but it can't limit
2009 Mar 29
1
cannot login with plain authentication - missing UID
...er_login_process" not defined. Make breakpoint pending on future shared library load? (y or [n]) n (gdb) break create_mail_process Breakpoint 1 at 0x804fc64: file mail-process.c, line 542. (gdb) cont Continuing. Detaching after fork from child process 31212. Breakpoint 1, create_mail_process (process_type=PROCESS_TYPE_IMAP, set=0x8070330, socket_fd=21, local_ip=0x8077468, remote_ip=0x807747c, user=0x806c322 "test at redmountainorganics.com", args=0x806c370, dump_capability=false) at mail-process.c:542 542 { (gdb) p *args $1 = 0x0 (gdb) bt #0 create_mail_process (process_type=P...
2015 Sep 02
3
latest yum update messed up chrome
...y (timeout by message bus) [13006:13043:0901/222041:ERROR:native_backend_kwallet_x.cc(412)] Error contacting kwalletd (isEnabled) [13006:13046:0901/222041:ERROR:zygote_host_impl_linux.cc(374)] Did not receive ping from zygote child [6:6:0901/222041:ERROR:zygote_linux.cc(573)] Zygote could not fork: process_type renderer numfds 5 child_pid -1 [13006:13046:0901/222041:ERROR:zygote_host_impl_linux.cc(374)] Did not receive ping from zygote child I wish I could go back to a previous version of 44, but I can't find a previous version. It seems google likes to hide those. This is the CentOS I have: lsb_r...
2015 Sep 02
0
latest yum update messed up chrome
...essage bus) > [13006:13043:0901/222041:ERROR:native_backend_kwallet_x.cc(412)] Error contacting kwalletd (isEnabled) > [13006:13046:0901/222041:ERROR:zygote_host_impl_linux.cc(374)] Did not receive ping from zygote child > [6:6:0901/222041:ERROR:zygote_linux.cc(573)] Zygote could not fork: process_type renderer numfds 5 child_pid -1 > [13006:13046:0901/222041:ERROR:zygote_host_impl_linux.cc(374)] Did not receive ping from zygote child > > I wish I could go back to a previous version of 44, but I can't find a previous version.? It seems google likes to hide those. > This is the Ce...
2003 Sep 10
1
Patch for auto-creating home directories
...EXIST) { + umask(oldmask); + return FALSE; + } + } + } + + umask(oldmask); + + return (mkdir(path, 0777) == 0 || errno == EEXIST); + } + int create_mail_process(int socket, struct ip_addr *ip, const char *executable, const char *module_dir, unsigned int process_size, int process_type, *************** *** 156,164 **** --- 192,205 ---- restrict_process_size(process_size, (unsigned int)-1); + (void)umask(set->umask); + if (*home_dir != '\0') { full_home_dir = *chroot_dir == '\0' ? home_dir : t_strconcat(chroot_dir, "/", home_dir, NUL...