* add frontent code for xmpps port
[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 </center>
5 <table border="0">
6
7 <tr><td><?_("SMTP MTA port (-1 to disable)")></td><td>
8 <input type="text" NAME="c_smtp_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_smtp_port")>'></td></tr>
9
10 <tr><td><?_("Correct forged From: lines during authenticated SMTP")></td><td>
11 <input type="checkbox" NAME="c_rfc822_strict_from" VALUE="yes" <?%("COND:SERVCFG", 1, "c_rfc822_strict_from", 1, "", "CHECKED")>></td></tr>
12
13 <tr><td><?_("Flag message as spam, instead of rejecting it")></td><td>
14 <input type="checkbox" NAME="c_spam_flag_only" VALUE="yes" <?%("COND:SERVCFG", 1, "c_spam_flag_only", 1, "CHECKED", "")>></td></tr>
15
16 <tr><td><?_("IMAP listener port (-1 to disable)")></td><td>
17 <input type="text" NAME="c_imap_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_imap_port")>'></td></tr>
18
19
20 <tr><td><?_("Network run frequency (in seconds)")></td><td>
21 <input type="text" NAME="c_net_freq" MAXLENGTH="5" VALUE='<?SERV:CFG("c_net_freq")>'></td></tr>
22
23 <tr><td><?_("Server IP address (0.0.0.0 for 'any')")></td><td>
24 <input type="text" NAME="c_ip_addr" MAXLENGTH="15" VALUE='<?SERV:CFG("c_ip_addr")>'></td></tr>
25
26 <tr><td><?_("SMTP MSA port (-1 to disable)")></td><td>
27 <input type="text" NAME="c_msa_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_msa_port")>'></td></tr>
28
29 <tr><td><?_("IMAP over SSL port (-1 to disable)")></td><td>
30 <input type="text" NAME="c_imaps_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_imaps_port")>'></td></tr>
31
32 <tr><td><?_("SMTP over SSL port (-1 to disable)")></td><td>
33 <input type="text" NAME="c_smtps_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_smtps_port")>'></td></tr>
34
35 <tr><td><?_("Instantly expunge deleted messages in IMAP")></td><td>
36 <input type="checkbox" NAME="c_instant_expunge" VALUE="yes" <?%("COND:SERVCFG", 1, "c_instant_expunge", 1, "CHECKED", "")>></td></tr>
37
38 <!-- TODO: allow random quotes in strings -->
39 <tr><td><?_("Allow unauthenticated SMTP clients to spoof this sites domains")></td><td>
40 <input type="checkbox" NAME="c_allow_spoofing" VALUE="yes" <?%("COND:SERVCFG", 1, "c_allow_spoofing", 1, "CHECKED", "")>></td></tr>
41
42 <tr><td><a href="http://www.postfix.org/tcp_table.5.html"><?_("Postfix TCP Dictionary Port")></a>(<?_("-1 to disable")>)</td><td>
43 <input type="text" NAME="c_pftcpdict_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_pftcpdict_port")>'></td></tr>
44
45 <tr><td><?_("ManageSieve Port (-1 to disable)")></td><td>
46 <input type="text" NAME="c_mgesve_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_mgesve_port")>'></td></tr>
47
48 <tr><td><?_("Perform RBL checks upon connect instead of after RCPT")></td><td>
49 <input type="checkbox" NAME="c_rbl_at_greeting" VALUE="yes" <?%("COND:SERVCFG", 1, "c_rbl_at_greeting", 1, "CHECKED", "")>></td></tr>
50
51 <tr><td><?_("Keep original from headers in IMAP")></td><td>
52 <input type="checkbox" NAME="c_imap_keep_from" VALUE="yes" <?%("COND:SERVCFG", 1, "c_imap_keep_from", 1, "CHECKED", "")>></td></tr>
53
54 <tr><td><?_("XMPP (Jabber) client to server port (-1 to disable)")></td><td>
55 <input type="text" name="c_xmpp_c2s_port" maxlength="5" value='<?SERV:CFG("c_xmpp_c2s_port")>'></td></tr>
56
57 <tr><td><?_("XMPP (Jabber) server to server port (-1 to disable)")></td><td>
58 <input type="hidden" name="c_xmpp_s2s_port" value='<?SERV:CFG("c_xmpp_s2s_port")>'></td></tr>
59
60 <tr><td><?_("XMPP (Jabber) client to server SSL port (-1 to disable)")></td><td>
61 <input type="text" name="c_xmpps_c2s_port" maxlength="5" value='<?SERV:CFG("c_xmpps_c2s_port")>'></td></tr>
62
63 </table>