[dovecot-cvs] dovecot/src/deliver deliver.c,1.13,1.14

cras at dovecot.org cras at dovecot.org
Fri Oct 28 13:57:22 EEST 2005


Update of /var/lib/cvs/dovecot/src/deliver
In directory talvi:/tmp/cvs-serv22035/deliver

Modified Files:
	deliver.c 
Log Message:
Ignore SIGALRM signal. We don't want to crash when it happens.



Index: deliver.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/deliver/deliver.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- deliver.c	16 Oct 2005 14:48:25 -0000	1.13
+++ deliver.c	28 Oct 2005 10:57:20 -0000	1.14
@@ -360,6 +360,7 @@
         lib_signals_set_handler(SIGINT, TRUE, sig_die, NULL);
         lib_signals_set_handler(SIGTERM, TRUE, sig_die, NULL);
         lib_signals_set_handler(SIGPIPE, FALSE, NULL, NULL);
+        lib_signals_set_handler(SIGALRM, FALSE, NULL, NULL);
 
 	destination = NULL;
 	for (i = 1; i < argc; i++) {



More information about the dovecot-cvs mailing list