![]() |
Manual lines in DNS zone file - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Development Area (/forum-1.html) +--- Forum: General discussion (/forum-11.html) +--- Thread: Manual lines in DNS zone file (/thread-3727.html) |
RE: Manual lines in DNS zone file - kilburn - 12-24-2008 07:17 PM sci2tech Wrote:I did not included in RC7 because things can be easy broken by clients that do not know what DNS is If this is the real reason I suggest adding a configuration option (allow manual dns setup) disabled by default. Otherwise this patch will surely break sooner or later and may cause upgrade problems to people that use it, etc. I can implement it if you agree with my suggestion sci2tech, just give me an "ok, do it!" ![]() RE: Manual lines in DNS zone file - sci2tech - 12-25-2008 04:49 AM Blondak already added this functionality ![]() RE: Manual lines in DNS zone file - Mister_K - 01-07-2009 08:17 AM for install in rc7 its possible ? i want plz ![]() RE: Manual lines in DNS zone file - sci2tech - 01-08-2009 01:50 AM Use the patch http://www.isp-control.net/forum/attachment.php?aid=548 RE: Manual lines in DNS zone file - itanium - 01-08-2009 02:00 AM Or this in the root of directory where is gui, engine, docs etc... patch -p1< patch_dns.txt Ps: tested in RC7 last svn and no problem. RE: Manual lines in DNS zone file - TXC - 01-08-2009 03:51 AM possibility to change MX records would be great. RE: Manual lines in DNS zone file - Mister_K - 01-08-2009 05:59 AM sorry im french but : Installation : 1- Code: CREATE TABLE IF NOT EXISTS `domain_dns` ( `domain_dns_id` int(11) NOT NULL auto_increment, `domain_id` int(11) NOT NULL, `alias_id` int(11) default NULL, `domain_dns` varchar(50) NOT NULL, `domain_class` enum('IN','CH','HS') NOT NULL default 'IN', `domain_type` enum('A','AAAA','CERT','CNAME','DNAME','GPOS','KEY','KX','MX','NAPTR','NSAP','NS ','NXT','PTR','PX','SIG','SRV','TXT') NOT NULL default 'A', `domain_text` varchar(128) NOT NULL, PRIMARY KEY (`domain_dns_id`) ); 2- Command for use ? http://www.isp-control.net/forum/attachment.php?aid=529 3- Patch rc7 Command for use ? http://www.isp-control.net/forum/attachment.php?aid=548 Plz ![]() RE: Manual lines in DNS zone file - TXC - 01-08-2009 06:27 AM 2 & 3: patch -p1< [FILENAME] (replace [FILENAME] with filename of file you downloaded) RE: Manual lines in DNS zone file - Mister_K - 01-08-2009 09:16 AM thx ![]() RE: Manual lines in DNS zone file - Blondak - 01-08-2009 06:26 PM (01-08-2009 03:51 AM)TXC Wrote: possibility to change MX records would be great. This is possible, and can be easily done, but I don't know if is it good idea, maybe I can do per user allowed record types, but there are some thinks to discuss. I think that at first we must make this "fool proof", as sci2tech wrote, that's reason why i expect some feedback, but I can add "Per User Allowed Record Types" to wishlist ![]() With regards Blondak edit: I create patch against latest patch with MX support (edit_dns.php $DNS_allowed_types) |