diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-01-31 03:06:56 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-01-31 03:06:56 +0000 |
commit | b803a7206b4c1cbb93f56fd6473dd12a89f1161f (patch) | |
tree | a5234974a6e43894ae1e729aa9191288652b6ef8 | |
parent | a2e2bc591f00ddaa7adeeece73e6ef4868dddf04 (diff) | |
download | pfsense-packages-b803a7206b4c1cbb93f56fd6473dd12a89f1161f.tar.gz pfsense-packages-b803a7206b4c1cbb93f56fd6473dd12a89f1161f.tar.bz2 pfsense-packages-b803a7206b4c1cbb93f56fd6473dd12a89f1161f.zip |
Eliminate wierd characters from the file that was crashing the xml parser.
-rw-r--r-- | packages/postfix.xml | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/packages/postfix.xml b/packages/postfix.xml index 02d908bd..4833b04a 100644 --- a/packages/postfix.xml +++ b/packages/postfix.xml @@ -1,18 +1,14 @@ <?xml version="1.0" encoding="utf-8" ?> <packagegui> <name>postfix</name> - <donotsave>false</donotsave> <preoutput>yes</preoutput> <savetext>Change</savetext> - <!-- Menu is where this packages menu will appear --> <menu> <name>Postfix Settings</name> <tooltiptext>Configure Postfix Forwarder</tooltiptext> <section>Services</section> <configfile>postfix.xml</configfile> </menu> - <!-- Do not save invokes a simple input menu and will not update - the configuration database. --> <fields> <field> <fielddescr>Primary Domain</fielddescr> @@ -30,22 +26,22 @@ <type>rowhelper</type> <rowhelper> <rowhelperfield> - <fielddescr>Domain</fielddescr> - <fieldname>domain</fieldname> - <description>Enter the domain here (ex: example.com)</description> - <type>input</type> + <type>input</type> + <size>20</size> + <fieldname>domain</fieldname> + <fielddescr>Domain</fielddescr> + <description>Enter the domain here (ex: example.com)</description> </rowhelperfield> <rowhelperfield> + <type>input</type> + <size>20</size> + <fieldname>mailserverip</fieldname> <fielddescr>Mail Server IP</fielddescr> - <fieldname>mailserverip</fieldname> - <description>Enter the mail server IP to forward to here.</description> - <type>input</type> + <description>Enter the mail server IP to forward to here.</description> </rowhelperfield> </rowhelper> </field> </fields> - <!-- fields gets invoked when the user adds or edits a item. the following items - will be parsed and rendered for the user as a gui with input, and selectboxes. --> <custom_add_php_command> </custom_add_php_command> <custom_php_deinstall_command> |