diff options
author | Scott Ullrich <sullrich@sullrich-MacBookPro.geekgod.com> | 2009-05-27 13:51:12 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@sullrich-MacBookPro.geekgod.com> | 2009-05-27 13:52:40 -0400 |
commit | bc720937e0fab7c069818a16e76e3299d818ec39 (patch) | |
tree | 46713f20ddff66cf04f01426a4de56765cb1c01c /config | |
parent | 52fd3c47b21ace4c74091b9593ab260970477c0b (diff) | |
download | pfsense-packages-bc720937e0fab7c069818a16e76e3299d818ec39.tar.gz pfsense-packages-bc720937e0fab7c069818a16e76e3299d818ec39.tar.bz2 pfsense-packages-bc720937e0fab7c069818a16e76e3299d818ec39.zip |
Correct MX records entries. They do not have a double colon.
That looks right: Chris Johnson @ IPA
Diffstat (limited to 'config')
-rw-r--r-- | config/tinydns/tinydns.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/tinydns/tinydns.inc b/config/tinydns/tinydns.inc index f86e553c..b3bb5d4a 100644 --- a/config/tinydns/tinydns.inc +++ b/config/tinydns/tinydns.inc @@ -618,7 +618,7 @@ function tinydns_get_rowline_data($recordip, $recordtype, $ttl, $hostname, $rdns $record_data = "&{$hostname}:{$recordip}{$ttl_string}"; break; case "MX": - $record_data = "@{$hostname}::{$recordip}:{$dist}{$ttl_string}"; + $record_data = "@{$hostname}:{$recordip}:{$dist}{$ttl_string}"; break; case "PTR": /* "^" creates "PTR" record only to allow reverse DNS */ |