Hello,
I am fishing for help. System Redhat-6.2, sendmail-8.10.1, a local
LAN (192.168.1).
DNS running on net07 (A records file shown below). An MX
record for mail-hub (net08) that accepts mail for net06/7/8 is also
shown.
Sendmail configured on mail-hub using mailhub.mc. Net07 configured
as null client using null-client.mc. Mail sent from net07 (local
or remote user) does end up on net08, so far so good. Imapd (4,74?)
also running on net08 for remote access to mail.
An attenpt to get mail from net08 using
fetchmail -p IMAP -u user net08
(results in SMTP error, as fetchmail wants to deliver to smtp at port
25..)
if one tries
fetchmail -p IMAP -u user -mda /usr/bin/procmail net08
(mail is retireived but the format is not compatible with mail/pine
etc.. bad format error)
Any insight will be appreciated.
- ishwar
------dns-forward-file--
; /var/named/named.forward
1999020503 ; serial
10800 ; refresh
3600 ; retry
3600000 ; expire
86400) ; minimum
; name + mail servers
IN NS net07.bogus.domain.
IN MX 0 net08.bogus.domain.
; hosts in zone
localhost IN A 127.0.0.1
net06 IN A 192.168.1.6
net07 IN A 192.168.1.7
net08 IN A 192.168.1.8
; aliases
mail CNAME net08.bogus.domain.
-------mail-hub.mc---
divert(-1)
#
# Copyright (c) 1998, 1999 Sendmail, Inc. and its suppliers.
# All rights reserved.
# Copyright (c) 1983 Eric P. Allman. All rights reserved.
# Copyright (c) 1988, 1993
# The Regents of the University of California. All rights reserved.
#
#
divert(0)dnl
VERSIONID(`$Id: generic-linux.mc,v 8.1 1999/09/24 22:48:05 gshapiro Exp $')
OSTYPE(linux)dnl
DOMAIN(generic)dnl
define(confTRY_NULL_MX_LIST,true)dnl
FEATURE(use_cw_file)dnl
FEATURE(access_db)dnl
MAILER(local)dnl
MAILER(smtp)dnl
-------null-client.mc---
divert(-1)
#
# Copyright (c) 1998, 1999 Sendmail, Inc. and its suppliers.
# All rights reserved.
# Copyright (c) 1983 Eric P. Allman. All rights reserved.
# Copyright (c) 1988, 1993
# The Regents of the University of California. All rights reserved.
#
divert(0)dnl
VERSIONID(`$Id: generic-linux.mc,v 8.1 1999/09/24 22:48:05 gshapiro Exp $')
OSTYPE(linux)dnl
DOMAIN(generic)dnl
FEATURE(nullclient,net08.bogus.domain)dnl
undefine(ALIS_FILE)dnl
-------