edit_server_dovecot.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <!-- Begin toolbar -->
  2. <div class="l-center edit">
  3. <div class="l-sort clearfix">
  4. <div class="l-unit-toolbar__buttonstrip">
  5. <a class="ui-button cancel" dir="ltr" id="btn-back" href="/list/server/"><i class="fas fa-arrow-left status-icon blue"></i><?=_('Back');?></a>
  6. </div>
  7. <div class="l-unit-toolbar__buttonstrip float-right">
  8. <a href="#" class="ui-button" data-action="submit" data-id="vstobjects"><i class="fas fa-save status-icon purple"></i><?=_('Save');?></a>
  9. </div>
  10. </div>
  11. </div>
  12. <!-- End toolbar -->
  13. <div class="l-separator"></div>
  14. <div class="l-center animated fadeIn">
  15. <form id="vstobjects" name="v_configure_server" method="post">
  16. <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
  17. <input type="hidden" name="save" value="save" />
  18. <table class="data mode-add">
  19. <tr class="data-add">
  20. <td class="data-dotted">
  21. <table class="data-col1">
  22. <tr>
  23. <td></td>
  24. </tr>
  25. </table>
  26. </td>
  27. <td>
  28. <table class="data-col2" width="600px">
  29. <tr>
  30. <td class="step-top">
  31. <span class="page-title"><?=_('Configuring Server');?>: <?=$v_service_name;?></span>
  32. </td>
  33. </tr>
  34. <tr>
  35. <td>
  36. <?php show_error_panel($_SESSION);?>
  37. </td>
  38. </tr>
  39. <tr>
  40. <td class="vst-text step-top">
  41. <?=$v_config_path;?>
  42. </td>
  43. </tr>
  44. <tr>
  45. <td>
  46. <textarea class="vst-textinput console" name="v_config"><?=$v_config?></textarea>
  47. </td>
  48. </tr>
  49. <?php if (!empty($v_config_path1)) { ?>
  50. <tr>
  51. <td class="vst-text step-top">
  52. <?=$v_config_path1;?>
  53. </td>
  54. </tr>
  55. <tr>
  56. <td>
  57. <textarea class="vst-textinput console" name="v_config1"><?=$v_config1?></textarea>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td class="vst-text step-top">
  62. <?=$v_config_path2;?>
  63. </td>
  64. </tr>
  65. <tr>
  66. <td>
  67. <textarea class="vst-textinput console" name="v_config2"><?=$v_config2?></textarea>
  68. </td>
  69. </tr>
  70. <tr>
  71. <td class="vst-text step-top">
  72. <?=$v_config_path3;?>
  73. </td>
  74. </tr>
  75. <tr>
  76. <td>
  77. <textarea class="vst-textinput console" name="v_config3"><?=$v_config3?></textarea>
  78. </td>
  79. </tr>
  80. <tr>
  81. <td class="vst-text step-top">
  82. <?=$v_config_path4;?>
  83. </td>
  84. </tr>
  85. <tr>
  86. <td>
  87. <textarea class="vst-textinput console" name="v_config4"><?=$v_config4?></textarea>
  88. </td>
  89. </tr>
  90. <tr>
  91. <td class="vst-text step-top">
  92. <?=$v_config_path5;?>
  93. </td>
  94. </tr>
  95. <tr>
  96. <td>
  97. <textarea class="vst-textinput console" name="v_config5"><?=$v_config5?></textarea>
  98. </td>
  99. </tr>
  100. <tr>
  101. <td class="vst-text step-top">
  102. <?=$v_config_path6;?>
  103. </td>
  104. </tr>
  105. <tr>
  106. <td>
  107. <textarea class="vst-textinput console" name="v_config6"><?=$v_config6?></textarea>
  108. </td>
  109. </tr>
  110. <tr>
  111. <td class="vst-text step-top">
  112. <?=$v_config_path7;?>
  113. </td>
  114. </tr>
  115. <tr>
  116. <td>
  117. <textarea class="vst-textinput console" name="v_config7"><?=$v_config7?></textarea>
  118. </td>
  119. </tr>
  120. <tr>
  121. <td class="vst-text step-top">
  122. <?=$v_config_path8;?>
  123. </td>
  124. </tr>
  125. <tr>
  126. <td>
  127. <textarea class="vst-textinput console" name="v_config8"><?=$v_config8?></textarea>
  128. </td>
  129. </tr>
  130. <?php } ?>
  131. <td class="vst-text input-label" style="text-transform: capitalize;">
  132. <label><input type="checkbox" size="20" class="vst-checkbox" name="v_restart" checked="yes"><?=_('restart');?></label>
  133. </td>
  134. </table>
  135. <table class="data-col2"></table>
  136. </td>
  137. </tr>
  138. </table>
  139. </form>
  140. </div>