summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_dyndns.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-05-04 00:37:01 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-05-04 00:37:01 +0000
commit9b8dc8219d0381b0e3d6856729e101f2f3bbd284 (patch)
treefa8789ae3029d7f0647e77bc1abd8eba05597d0b /usr/local/www/services_dyndns.php
parent9896b0dcca12a1341707ec72a0a763875a7e6232 (diff)
downloadpfsense-9b8dc8219d0381b0e3d6856729e101f2f3bbd284.zip
pfsense-9b8dc8219d0381b0e3d6856729e101f2f3bbd284.tar.gz
MFC DYNDNS fixes
Diffstat (limited to 'usr/local/www/services_dyndns.php')
-rwxr-xr-xusr/local/www/services_dyndns.php20
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']);?>">
OpenPOWER on IntegriCloud