Sean_N
04-05-2001, 06:50 AM
Hi
well i have a small problem but it is very annoying. I have the mail for my domain carrigonline.com is sent to everyone.net. But for some strange reason if email is sent using the php mail function on the carrigonline.com server to anyname@carrigonline.com it ends up in the default email box. also server uses cpanel.
any ideas ?
Can we have a look at the DNS/SOA record? Sounds like you need to adjust your MX records or alter a PHP function...
allan
04-05-2001, 09:52 AM
The NS records look to be okay, they are all pointing to everyone.net:
[allan allan]$ dig @NS.NATIONIT.NET CARRIGONLINE.COM axfr
; <<>> DiG 8.2 <<>> @NS.NATIONIT.NET CARRIGONLINE.COM axfr
; (1 server found)
$ORIGIN carrigonline.com.
@ 4H IN SOA ns.1-sh.com. root.ns.1-sh.com. (
977427002 ; serial
8H ; refresh
2H ; retry
5w6d16h ; expiry
1D ) ; minimum
4H IN NS ns.1-sh.com.
4H IN NS ns2.1-sh.com.
4H IN A 216.74.104.2
4H IN MX 0 sitemail.everyone.net.
4H IN MX 0 sitemail2.everyone.net.
4H IN MX 5 sitemail3.everyone.net.
4H IN MX 5 sitemail4.everyone.net.
ftp 4H IN CNAME @
mail 4H IN A 216.200.145.34
localhost 4H IN A 127.0.0.1
www 4H IN CNAME @
@ 4H IN SOA ns.1-sh.com. root.ns.1-sh.com. (
977427002 ; serial
8H ; refresh
2H ; retry
5w6d16h ; expiry
1D ) ; minimum
;; Received 13 answers (13 records).
;; FROM: cyndilauper.version12.net to SERVER: 216.74.104.43
;; WHEN: Thu Apr 5 09:53:21 2001
[allan allan]$ dig @NS2.NATIONIT.NET CARRIGONLINE.COM axfr
; <<>> DiG 8.2 <<>> @NS2.NATIONIT.NET CARRIGONLINE.COM axfr
; (1 server found)
$ORIGIN carrigonline.com.
@ 4H IN SOA ns.1-sh.com. root.ns.1-sh.com. (
977427002 ; serial
8H ; refresh
2H ; retry
5w6d16h ; expiry
1D ) ; minimum
4H IN NS ns.1-sh.com.
4H IN NS ns2.1-sh.com.
4H IN A 216.74.104.2
4H IN MX 0 sitemail.everyone.net.
4H IN MX 0 sitemail2.everyone.net.
4H IN MX 5 sitemail3.everyone.net.
4H IN MX 5 sitemail4.everyone.net.
ftp 4H IN CNAME @
mail 4H IN A 216.200.145.34
localhost 4H IN A 127.0.0.1
www 4H IN CNAME @
@ 4H IN SOA ns.1-sh.com. root.ns.1-sh.com. (
977427002 ; serial
8H ; refresh
2H ; retry
5w6d16h ; expiry
1D ) ; minimum
;; Received 13 answers (13 records).
;; FROM: cyndilauper.version12.net to SERVER: 216.74.104.44
;; WHEN: Thu Apr 5 09:53:55 2001
I'm guessing its a Script/CPanel setting. Unfortunately, I do not know much about CPanel, so I cannot help you with that.
superiorhost
04-18-2001, 03:41 AM
Hmm,
I am betting that one of the alias files did not get removed, thus allowing the email to go to your domain at the server.
This should be a simple fix for the techs.
See, the zone file is not the only change you need to make, unlike everyone.net tries to tell you. You also need to remove 2 listings of the domain name on most Linux servers, in the aliases files.
For instance, on our servers, you need to comment out, or better yet, remove the domain name completely from the following 2 files:
/etc/localdomains
/etc/userdomains
This is something I don't recall ever seeing at the everyone.net site, or instructions. Just told from tech to tech.
Tim L.