* more work on sitewide config
[citadel.git] / webcit / static / t / tab_siteconfig_network.html
1 <center>
2 <h1><?_("Network services")></h1>
3 <h2><?_("Changes made on this screen will not take effect until you restart the Citadel server.")></h2>
4
5 <table border="0">
6
7
8 <tr><td><?_("SMTP MTA port (-1 to disable)"></td><td>
9 <input type="text" NAME="c_smtp_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_smtp_port")>'>
10 </td></tr>
11
12
13 <tr><td><?_("Correct forged From: lines during authenticated SMTP")></td><td>
14 <input type="checkbox" NAME="c_rfc822_strict_from" VALUE="yes" '<?SERV:CFG("c_rfc822_strict_from")>'>
15 </td></tr>
16
17 <tr><td><?_("IMAP listener port (-1 to disable)")></td><td>
18 <input type="text" NAME="c_imap_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_imap_port")>'>
19 </td></tr>
20
21
22 <tr><td><?_("Network run frequency (in seconds)")></td><td>
23 <input type="text" NAME="c_net_freq" MAXLENGTH="5" VALUE='<?SERV:CFG("c_net_freq")>'>
24 </td></tr>
25
26 <tr><td><?_("Server IP address (0.0.0.0 for 'any')")></td><td>
27 <input type="text" NAME="c_ip_addr" MAXLENGTH="15" VALUE='<?SERV:CFG("c_ip_addr")>'>
28 </td></tr>
29
30
31 <tr><td><?_("SMTP MSA port (-1 to disable)")></td><td>
32 <input type="text" NAME="c_msa_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_msa_port")>'>
33 </td></tr>
34
35
36 <tr><td><?_("IMAP over SSL port (-1 to disable)")></td><td>
37 <input type="text" NAME="c_imaps_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_imaps_port")>'>
38 </td></tr>
39
40 <tr><td><?_("SMTP over SSL port (-1 to disable)")></td><td>
41 <input type="text" NAME="c_smtps_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_smtps_port")>'>
42 </td></tr>
43
44 <tr><td><?_("Instantly expunge deleted messages in IMAP")></td><td>
45 <input type="checkbox" NAME="c_instant_expunge" VALUE="yes" %s>
46 </td></tr>
47
48 <!-- TODO: allow random quotes in strings -->
49 <tr><td><?_("Allow unauthenticated SMTP clients to spoof this sites domains")></td><td>
50 <input type="checkbox" NAME="c_allow_spoofing" VALUE="yes" %s>
51 </td></tr>
52
53 <tr><td><a href="http://www.postfix.org/tcp_table.5.html"><?("Postfix TCP Dictionary Port")></a>(<?("-1 to disable")>)</td><td>
54 <input type="text" NAME="c_pftcpdict_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_pftcpdict_port")>'>
55 </td></tr>
56
57
58 <tr><td><?_("ManageSieve Port (-1 to disable)")></td><td>
59 <input type="text" NAME="c_mgesve_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_mgesve_port")>'>
60 </td></tr>
61
62 <tr><td><?_("Perform RBL checks upon connect instead of after RCPT")></td><td>
63 <input type="checkbox" NAME="c_rbl_at_greeting" VALUE="yes" '<?SERV:CFG("c_rbl_at_greeting")>'>
64 </td></tr>
65
66 <tr><td><?_("Keep original from headers in IMAP")></td><td>
67 <input type="checkbox" NAME="c_imap_keep_from" VALUE="yes" '<?SERV:CFG("c_imap_keep_from")>'>
68 </td></tr>
69
70
71 <tr><td><?_("XMPP (Jabber) client to server port (-1 to disable)")></td><td>
72 <input type="text" name="c_xmpp_c2s_port" maxlength="5" value='<?SERV:CFG("c_xmpp_c2s_port")>'>
73 </td></tr>
74
75
76 <tr><td><?_("XMPP (Jabber) server to server port (-1 to disable)")></td><td>
77 <input type="hidden" name="c_xmpp_s2s_port" value='<?SERV:CFG("c_xmpp_s2s_port")>'>
78 </td></tr>