Changeset 3994


Ignore:
Timestamp:
04/12/11 14:50:19 (13 years ago)
Author:
brunocosta
Message:

Ticket #1604 - Criada preferencia para confirmação de leitura padrão.

Location:
branches/2.2.0.1/expressoMail1_2
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.0.1/expressoMail1_2/inc/hook_settings.inc.php

    r3812 r3994  
    215215create_check_box('Use shortcuts?','use_shortcuts','n key (Open new message)<br>ESC key (Close tab)<br>i key (print)<br>e key (forward)<br>r key (reply)<br>DELETE key (delete the current message)<br>Ctrl + up (go to previous message)<br>Ctrl + down (go to next message)<br>Shift + up or down (select multiple messages)<br>F9  key (search at catalog)<br>'); 
    216216create_check_box('Auto save draft','auto_save_draft','When you are away from computer it saves automatically the message you are writing'); 
     217create_check_box('Send messages with return recipient option by default','return_recipient_deafault','With this option every new email will get the return recipient option marked'); 
    217218 
    218219unset($default); 
  • branches/2.2.0.1/expressoMail1_2/index.php

    r3977 r3994  
    9595        $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['auto_create_local'] = $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['auto_create_local'] ? $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['auto_create_local'] : "0"; 
    9696        $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['use_SpellChecker'] = $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['use_SpellChecker'] ? $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['use_SpellChecker'] : "0"; 
    97          
     97        $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['return_recipient_deafault'] = $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['return_recipient_deafault'] ? $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['return_recipient_deafault'] : "0"; 
     98 
    9899        $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['quick_search_default'] = $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['quick_search_default'] ? $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['quick_search_default'] : 1; 
    99100 
  • branches/2.2.0.1/expressoMail1_2/js/draw_api.js

    r3993 r3994  
    26842684        input_return_receipt.className = "checkbox"; 
    26852685        input_return_receipt.id = "return_receipt_"+ID; 
     2686 
     2687        if(preferences.return_recipient_deafault != '0'){ 
     2688             if (is_ie){ 
     2689                input_return_receipt.checked=true; 
     2690             }  
     2691             else{ 
     2692                input_return_receipt.defaultChecked=true; 
     2693             } 
     2694        } 
     2695 
    26862696        input_return_receipt.setAttribute("tabIndex","-1"); 
    26872697        td_return_receipt.appendChild(input_return_receipt); 
  • branches/2.2.0.1/expressoMail1_2/setup/phpgw_pt-br.lang

    r3977 r3994  
    648648Warning expressoMail1_2 pt-br   Atenção 
    649649Discard expressoMail1_2 pt-br   Descartar 
     650Send messages with return recipient option by default   expressoMail1_2 pt-br   Sempre enviar mensagens com confirmação de leitura? 
     651With this option every new email will get the return recipient option marked    expressoMail1_2 pt-br   Com essa opção ativa todo novo e-mail terá marcada a opção de Confirmação de leitura padrão. 
Note: See TracChangeset for help on using the changeset viewer.