From b96ce49a21b24ac151253af8f839f051c67fb717 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sun, 10 Feb 2008 22:02:01 +0000 Subject: [PATCH] * make the aide-room public postable for cron, hostmaster and friends. --- citadel/citserver.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/citadel/citserver.c b/citadel/citserver.c index bcb3989b6..be41bf3a5 100644 --- a/citadel/citserver.c +++ b/citadel/citserver.c @@ -158,6 +158,12 @@ void master_startup(void) { lputroom(&qrbuf); } + /* Aide needs to be public postable, else we're not RFC conformant. */ + if (lgetroom(&qrbuf, AIDEROOM) == 0) { + qrbuf.QRflags2 |= QR2_SMTP_PUBLIC; + lputroom(&qrbuf); + } + lprintf(CTDL_INFO, "Seeding the pseudo-random number generator...\n"); urandom = fopen("/dev/urandom", "r"); if (urandom != NULL) { -- 2.30.2