My setup:
Network: 192.168.0.0/255
WAN->LAN: SMTP etc. is routed directly from WAN->192.168.0.12
SME server sme.domain.com (192.168.0.2)
Setup as: Stand-alone server
Serving: DHCP, (local/split)DNS, HTTP
Email delivery settings:
Unknown Users = reject
Delegate mail servers = 192.168.0.12
Hostnames and addresses:
sme.domain.com 192.168.0.2
mail.domain.com 192.168.0.12
Mailserver: mail.domain.com (192.168.0.12)
What I would like SME Server MX Records for domain.com (and optionally domain2.com and further domains) to point to 192.168.0.12 instead of the server itself.
Since I use a split DNS scenario where the SME acting as DHCP+DNS I need to know how to have the DNS feed the correct MX address (192.168.0.12) to my inside clients. This is both to make sure that resolving is correct on the inside but also so that the mailserver can verify its own MX.
Looking up the MX for domain.com and domain1.com with "dig domain.com" gives me the following:
domain.com. 86400 IN MX 0 sme.domain.com.
Of course I'd like the result to look like this instead

domain.com. 86400 IN MX 0 mail.domain.com.
How do I achieve this?
Is there perhaps a contrib (rpm) that gives me an "Advanced DNS" setup in the server-manager?
Otherwise, which files will I need to "nano" to get it to do what I want?
Thanks in advance. And sorry if this has already been asked a thousand times but a search gave me heaps and heaps of useless results. Thanks.