Changeset 153
- Timestamp:
- 08/24/07 14:07:42 (17 months ago)
- Location:
- trunk
- Files:
-
- 12 modified
-
includes/config.inc.php (modified) (1 diff)
-
templates/cont_headline.tpl (modified) (1 diff)
-
templates/email_del.tpl (modified) (1 diff)
-
templates/email_view.tpl (modified) (27 diffs)
-
templates/forward_add.tpl (modified) (3 diffs)
-
templates/forward_catchall.tpl (modified) (1 diff)
-
templates/forward_del.tpl (modified) (3 diffs)
-
templates/user_autores.tpl (modified) (2 diffs)
-
templates/user_forward.tpl (modified) (4 diffs)
-
templates/user_index.tpl (modified) (1 diff)
-
templates/user_options.tpl (modified) (3 diffs)
-
templates/user_salearn.tpl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/config.inc.php
r144 r153 54 54 55 55 //Mailinglistenfeature: 56 $config['mailinglisten'] = ' y'; //Development, please don't use!56 $config['mailinglisten'] = 'n'; //Development, please don't use! 57 57 //Run Systemscript via xinetd Service 58 58 $config['service_enabled'] = 'n'; // Development, please don't use! -
trunk/templates/cont_headline.tpl
r152 r153 46 46 {$email}: {$labels.email_address} {t}delete{/t} 47 47 {elseif $template == "forward_del.tpl"} 48 {$dnsname}: { $labels.forwarding} {t}delete{/t}48 {$dnsname}: {t}delete forwarding{/t} 49 49 {elseif $template == "domain_del.tpl" && $if_del_ok == 'n'} 50 50 {$domain}: {t}delete{/t} -
trunk/templates/email_del.tpl
r144 r153 3 3 {if $if_del_ok != "y" } 4 4 <div style="color:red;"> 5 { $labels.de_email_del1} {$email} {$labels.de_email_del2}<br/><br/>5 {t 1=$email}Should the emailaddress %1 really deleted?{/t}<br/><br/> 6 6 </div> 7 7 <form action="?module=email_del&id={$id}&did={$did}" method="post"> 8 8 <input type="hidden" name="del_ok" value="true"/> 9 <input type="submit" name="submit" value="{ $labels.Del}" />9 <input type="submit" name="submit" value="{t}delete{/t}" /> 10 10 </form> 11 11 <br/> 12 12 {else} 13 <div style="color:blue;">{ $labels.ed_email_deleted}<br/><br/></div>14 < !-- <meta http-equiv="refresh" content="1; URL=?module=domain_view&did={$did}"> -->13 <div style="color:blue;">{t}emailaddress is deleted!{/t}<br/><br/></div> 14 <meta http-equiv="refresh" content="1; URL=?module=domain_view&did={$did}"> 15 15 <br/> 16 16 {/if} -
trunk/templates/email_view.tpl
r149 r153 3 3 <table> 4 4 <tr> 5 <td style="width:190px;">{ $labels.email_address}:</td>5 <td style="width:190px;">{t}emailaddress:{/t}</td> 6 6 <td style="width:300px;">{$full_email}</td> 7 7 </tr> 8 8 <tr> 9 <td>{ $labels.full_name}:</td>9 <td>{t}full name:{/t}</td> 10 10 <td><input type="text" name="full_name" value="{$full_name}"/></td> 11 11 </tr> 12 12 <tr> 13 <td>{ $labels.password}:</td>13 <td>{t}password:{/t}</td> 14 14 <td><input type="password" maxlength="{$max_passwd_len}" name="npassword" value=""/></td> 15 15 </tr> 16 16 {if $if_imap == '1' } 17 17 <tr> 18 <td>{ $labels.imap_connection}:</td>18 <td>{t}imap connection:{/t}</td> 19 19 <td><select name="imap"> 20 <option value="enable">{ $labels.opt_yes}</option>20 <option value="enable">{t}yes{/t}</option> 21 21 {if $if_imap_value == 0} 22 <option value="disable" selected="selected">{ $labels.opt_no}</option>22 <option value="disable" selected="selected">{t}no{/t}</option> 23 23 {else} 24 <option value="disable">{ $labels.opt_no}</option>24 <option value="disable">{t}no{/t}</option> 25 25 {/if} 26 26 </select></td> … … 29 29 {if $if_pop3 == '1' } 30 30 <tr> 31 <td>{ $labels.pop3_connection}:</td>31 <td>{t}pop3 connection:{/t}</td> 32 32 <td><select name="pop3"> 33 <option value="enable">{ $labels.opt_yes}</option>33 <option value="enable">{t}yes{/t}</option> 34 34 {if $if_pop3_value == 0} 35 <option value="disable" selected="selected" >{ $labels.opt_no}</option>35 <option value="disable" selected="selected" >{t}no{/t}</option> 36 36 {else} 37 <option value="disable" >{ $labels.opt_no}</option>37 <option value="disable" >{t}no{/t}</option> 38 38 {/if} 39 39 </select></td> … … 42 42 {if $if_webmail == 1 } 43 43 <tr> 44 <td>{ $labels.p_webmail}:</td>44 <td>{t}webmail available:{/t}</td> 45 45 <td><select name="webmail"> 46 <option value="enable">{ $labels.opt_yes}</option>46 <option value="enable">{t}yes{/t}</option> 47 47 {if $if_webmail_value == 0 } 48 <option value="disable" selected="selected" >{ $labels.opt_no}</option>48 <option value="disable" selected="selected" >{t}no{/t}</option> 49 49 {else} 50 <option value="disable" >{ $labels.opt_no}</option>50 <option value="disable" >{t}no{/t}</option> 51 51 {/if} 52 52 </select></td> … … 55 55 {if $if_webinterface == 1 } 56 56 <tr> 57 <td> Zugriff zum CpVES-Webinterface:</td>57 <td>{t}access to CpVES webinterface:{/t}</td> 58 58 <td><select name="webinterface"> 59 <option value="enable">{ $labels.opt_yes}</option>59 <option value="enable">{t}yes{/t}</option> 60 60 {if $if_webinterface_value == 0 } 61 <option value="disable" selected="selected" >{ $labels.opt_no}</option>61 <option value="disable" selected="selected" >{t}no{/t}</option> 62 62 {else} 63 <option value="disable" >{ $labels.opt_no}</option>63 <option value="disable" >{t}no{/t}</option> 64 64 {/if} 65 65 </select></td> … … 68 68 {if $if_fetchmail == 1 } 69 69 <tr> 70 <td> Fetchmail:</td>70 <td>{t}fetchmail:{/t}</td> 71 71 <td><select name="fetchmail"> 72 <option value="enable">{ $labels.opt_yes}</option>72 <option value="enable">{t}yes{/t}</option> 73 73 {if $if_fetchmail_value == 0 } 74 <option value="disable" selected="selected" >{ $labels.opt_no}</option>74 <option value="disable" selected="selected" >{t}no{/t}</option> 75 75 {else} 76 <option value="disable" >{ $labels.opt_no}</option>76 <option value="disable" >{t}no{/t}</option> 77 77 {/if} 78 78 </select></td> … … 80 80 {/if} 81 81 <tr> 82 <td>{ $labels.p_forwarding}:</td>82 <td>{t}forwarding available:{/t}</td> 83 83 <td><select name="forwarding"> 84 <option value="enable">{ $labels.opt_yes}</option>84 <option value="enable">{t}yes{/t}</option> 85 85 {if $if_forwarding_value == 0 } 86 <option value="disable" selected="selected">{ $labels.opt_no}</option>86 <option value="disable" selected="selected">{t}no{/t}</option> 87 87 {else} 88 <option value="disable">{ $labels.opt_no}</option>88 <option value="disable">{t}no{/t}</option> 89 89 {/if} 90 90 </select></td> … … 93 93 {if $if_spamassassin == '1' } 94 94 <tr> 95 <td>{ $labels.p_sa}:</td>95 <td>{t}spamassassin:{/t}</td> 96 96 <td><select name="spamassassin"> 97 <option value="enable">{ $labels.opt_yes}</option>97 <option value="enable">{t}yes{/t}</option> 98 98 {if $if_spamassassin_value == 0 } 99 <option value="disable" selected="selected">{ $labels.opt_no}</option>100 {else} 101 <option value="disable">{ $labels.opt_no}</option>99 <option value="disable" selected="selected">{t}no{/t}</option> 100 {else} 101 <option value="disable">{t}no{/t}</option> 102 102 {/if} 103 103 </select></td> … … 105 105 {/if} 106 106 {if $if_sa_learn == 1 } 107 <td> Spam/Ham-lernbar:</td>107 <td>{t}ham/spam learning:{/t}</td> 108 108 <td><select name="sa_learn"> 109 <option value="enable">{ $labels.opt_yes}</option>109 <option value="enable">{t}yes{/t}</option> 110 110 {if $if_sa_learn_value == 0} 111 <option value="disable" selected="selected">{ $labels.opt_no}</option>112 {else} 113 <option value="disable">{ $labels.opt_no}</option>111 <option value="disable" selected="selected">{t}no{/t}</option> 112 {else} 113 <option value="disable">{t}no{/t}</option> 114 114 {/if} 115 115 </select></td> … … 117 117 {/if} 118 118 {if $if_spam_del == 1 } 119 <td> Spam löschen möglich:</td>119 <td>{t}delete spam:{/t}</td> 120 120 <td><select name="spam_del"> 121 <option value="enable">{ $labels.opt_yes}</option>121 <option value="enable">{t}yes{/t}</option> 122 122 {if $if_spam_del_value == 0} 123 <option value="disable" selected="selected">{ $labels.opt_no}</option>124 {else} 125 <option value="disable">{ $labels.opt_no}</option>123 <option value="disable" selected="selected">{t}no{/t}</option> 124 {else} 125 <option value="disable">{t}no{/t}</option> 126 126 {/if} 127 127 </select></td> … … 129 129 {if $if_bogofilter == '1' } 130 130 <tr> 131 <td>{ $labels.p_bogofilter}:</td>131 <td>{t}bogofilter:{/t}</td> 132 132 <td><select name="bogofilter"> 133 <option value="enable">{ $labels.opt_yes}</option>133 <option value="enable">{t}yes{/t}</option> 134 134 {if $if_bogofilter_value == 0 } 135 <option value="disable" selected="selected">{ $labels.opt_no}</option>136 {else} 137 <option value="disable">{ $labels.opt_no}</option>135 <option value="disable" selected="selected">{t}no{/t}</option> 136 {else} 137 <option value="disable">{t}no{/t}</option> 138 138 {/if} 139 139 </select></td> … … 142 142 {if $if_mailarchive == 1 } 143 143 <tr> 144 <td>{ $labels.p_mailarchive}:</td>144 <td>{t}archivemail:{/t}</td> 145 145 <td><select name="mailachrive"> 146 <option value="enable">{ $labels.opt_yes}</option>146 <option value="enable">{t}yes{/t}</option> 147 147 {if $if_mailarchive_value == 0} 148 148 <option value="disbale" selected="selected">{$labels.opt_no}</option> 149 149 {else} 150 <option value="disbale">{ $labels.opt_no}</option>150 <option value="disbale">{t}no{/t}</option> 151 151 {/if} 152 152 </select></td> … … 157 157 <tr> 158 158 <td></td> 159 <td><input type="submit" name="submit" value="{ $labels.opt_save}"/></td>159 <td><input type="submit" name="submit" value="{t}save{/t}"/></td> 160 160 </tr> 161 161 </form> … … 165 165 {if $ava_ad_domains ge 1 } 166 166 <tr> 167 <td colspan="2" class="domain_view"><h3> User ist Admin der Domain(s):</h3></td>167 <td colspan="2" class="domain_view"><h3>{t}user is admin for the following domains:{/t}</h3></td> 168 168 </tr> 169 169 {section name=row loop=$table_admins} … … 176 176 <tr> 177 177 {/if} 178 <td colspan="2" class="domain_view"><h3> Neue Admin-Domain hinzufügen:</h3></td>178 <td colspan="2" class="domain_view"><h3>{t}add new admin domain:{/t}</h3></td> 179 179 </tr> 180 180 <tr> … … 185 185 {/section} 186 186 </select></td> 187 <td style="text-align:right;"><input type="submit" name="adddns" value="{ $labels.add}" /></form></td>187 <td style="text-align:right;"><input type="submit" name="adddns" value="{t}add{/t}" /></form></td> 188 188 {else} 189 <td colspan="2"> Keine weiteren Domains gefunden!</td>189 <td colspan="2">{t}no more domains exists!{/t}</td> 190 190 {/if} 191 191 </tr> … … 195 195 <form name="autoresp" action="?module=email_view&id={$id}&did={$did}" method="post"> 196 196 <tr> 197 <td colspan="2" class="domain_view"><h3> Autoresponder</h3></td>198 </tr> 199 <tr> 200 <td> Autoresponder aktiv:</td>197 <td colspan="2" class="domain_view"><h3>{t}vacation{/t}</h3></td> 198 </tr> 199 <tr> 200 <td>{t}vacation active:{/t}</td> 201 201 <td><select name="autores_active"> 202 <option value="y" onclick="cpves_autores_field('');">{ $labels.opt_yes}</option>202 <option value="y" onclick="cpves_autores_field('');">{t}yes{/t}</option> 203 203 {if $autores_active eq 'n' } 204 <option value="n" onclick="cpves_autores_field('true');" selected="selected">{ $labels.opt_no}</option>204 <option value="n" onclick="cpves_autores_field('true');" selected="selected">{t}no{/t}</option> 205 205 {else} 206 <option value="n" onclick="cpves_autores_field('true');">{ $labels.opt_no}</option>206 <option value="n" onclick="cpves_autores_field('true');">{t}no{/t}</option> 207 207 {/if} 208 208 </select></td> 209 209 </tr> 210 210 <tr> 211 <td> Sende Autoresonder an den Absender:</td>211 <td>{t}send vacation back to sender:{/t}</td> 212 212 <td> 213 213 {html_options name="autores_sendback_times" options="$autores_sendback_times_selects" selected=$autores_sendback_times_value style="width:200px;"} … … 215 215 </tr> 216 216 <tr> 217 <td> Autoresponder Betreff:</td>217 <td>{t}vacation subject:{/t}</td> 218 218 <td><input type="text" name="autores_subject" id="autores_subject" maxlength="50" value="{$autores_subject}" /></td> 219 219 </tr> 220 220 <tr> 221 <td valign="top"> Nachricht:</td>221 <td valign="top">{t}message:{/t}</td> 222 222 <td><textarea name="autores_msg" id="autores_msg" cols="50" rows="15">{$autores_msg}</textarea></td> 223 223 </tr> 224 224 <tr> 225 225 <td></td> 226 <td><input type="submit" value="{ $labels.opt_save}" name="autores_submit" /></td>226 <td><input type="submit" value="{t}save vacation{/t}" name="autores_submit" /></td> 227 227 </tr> 228 228 <form action="?module=email_view&id={$id}&did={$did}" method="post"> 229 229 <tr> 230 <td valign="top"> Dekativiere Autoresponder:</td>230 <td valign="top">{t}automatic deactivation:{/t}</td> 231 231 <td><select name="autores_datedisable_active" id="autores_datedisable_active"> 232 <option value="1" onclick="cpves_autores_datedisable('')">{ $labels.opt_yes}</option>232 <option value="1" onclick="cpves_autores_datedisable('')">{t}yes{/t}</option> 233 233 {if $autores_disable.active == 0 } 234 <option value="0" onclick="cpves_autores_datedisable('true')" selected="selected">{ $labels.opt_no}</option>234 <option value="0" onclick="cpves_autores_datedisable('true')" selected="selected">{t}no{/t}</option> 235 235 {else} 236 <option value="0" onclick="cpves_autores_datedisable('true')">{ $labels.opt_no}</option>236 <option value="0" onclick="cpves_autores_datedisable('true')">{t}no{/t}</option> 237 237 {/if} 238 238 </select></td> 239 239 </tr> 240 240 <tr> 241 <td> Ab Datum:</td>241 <td>{t}date of deactivation:{/t}</td> 242 242 <td><input type="text" name="autores_datedisable_date" value="{$autores_disable.a_date}" id="autores_datedisable_date"/></td> 243 243 </tr> 244 244 <tr> 245 <td> Ab Uhrzeit:</td>245 <td>{t}time of deactivation:{/t}</td> 246 246 <td><input type="text" name="autores_datedisable_time" value="{$autores_disable.a_time}" id="autores_datedisable_time"/></td> 247 247 </tr> 248 248 <tr> 249 249 <td></td> 250 <td><input type="submit" id="autores_datedisable_submit" name="autores_datedisable_submit" value="{ $labels.opt_save}" /></td>250 <td><input type="submit" id="autores_datedisable_submit" name="autores_datedisable_submit" value="{t}save{/t}" /></td> 251 251 </tr> 252 252 </form> … … 263 263 <td>Aktiviere validierte Empfängeradressen:</td> 264 264 <td>{if $val_tos_active == 1 } 265 <input type="radio" id="autores_valtos_active_on" onclick="submit();" checked="checked" name="val_tos_active" value="1"> { $labels.opt_yes} <input type="radio" onclick="submit();" name="val_tos_active" id="autores_valtos_active_off" value="0"> {$labels.opt_no}265 <input type="radio" id="autores_valtos_active_on" onclick="submit();" checked="checked" name="val_tos_active" value="1"> {t}yes{/t} <input type="radio" onclick="submit();" name="val_tos_active" id="autores_valtos_active_off" value="0"> {t}no{/t} 266 266 {else} 267 <input type="radio" onclick="submit();" id="autores_valtos_active_on" name="val_tos_active" value="1"> Ja <input type="radio" checked="checked" onclick="submit();" id="autores_valtos_active_off" name="val_tos_active" value="0"> {$labels.opt_no}{/if}</td>267 <input type="radio" onclick="submit();" id="autores_valtos_active_on" name="val_tos_active" value="1"> {t}yes{/t} <input type="radio" checked="checked" onclick="submit();" id="autores_valtos_active_off" name="val_tos_active" value="0"> {t}no{/t}{/if}</td> 268 268 </tr> 269 269 … … 281 281 </tr> 282 282 <tr> 283 <td> Hinzufügen:</td>284 <td><input type="text" id="autores_valtos_add_data" name="val_tos_da" /><input type="submit" id="autores_valtos_add_submit" name="val_tos_add" value="{ $labels.add}" /></td>283 <td>{t}add new address:{/t}</td> 284 <td><input type="text" id="autores_valtos_add_data" name="val_tos_da" /><input type="submit" id="autores_valtos_add_submit" name="val_tos_add" value="{t}add{/t}" /></td> 285 285 </tr> 286 286 </form> … … 305 305 <form action="?module=email_view&id={$id}&did={$did}" method="post"> 306 306 <tr> 307 <td colspan="2" class="domain_view"><h3> Optionen</h3></td>308 </tr> 309 <tr> 310 <td> Lösche Virenbenachrichtigungen:</td>307 <td colspan="2" class="domain_view"><h3>{t}settings{/t}</h3></td> 308 </tr> 309 <tr> 310 <td>{t}delete virus notifactions:{/t}</td> 311 311 <td><select name="del_virus_notifi"> 312 312 {if $del_virus_notifi eq 1} 313 <option value="1" selected="selected"> Ja</option>314 <option value="0"> Nein</option>313 <option value="1" selected="selected">{t}yes{/t}</option> 314 <option value="0">{t}no{/t}</option> 315 315 {else} 316 <option value="1"> Ja</option>317 <option value="0" selected="selected"> Nein</option>316 <option value="1">{t}yes{/t}</option> 317 <option value="0" selected="selected">{t}no{/t}</option> 318 318 {/if} 319 319 </select></td> 320 320 </tr> 321 321 <tr> 322 <td> Filtere doppelte Mails:</td>322 <td>{t}filter doubled mails:{/t}</td> 323 323 <td> 324 324 <select name="del_dups_mails"> 325 325 {if $del_dups_mails == 1} 326 <option value="1" selected="selected"> Ja</option>327 <option value="0"> Nein</option>326 <option value="1" selected="selected">{t}yes{/t}</option> 327 <option value="0">{t}no{/t}</option> 328 328 {else} 329 <option value="1"> Ja</option>330 <option value="0" selected="selected"> Nein</option>329 <option value="1">{t}yes{/t}</option> 330 <option value="0" selected="selected">{t}no{/t}</option> 331 331 {/if} 332 332 </select> … … 335 335 <tr> 336 336 <td></td> 337 <td><input type="submit" name="submit_mailoptions" value=" Speichern" /></td>337 <td><input type="submit" name="submit_mailoptions" value="{t}save{/t}" /></td> 338 338 </tr> 339 339 </form> … … 343 343 <form action="?module=email_view&id={$id}&did={$did}" method="post"> 344 344 <tr> 345 <td colspan="2" class="domain_view"><h3> Weiterleitung</h3></td>346 </tr> 347 <tr> 348 <td> Alle E-Mails weiterleiten:</td>345 <td colspan="2" class="domain_view"><h3>{t}forwarding{/t}</h3></td> 346 </tr> 347 <tr> 348 <td>{t}forward all mails to:{/t}</td> 349 349 <td><input name="forwardaddress" value="{$forwardaddress}" type="text"/></td> 350 350 </tr> 351 351 352 352 <tr> 353 <td> Kopie im Postfach belassen:</td>353 <td>{t}save copy:{/t}</td> 354 354 <td><select name="save_local"> 355 355 {if $if_forward_cc == 1 } 356 <option value="1"> Ja</option>357 <option value="0"> Nein</option>358 {else} 359 <option value="0"> Nein</option>360 <option value="1"> Ja</option>361 {/if} 362 </select></td> 363 </tr> 364 365 <tr> 366 <td> Weiterleitung löschen:</td>356 <option value="1">{t}yes{/t}</option> 357 <option value="0">{t}no{/t}</option> 358 {else} 359 <option value="0">{t}no{/t}</option> 360 <option value="1">{t}yes{/t}</option> 361 {/if} 362 </select></td> 363 </tr> 364 365 <tr> 366 <td>{t}delete forwarding:{/t}</td> 367 367 <td><input type="checkbox" name="delete_forward"/></td> 368 368 </tr> 369 369 <tr> 370 370 <td></td> 371 <td><input type="submit" name="fwdmail_submit" value=" Speichern" /></td>371 <td><input type="submit" name="fwdmail_submit" value="{t}save{/t}" /></td> 372 372 </tr> 373 373 </form> … … 378 378 <form action="?module=email_view&id={$id}&did={$did}" name="sa_form" id="sa_form" method="post"> 379 379 <tr> 380 <td colspan="2" class="domain_view"><h3> Spamfilter</h3></td>381 </tr> 382 <tr> 383 <td> Spamfilter aktiv:</td>380 <td colspan="2" class="domain_view"><h3>{t}spamfilter{/t}</h3></td> 381 </tr> 382 <tr> 383 <td>{t}spamfilter active:{/t}</td> 384 384 <td><select id="spamassassin_active" name="spamassasin_active"> 385 <option value="1" onclick="cpves_sa_active('1');"> Ja</option>385 <option value="1" onclick="cpves_sa_active('1');">{t}yes{/t}</option> 386 386 {if $spamassassin_active eq '0' } 387 <option value="0" onclick="cpves_sa_active('0');" selected="selected"> Nein</option>388 {else} 389 <option value="0" onclick="cpves_sa_active('0');"> Nein</option>387 <option value="0" onclick="cpves_sa_active('0');" selected="selected">{t}no{/t}</option> 388 {else} 389 <option value="0" onclick="cpves_sa_active('0');">{t}no{/t}</option> 390 390 {/if} 391 391 </select></td> … … 394 394 {if $if_bogofilter == 1} 395 395 <tr> 396 <td> Bogofilter aktiv:</td>396 <td>{t}bogofilter active:{/t}</td> 397 397 <td><select id="bogofilter_active" name="bogofilter_active"> 398 <option value="1"> Ja</option>398 <option value="1">{t}yes{/t}</option> 399 399 {if $bogofilter_active == 0} 400 <option value="0" selected="selected"> Nein</option>401 {else} 402 <option value="0"> Nein</option>403 {/if} 404 </select></td> 405 </tr> 406 {/if} 407 408 <tr> 409 <td valign="top"> Schreibe Betreffszeile um:</td>400 <option value="0" selected="selected">{t}no{/t}</option> 401 {else} 402 <option value="0">{t}no{/t}</option> 403 {/if} 404 </select></td> 405 </tr> 406 {/if} 407 408 <tr> 409 <td valign="top">{t}change subject:{/t}</td> 410 410 <td>{if $rewrite_subject == '1' } 411 <input type="radio" name="rewrite_subject" value="0" /> Nein412 <input type="radio" name="rewrite_subject" checked="checked" value="1" /> Ja<br />411 <input type="radio" name="rewrite_subject" value="0" /> {t}no{/t} 412 <input type="radio" name="rewrite_subject" checked="checked" value="1" /> {t}yes{/t}<br /> 413 413 {else} 414 <input type="radio" checked="checked" name="rewrite_subject" value="0" /> Nein415 <input type="radio" name="rewrite_subject" value="1" /> Ja<br />414 <input type="radio" checked="checked" name="rewrite_subject" value="0" /> {t}no{/t} 415 <input type="radio" name="rewrite_subject" value="1" /> {t}yes{/t}<br />
