Siteconfig: regroup settings
[citadel.git] / webcit / static / t / aide / siteconfig / tab_smtp.html
1 <div class="conftitle"><?_("SMTP-Servers")></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 <tr><td><?_("SMTP MTA port (-1 to disable)")></td><td>
6 <input type="text" NAME="c_smtp_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_smtp_port")>'></td></tr>
7
8 <tr><td><?_("SMTP MSA port (-1 to disable)")></td><td>
9 <input type="text" NAME="c_msa_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_msa_port")>'></td></tr>
10
11 <tr><td><?_("SMTP over SSL port (-1 to disable)")></td><td>
12 <input type="text" NAME="c_smtps_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_smtps_port")>'></td></tr>
13
14 <tr><td><?_("Perform RBL checks upon connect instead of after RCPT")></td><td>
15 <input type="checkbox" NAME="c_rbl_at_greeting" VALUE="yes" <?%("COND:SERVCFG", 1, "c_rbl_at_greeting", 1, "CHECKED", "")>></td></tr>
16
17 <tr><td><?_("Flag message as spam, instead of rejecting it")></td><td>
18 <input type="checkbox" NAME="c_spam_flag_only" VALUE="yes" <?%("COND:SERVCFG", 1, "c_spam_flag_only", 1, "CHECKED", "")>></td></tr>
19
20 <tr><td><?_("Allow unauthenticated SMTP clients to spoof this sites domains")></td><td>
21 <input type="checkbox" NAME="c_allow_spoofing" VALUE="yes" <?%("COND:SERVCFG", 1, "c_allow_spoofing", 1, "CHECKED", "")>></td></tr>
22
23 <tr><td><?_("Correct forged From: lines during authenticated SMTP")></td><td>
24 <ul>
25 <li>
26  <input type="radio" NAME="c_rfc822_strict_from" value="<?DEF:VAL(#"CFG_SMTP_FROM_FILTERALL")>" <?%("COND:SERVCFG", 1, "c_rfc822_strict_from", #"CFG_SMTP_FROM_FILTERALL", "CHECKED", "")> />
27   <?_("Always replace / insert the users primary email address")>
28 </li><li>
29  <input type="radio" NAME="c_rfc822_strict_from" value="<?DEF:VAL(#"CFG_SMTP_FROM_NOFILTER")>"  <?%("COND:SERVCFG", 1, "c_rfc822_strict_from", #"CFG_SMTP_FROM_NOFILTER",  "CHECKED", "")> />
30  <?_("Don't check the From: header at all")>
31 </li><li>
32  <input type="radio" NAME="c_rfc822_strict_from" value="<?DEF:VAL(#"CFG_SMTP_FROM_CORRECT")>"   <?%("COND:SERVCFG", 1, "c_rfc822_strict_from", #"CFG_SMTP_FROM_CORRECT",   "CHECKED", "")> />
33  <?_("If the specified email is none of the users email-aliases, replace it with his primary mail address")>
34 </li><li>
35  <input type="radio" NAME="c_rfc822_strict_from" value="<?DEF:VAL(#"CFG_SMTP_FROM_REJECT")>"    <?%("COND:SERVCFG", 1, "c_rfc822_strict_from", #"CFG_SMTP_FROM_REJECT",    "CHECKED", "")> />
36  <?_("If the specified email is none of the users email-aliases or missing, refuse to relay the email")>
37 </li>
38 </ul>
39 </td></tr>
40
41 <tr><td colspan=2><hr></td></tr>
42
43 <tr><td><a href="http://www.postfix.org/tcp_table.5.html"><?_("Postfix TCP Dictionary Port")></a>(<?_("-1 to disable")>)</td><td>
44 <input type="text" NAME="c_pftcpdict_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_pftcpdict_port")>'></td></tr>
45
46 <tr><td><?_("ManageSieve Port (-1 to disable)")></td><td>
47 <input type="text" NAME="c_mgesve_port" MAXLENGTH="5" VALUE='<?SERV:CFG("c_mgesve_port")>'></td></tr>
48
49 </table>