I'm fairly new to Linux, and I've mostly been able to puzzle stuff out...
but this has me stumped. I've been working on it for hours, and I think my
brain is about to melt.
Right now, I can receive email as [EMAIL PROTECTED] but not
[EMAIL PROTECTED] I know it's not postfix -- it's not a relaying problem --
email just cannot find its way to the machine.
Any tips? Relevant files follow....
-- Jon
Here's my named.conf file:
------
options {
directory "/var/named";
};
zone "." {
type hint;
file "named.ca";
};
zone "jonroig.com."{
type master;
file "jonroig.com.";
notify no;
};
zone "0.0.127.in-addr.arpa"{
type master;
file "named.local";
};
zone "30.67.26.216.IN-ADDR.ARPA"{
type master;
file "216.26.67.30";
notify no;
};
zone "31.67.26.216.IN-ADDR.ARPA"{
type master;
file "216.26.67.31";
notify no;
};
---------------
here is jonroig.com.
---------------
@ IN SOA jonroig.com. jon.smersh.jonroig.com. (
2000082808 ; serial
3600 ; refresh
900 ; retry
1209600 ; expire
43200 ; default_ttl
)
IN NS 216.26.67.31.
IN MX 10 smersh.jonroig.com.
IN A 216.26.67.31
localhost IN A 127.0.0.1
smersh IN A 216.26.67.31
www IN A 216.26.67.31
hoover IN A 216.26.67.30
----------------
here's 216.26.67.31 (reverse domain)
--------
@ IN SOA jonroig.com. jon.jonroig.com. (
2000080402 ; serial
3600 ; refresh
900 ; retry
1209600 ; expire
43200 ; default_ttl
)
@ IN PTR jonroig.com.
@ IN NS smersh.jonroig.com.
----------------