a58791467b
of delta's to be mailed out every hour (or however often you schedule the cron job). ctm_dequeue is the cron job which takes the stuff from the queue directory and punts it into sendmail. The chunks of the deltas (and the complete deltas if they are that small) are sorted into order before being dispatched, so the people subscribing should still get the bits in the right order. The changes to ctm_smail should be fairly safe as they won't be activated unless you go for the new queue directory option.
9 lines
183 B
Makefile
9 lines
183 B
Makefile
PROG= ctm_dequeue
|
|
SRCS= ctm_dequeue.c error.c
|
|
NOMAN= yes
|
|
CFLAGS+= -Wall -I${.CURDIR}/../ctm_rmail
|
|
|
|
.PATH: ${.CURDIR}/../ctm_rmail
|
|
|
|
.include <bsd.prog.mk>
|