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