Changeset 167

Show
Ignore:
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
  • trunk/CHANGELOG

    r165 r167  
    11X-Panel 0.1 Changelog 
    22~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     32006-10-22 Malte Geierhos 
     4        - GUI: 
     5                * Added in Webmail : 
     6                        + change Mail Password out-of-webmail 
     7                        + change Autoresponder out-of-webmail 
     8         
    392006-10-22 Roland Haeder 
    410        - ENGINE: 
  • trunk/gui/tools/webmail/inc/lib.php

    r154 r167  
    295295$catch_address_template    = "themes/$selected_theme/catch-address.htm";    // Address catcher 
    296296$print_message_template    = "themes/$selected_theme/print-message.htm";    // Print friendly version 
     297$passwd_template           = "themes/$selected_theme/passwd.htm";           // change Password 
    297298$menu_template             = "themes/$selected_theme/menu.htm";             // Menu 
    298299 
  • trunk/gui/tools/webmail/langs/de.txt

    r154 r167  
    7272search_mnu                                      = Suchen 
    7373address_mnu                                     = Adressen 
    74 empty_trash_mnu                         = Papierkorb leeren 
     74empty_trash_mnu                                = Papierkorb leeren 
    7575prefs_mnu                                       = Einstellungen 
    7676logoff_mnu                                      = Logout 
     77passwd_mnu                                      = Passwort �ern 
     78autoresponder_mnu                               = Autoresponder 
    7779 
    7880 
     
    320322addr_saved                                      = Der Kontakt wurde gespeichert. 
    321323addr_added                                      = Der Kontakt wurde hinzugef�ddr_deleted                                        = Der Kontakt wurde entfernt. 
     324 
     325[Passwd] 
     326sch_button_text                                 = Passwort speichern 
     327passwd_information_text                         = Passwort �ern 
     328passwd_new                                      = neues Passwort 
     329passwd_new_repeat                               = Passwort wiederholen 
     330 
     331[Autoresponder] 
     332autoresponder_button_text                       = Sichern 
     333autoresponder_del_button_text                   = Autoresponder l�en 
     334autoresponder_information_text                  = Nachricht 
  • trunk/gui/tools/webmail/langs/en_UK.txt

    r154 r167  
    6464prefs_mnu                                               = Preferences 
    6565logoff_mnu                                              = Log out 
     66passwd_mnu                                      = Change password 
     67autoresponder_mnu                               = Autoresponder 
    6668 
    6769# Reply 
     
    314316blk_save                                                = Save 
    315317 
     318[Passwd] 
     319sch_button_text                                 = Store password 
     320passwd_information_text                         = Change password 
     321passwd_new                                      = new password 
     322passwd_new_repeat                               = Retype password 
     323 
     324[Autoresponder] 
     325autoresponder_button_text                       = Save 
     326autoresponder_del_button_text                   = Delete autoresponder 
     327autoresponder_information_text                  = Message 
  • trunk/gui/tools/webmail/preferences.php

    r154 r167  
    5555} 
    5656function checkDis() { if (disbl) return false; } 
     57 
     58// Change password function 
     59function changepasswd() { location = 'passwd.php?sid=$sid&tid=$tid&lid=$lid'; } 
     60// Change autoresponder function 
     61function changeautoresponder() { location = 'autoresp.php?sid=$sid&tid=$tid&lid=$lid'; } 
    5762</script> 
    5863 
  • trunk/gui/tools/webmail/themes/modern_blue/preferences.htm

    r154 r167  
    103103            <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> 
    104104            <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>&nbsp;</td> 
     110              <td colspan="2" align="left" ><a href="javascript:changepasswd()">{#passwd_mnu#}</a></td> 
     111          </tr> 
     112                  <!-- Autoresponder function --> 
     113          <tr> 
     114              <td>&nbsp;</td> 
     115              <td colspan="2" align="left" ><a href="javascript:changeautoresponder()">{#autoresponder_mnu#}</a></td> 
     116          </tr> 
     117          <tr> 
    107118            <td colspan="3"><img src="themes/modern_blue/images/trans.gif" width="30" height="4"></td> 
    108119            </tr>