From owner-freebsd-questions@FreeBSD.ORG Thu Jan 8 08:19:51 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6C00106564A for ; Thu, 8 Jan 2009 08:19:51 +0000 (UTC) (envelope-from remegius@comcast.net) Received: from QMTA01.emeryville.ca.mail.comcast.net (qmta01.emeryville.ca.mail.comcast.net [76.96.30.16]) by mx1.freebsd.org (Postfix) with ESMTP id A03958FC1B for ; Thu, 8 Jan 2009 08:19:51 +0000 (UTC) (envelope-from remegius@comcast.net) Received: from OMTA09.emeryville.ca.mail.comcast.net ([76.96.30.20]) by QMTA01.emeryville.ca.mail.comcast.net with comcast id 0wGX1b00L0S2fkCA1wKseZ; Thu, 08 Jan 2009 08:19:52 +0000 Received: from bsd.remdog.net ([76.102.24.75]) by OMTA09.emeryville.ca.mail.comcast.net with comcast id 0wKr1b0031dCpWs8VwKrgm; Thu, 08 Jan 2009 08:19:51 +0000 Message-ID: <4965B726.6020004@comcast.net> Date: Thu, 08 Jan 2009 00:19:50 -0800 From: Rem P Roberti User-Agent: Thunderbird 2.0.0.19 (X11/20090103) MIME-Version: 1.0 To: Peter Boosten References: <4965AFDD.9000002@comcast.net> <4965B542.6060303@boosten.org> In-Reply-To: <4965B542.6060303@boosten.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD-Questions@FreeBSD.org Subject: Re: Help with dmesg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2009 08:19:52 -0000 Peter Boosten wrote: > Rem P Roberti wrote: > >> I just finished installing clamav with clamav-milter and everything >> seems to be loading fine via rc.conf. But I get this message at bootup >> and I have no idea what gives: >> >> >>> 554 5.0.0 /etc/mail/sendmail.cf: line 48: unknown configuration line " >>> " >>> Jan 7 23:32:32 bsd sm-mta[1307]: NOQUEUE: SYSERR(root): >>> >> /etc/mail/sendmail.cf: >> >>> line 48: unknown configuration line "\n" >>> > > I suppose you modified your sendmail config through the .mc-file. > > Can you show us that one? > > Peter > Here is the complete contents of the file I modified, which is a copy of freebsd.mc: divert(0) VERSIONID(`$FreeBSD: src/etc/sendmail/freebsd.mc,v 1.34.2.3 2008/08/31 18:26:27 gshapiro Exp $') OSTYPE(freebsd6) DOMAIN(generic) INPUT_MAIL_FILTER(`clmilter',`S=local:/var/run/clamav/clmilter.sock, F=, T=S:4m;R:4m') FEATURE(access_db, `hash -o -T /etc/mail/access') FEATURE(blacklist_recipients) FEATURE(local_lmtp) FEATURE(mailertable, `hash -o /etc/mail/mailertable') FEATURE(virtusertable, `hash -o /etc/mail/virtusertable') dnl Uncomment to allow relaying based on your MX records. dnl NOTE: This can allow sites to use your server as a backup MX without dnl your permission. dnl FEATURE(relay_based_on_MX) dnl DNS based black hole lists dnl -------------------------------- dnl DNS based black hole lists come and go on a regular basis dnl so this file will not serve as a database of the available servers. dnl For that, visit dnl http://www.google.com/Top/Computers/Internet/E-mail/Spam/Blacklists/ dnl Uncomment to activate Realtime Blackhole List dnl information available at http://www.mail-abuse.com/ dnl NOTE: This is a subscription service as of July 31, 2001 dnl FEATURE(dnsbl) dnl Alternatively, you can provide your own server and rejection message: dnl FEATURE(dnsbl, `blackholes.mail-abuse.org', ``"550 Mail from " $&{client_addr} " rejected, see http://mail-abuse.org/cgi-bin/lookup?" $&{client_addr}'') dnl Dialup users should uncomment and define this appropriately dnl define(`SMART_HOST', `your.isp.mail.server') dnl Uncomment the first line to change the location of the default dnl /etc/mail/local-host-names and comment out the second line. dnl define(`confCW_FILE', `-o /etc/mail/sendmail.cw') define(`confCW_FILE', `-o /etc/mail/local-host-names') dnl Enable for both IPv4 and IPv6 (optional) DAEMON_OPTIONS(`Name=IPv4, Family=inet') DAEMON_OPTIONS(`Name=IPv6, Family=inet6, Modifiers=O') define(`confBIND_OPTS', `WorkAroundBrokenAAAA') define(`confNO_RCPT_ACTION', `add-to-undisclosed') define(`confPRIVACY_FLAGS', `authwarnings,noexpn,novrfy') MAILER(local) MAILER(smtp) The only line I modified was the 5th line down beginning "INPUT_MAIL_FILTER..." Rem