Displaying 7 results from an estimated 7 matches for "lib_signals_set_handl".
Did you mean:
lib_signals_set_handler
2016 Jul 02
5
kqueue crash on FreeBSD with 2.2.25
...x281815a8 in io_add_file (fd=56, condition=IO_READ, source_linenum=244, callback=0x2818a7d0 <signal_read>, context=0x0) at ioloop.c:59
#9 0x281813a6 in io_add (fd=56, condition=IO_READ, source_linenum=244, callback=0x2818a7d0 <signal_read>, context=0x0) at ioloop.c:81
#10 0x2818a666 in lib_signals_set_handler (signo=1, flags=3, handler=0x804e6c0 <sig_settings_reload>, context=0x0) at lib-signals.c:243
#11 0x0804e129 in main_init (set=0x2881d098) at main.c:518
#12 0x0804d562 in main (argc=3, argv=0xffffae08) at main.c:890
(gdb) bt full
#0 0x28295237 in thr_kill () from /lib/libc.so.7
No symbol...
2016 Jul 27
2
Dovecot v2.2.25 crashed on startup in Mac OSX
...t.0.dylib 0x00000001000ff022
io_loop_handle_add + 194
-> 7 libdovecot.0.dylib 0x00000001000fb5f1 io_add_file
+ 385
-> 8 libdovecot.0.dylib 0x00000001000fb456 io_add + 118
-> 9 libdovecot.0.dylib 0x0000000100102b83
lib_signals_set_handler + 355
-> 10 dovecot 0x0000000100027070 main_init +
112
-> 11 dovecot 0x0000000100026628 main + 2024
-> 12 libdyld.dylib 0x00007fff889ac5ad start + 1
It looks similar to this report:
http://article.gma...
2007 Feb 23
0
Simple patch
...cap_set_flag(caps, CAP_PERMITTED,
sizeof(suidcaps)/sizeof(cap_value_t), suidcaps, CAP_SET);
+ cap_set_flag(caps, CAP_EFFECTIVE,
sizeof(suidcaps)/sizeof(cap_value_t), suidcaps, CAP_SET);
+ cap_set_proc(caps);
+ cap_free(caps);
+#endif
+
lib_signals_init();
lib_signals_set_handler(SIGINT, TRUE, sig_die, NULL);
lib_signals_set_handler(SIGTERM, TRUE, sig_die, NULL);
2016 Jul 04
3
kqueue crash on FreeBSD with 2.2.25
...file (fd=56, condition=IO_READ, source_linenum=244, callback=0x2818a7d0 <signal_read>, context=0x0) at ioloop.c:59
> > #9 0x281813a6 in io_add (fd=56, condition=IO_READ, source_linenum=244, callback=0x2818a7d0 <signal_read>, context=0x0) at ioloop.c:81
> > #10 0x2818a666 in lib_signals_set_handler (signo=1, flags=3, handler=0x804e6c0 <sig_settings_reload>, context=0x0) at lib-signals.c:243
> > #11 0x0804e129 in main_init (set=0x2881d098) at main.c:518
> > #12 0x0804d562 in main (argc=3, argv=0xffffae08) at main.c:890
>
> Weird. I haven't touched anything even c...
2016 Jul 01
2
kqueue crash on FreeBSD with 2.2.25
Hi,
2.2.25 crashes on FreeBSD with a kqueue-related message. I see references to something similar (http://www.dovecot.org/list/dovecot/2012-February.txt) from a couple years ago.
I get:
Jul 1 10:07:27 imap dovecot: master: Panic: kevent(EV_ADD, READ, 54) failed: Bad file descriptor
It's not dumping core, and I get the message even with "protocols ="
Downgrading back to 2.2.24
2007 Dec 05
6
"pipe" plugin - is anyone interested (or using it)?
Hi,
A few months ago, I sent a message to this list asking if people would
be interested by a "pipe" plugin (see
http://dovecot.org/pipermail/dovecot/2007-May/023005.html ). I received
a few answers of people who told they were intersted.
A few months later, I sent a new message announcing the availability of
my work (see
http://dovecot.org/pipermail/dovecot/2007-August/024805.html ).
2012 Aug 13
2
[PATCH] Replace hard-coded PKG_STATEDIR with state_dir setting
...e_export(queue, db_path);
replicator_queue_deinit(&queue);
}
diff --git a/src/ssl-params/main.c b/src/ssl-params/main.c
--- a/src/ssl-params/main.c
+++ b/src/ssl-params/main.c
@@ -112,11 +112,12 @@
static void main_init(const struct ssl_params_settings *set)
{
+ const char *filename;
lib_signals_set_handler(SIGCHLD, LIBSIG_FLAGS_SAFE, sig_chld, NULL);
ssl_params = buffer_create_dynamic(default_pool, 1024);
- param = ssl_params_init(PKG_STATEDIR"/"SSL_BUILD_PARAM_FNAME,
- ssl_params_callback, set);
+ filename = t_strconcat(set->state_dir, "/"SSL_BUILD_PARAM_FNAME, NULL);...