diff options
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/services_dyndns.php | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/usr/local/www/services_dyndns.php b/usr/local/www/services_dyndns.php index 8dde7f8..3528fc5 100755 --- a/usr/local/www/services_dyndns.php +++ b/usr/local/www/services_dyndns.php @@ -136,9 +136,9 @@ function enable_change(enable_change) { endis = !(document.iform.enable.checked || enable_change); document.iform.host.disabled = endis; - //document.iform.mx.disabled = endis; + document.iform.mx.disabled = endis; document.iform.type.disabled = endis; - //document.iform.wildcard.disabled = endis; + document.iform.wildcard.disabled = endis; document.iform.username.disabled = endis; document.iform.password.disabled = endis; @@ -197,6 +197,22 @@ function enable_change(enable_change) { </td> </tr> <tr> + <td width="22%" valign="top" class="vncell">MX</td> + <td width="78%" class="vtable"> + <input name="mx" type="text" class="formfld" id="mx" size="30" value="<?=htmlspecialchars($pconfig['mx']);?>"> + <br> + Note: With DynDNS service you can only use a hostname, not an IP address. + <br> + Set this option only if you need a special MX record. Not + all services support this.</td> + </tr> + <tr> + <td width="22%" valign="top" class="vncellreq">Wildcards</td> + <td width="78%" class="vtable"> + <input name="wildcard" type="checkbox" id="wildcard" value="yes" <?php if ($pconfig['wildcard']) echo "checked"; ?>> + Enable Wildcard</td> + </tr> + <tr> <td width="22%" valign="top" class="vncellreq">Username</td> <td width="78%" class="vtable"> <input name="username" type="text" class="formfld" id="username" size="20" value="<?=htmlspecialchars($pconfig['username']);?>"> |