Changeset 167
- Timestamp:
- 10/22/06 14:13:05
(2 years ago)
- Author:
- malte
- Message:
added password change + autorespond ability to webmail
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r165 |
r167 |
|
| 1 | 1 | X-Panel 0.1 Changelog |
|---|
| 2 | 2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|---|
| | 3 | 2006-10-22 Malte Geierhos |
|---|
| | 4 | - GUI: |
|---|
| | 5 | * Added in Webmail : |
|---|
| | 6 | + change Mail Password out-of-webmail |
|---|
| | 7 | + change Autoresponder out-of-webmail |
|---|
| | 8 | |
|---|
| 3 | 9 | 2006-10-22 Roland Haeder |
|---|
| 4 | 10 | - ENGINE: |
|---|
| r154 |
r167 |
|
| 295 | 295 | $catch_address_template = "themes/$selected_theme/catch-address.htm"; // Address catcher |
|---|
| 296 | 296 | $print_message_template = "themes/$selected_theme/print-message.htm"; // Print friendly version |
|---|
| | 297 | $passwd_template = "themes/$selected_theme/passwd.htm"; // change Password |
|---|
| 297 | 298 | $menu_template = "themes/$selected_theme/menu.htm"; // Menu |
|---|
| 298 | 299 | |
|---|
| r154 |
r167 |
|
| 72 | 72 | search_mnu = Suchen |
|---|
| 73 | 73 | address_mnu = Adressen |
|---|
| 74 | | empty_trash_mnu = Papierkorb leeren |
|---|
| | 74 | empty_trash_mnu = Papierkorb leeren |
|---|
| 75 | 75 | prefs_mnu = Einstellungen |
|---|
| 76 | 76 | logoff_mnu = Logout |
|---|
| | 77 | passwd_mnu = Passwort �ern |
|---|
| | 78 | autoresponder_mnu = Autoresponder |
|---|
| 77 | 79 | |
|---|
| 78 | 80 | |
|---|
| … | … | |
| 320 | 322 | addr_saved = Der Kontakt wurde gespeichert. |
|---|
| 321 | 323 | addr_added = Der Kontakt wurde hinzugef�ddr_deleted = Der Kontakt wurde entfernt. |
|---|
| | 324 | |
|---|
| | 325 | [Passwd] |
|---|
| | 326 | sch_button_text = Passwort speichern |
|---|
| | 327 | passwd_information_text = Passwort �ern |
|---|
| | 328 | passwd_new = neues Passwort |
|---|
| | 329 | passwd_new_repeat = Passwort wiederholen |
|---|
| | 330 | |
|---|
| | 331 | [Autoresponder] |
|---|
| | 332 | autoresponder_button_text = Sichern |
|---|
| | 333 | autoresponder_del_button_text = Autoresponder l�en |
|---|
| | 334 | autoresponder_information_text = Nachricht |
|---|
| r154 |
r167 |
|
| 64 | 64 | prefs_mnu = Preferences |
|---|
| 65 | 65 | logoff_mnu = Log out |
|---|
| | 66 | passwd_mnu = Change password |
|---|
| | 67 | autoresponder_mnu = Autoresponder |
|---|
| 66 | 68 | |
|---|
| 67 | 69 | # Reply |
|---|
| … | … | |
| 314 | 316 | blk_save = Save |
|---|
| 315 | 317 | |
|---|
| | 318 | [Passwd] |
|---|
| | 319 | sch_button_text = Store password |
|---|
| | 320 | passwd_information_text = Change password |
|---|
| | 321 | passwd_new = new password |
|---|
| | 322 | passwd_new_repeat = Retype password |
|---|
| | 323 | |
|---|
| | 324 | [Autoresponder] |
|---|
| | 325 | autoresponder_button_text = Save |
|---|
| | 326 | autoresponder_del_button_text = Delete autoresponder |
|---|
| | 327 | autoresponder_information_text = Message |
|---|
| r154 |
r167 |
|
| 55 | 55 | } |
|---|
| 56 | 56 | function checkDis() { if (disbl) return false; } |
|---|
| | 57 | |
|---|
| | 58 | // Change password function |
|---|
| | 59 | function changepasswd() { location = 'passwd.php?sid=$sid&tid=$tid&lid=$lid'; } |
|---|
| | 60 | // Change autoresponder function |
|---|
| | 61 | function changeautoresponder() { location = 'autoresp.php?sid=$sid&tid=$tid&lid=$lid'; } |
|---|
| 57 | 62 | </script> |
|---|
| 58 | 63 | |
|---|
| r154 |
r167 |
|
| 103 | 103 | <td background="themes/modern_blue/images/menu/button_background.jpg" class="menu"><a href="javascript:prefs()" onMouseOver="MM_swapImage('preferences','','themes/modern_blue/images/icons/settings_a.gif',1)" onMouseOut="MM_swapImgRestore()" class="menu_active">{#prefs_mnu#}</a></td> |
|---|
| 104 | 104 | <td align="right" background="themes/modern_blue/images/icons/icon_bcgr.gif" class="menu"><a href="javascript:prefs()" onMouseOver="MM_swapImage('preferences','','themes/modern_blue/images/icons/settings_a.gif',1)" onMouseOut="MM_swapImgRestore()"><img src="themes/modern_blue/images/icons/settings_a.gif" name="preferences" width="36" height="36" border="0" id="preferences"></a></td> |
|---|
| 105 | | </tr> |
|---|
| 106 | | <tr> |
|---|
| | 105 | |
|---|
| | 106 | </tr> |
|---|
| | 107 | <!-- Change password function --> |
|---|
| | 108 | <tr> |
|---|
| | 109 | <td> </td> |
|---|
| | 110 | <td colspan="2" align="left" ><a href="javascript:changepasswd()">{#passwd_mnu#}</a></td> |
|---|
| | 111 | </tr> |
|---|
| | 112 | <!-- Autoresponder function --> |
|---|
| | 113 | <tr> |
|---|
| | 114 | <td> </td> |
|---|
| | 115 | <td colspan="2" align="left" ><a href="javascript:changeautoresponder()">{#autoresponder_mnu#}</a></td> |
|---|
| | 116 | </tr> |
|---|
| | 117 | <tr> |
|---|
| 107 | 118 | <td colspan="3"><img src="themes/modern_blue/images/trans.gif" width="30" height="4"></td> |
|---|
| 108 | 119 | </tr> |
|---|
|
Download in other formats:
#########################################################################
# Site footer - Contents are automatically inserted after main Trac HTML
?>