<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>I'm trying to make the transition from v2.9 to v3.x but am running into issues regarding wildcards.<br><br>Here's an example of the query logic being used for both versions:<br><br>mysql> select id,domain_id,name,type from records where name = 'testdomain.com';<br>+----------+-----------+-----------+------+<br>| id       | domain_id | name      | type |<br>+----------+-----------+-----------+------+<br>| 37216424 |   2119933 | testdomain.com | MX   |<br>| 37216397 |   2119933 | testdomain.com | NS   |<br>| 37216398 |   2119933 | testdomain.com | NS   |<br>| 52774643 |   2119933 | testdomain.com | SOA  |<br>| 47269400 |   2119933 | testdomain.com | TXT  |<br>+----------+-----------+-----------+------+<br>5 rows in set (0.00 sec)<br><br>v2.9:<br>Query    select content,ttl,prio,type,domain_id,name from records where name='testdomain.com'<br>Query    select content,ttl,prio,type,domain_id,name from records where type='SOA' and name='testdomain.com'<br>Query    select content,ttl,prio,type,domain_id,name from records where name='*.com'<br><br>v3.3:<br>Query     select content,ttl,prio,type,domain_id,name from records where type='SOA' and name='testdomain.com'<br>Query     select content,ttl,prio,type,domain_id,name from records where name='testdomain.com' and domain_id=2119933<br><br>In version 2.9, when I query for testdomain.com's A record, pdns checks it's zone, doesn't find an A rr or wildcard label and then moves up the tree and finds and returns the wildcard entry I have setup in the 'com' zone.<br><br>In version 3.x, pdns only checks what's in testdomain.com's zone, doesn't find the A rr or wildcard and returns with an empty response. I know this is related to rfc guidelines, but for now I need to retain the old behavior. I tried the pipe backend via a perl script, but the amount of dns traffic proved to be too great and severely affected performance.<br><br>Hoping someone here has faced a similar issue and can provide a solution.<br><br>Thanks,<br><br>Billy<br>                                           </div></body>
</html>