summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ctm/ctm_smail
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1996-09-07 18:48:52 +0000
committerpeter <peter@FreeBSD.org>1996-09-07 18:48:52 +0000
commit79ba94b99fd97463c1bbaf51da25a7911ca4cb42 (patch)
treeeb2614adde8d84305f122c7c9daf4ff3119e2065 /usr.sbin/ctm/ctm_smail
parenta80e135e4928df7b12e994f9d506fe75e8e422c5 (diff)
downloadFreeBSD-src-79ba94b99fd97463c1bbaf51da25a7911ca4cb42.zip
FreeBSD-src-79ba94b99fd97463c1bbaf51da25a7911ca4cb42.tar.gz
- resync with configs running on freefall
- add ctm_conf.gnats from freefall - add support for doing both the immediate mailout and the queued mailout. - use "sendmail -odq -t" rather than "sendamil -t" to make it queue to the mailqueue rather than immediately begin transmission. This allows us to take advantage of our ordered dequeueing system without blowing WC's T1 to hell with a 50 part mailout in parallel. - bump the max ctm size from 3MB to 10MB.... This is mainly for the fast list.
Diffstat (limited to 'usr.sbin/ctm/ctm_smail')
-rw-r--r--usr.sbin/ctm/ctm_smail/ctm_smail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ctm/ctm_smail/ctm_smail.c b/usr.sbin/ctm/ctm_smail/ctm_smail.c
index 4c97e8a..9df11c9 100644
--- a/usr.sbin/ctm/ctm_smail/ctm_smail.c
+++ b/usr.sbin/ctm/ctm_smail/ctm_smail.c
@@ -10,7 +10,7 @@
* In return you should think about all the nice people who give away software.
* Maybe you should write some free software too.
*
- * $Id$
+ * $Id: ctm_smail.c,v 1.6 1996/07/01 20:54:11 gpalmer Exp $
*/
#include <stdio.h>
@@ -422,7 +422,7 @@ open_sendmail()
FILE *fp;
char buf[100];
- sprintf(buf, "%s -t", _PATH_SENDMAIL);
+ sprintf(buf, "%s -odq -t", _PATH_SENDMAIL);
if ((fp = popen(buf, "w")) == NULL)
err("cannot start sendmail");
return fp;
OpenPOWER on IntegriCloud