Ignore:
Timestamp:
09/21/12 12:14:32 (12 years ago)
Author:
fernando
Message:

Ticket #3088 - Melhoria no arquivamento local do Expresso - desativar serviço no ExpressoMail?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.5.0-expresso1/expressoMail1_2/js/main.js

    r7234 r7270  
    48984898        if ((expresso_mail_archive.enabled == null) && (expresso_mail_archive.timer == null) && (expresso_mail_archive.counter > 0)){ 
    48994899            connector.hideProgressBar(); 
    4900             connector.resetProgressBarText(); 
     4900            //connector.resetProgressBarText(); 
    49014901            write_msg(get_lang('Sorry, but you need to reload this web page. Click at reload page at web browsing top navigation.')); 
    49024902            return; 
     
    49044904 
    49054905        if (arguments.length == 0){ 
    4906            connector.setProgressBarText(get_lang('Trying to communicate with Mail Archiver...')); 
     4906           write_msg(get_lang('Trying to communicate with Mail Archiver...')); 
    49074907        } 
    49084908 
     
    49674967        write_msg(get_lang('Sorry, but Mail Archiver still seems to be sleeping. Check out your system services!')); 
    49684968        connector.hideProgressBar(); 
    4969         connector.resetProgressBarText(); 
     4969        //connector.resetProgressBarText(); 
    49704970        check_services_tryouts = 1; 
    49714971    } 
     
    49754975function check_services_restart(){ 
    49764976    try{ 
    4977         connector.setProgressBarText(get_lang('Wait: attempt %1 from %2...', check_services_tryouts, check_services_tryouts_limit)); 
     4977                write_msg(get_lang('Wait: attempt %1 from %2...', check_services_tryouts, check_services_tryouts_limit)); 
    49784978        if(check_services_tryouts <= 5){ 
    49794979            try{ 
    49804980                ArchiveServices = new web_service_mailarchiver_serpro__ArchiveServices(); 
    49814981                ArchiveServices.url = mail_archive_protocol + "://" + mail_archive_host + ":" + mail_archive_port + "/arcserv/ArchiveServices"; 
    4982                 window.clearInterval(ttintval2); 
     4982                window.clearInterval(ttintval); 
    49834983                expresso_mail_archive.Restart(expresso_mail_archive); 
    49844984            } 
     
    49864986                check_services_tryouts++; 
    49874987                window.clearInterval(ttintval); 
    4988                 ttintval2 = window.setTimeout('services_retry(true)',1); 
     4988                ttintval = window.setTimeout('services_retry(true)',1); 
    49894989            } 
    49904990        } 
     
    49924992            write_msg(get_lang('Sorry, but Mail Archiver still seems to be sleeping. Check out your system services!')); 
    49934993            connector.hideProgressBar(); 
    4994             connector.resetProgressBarText(); 
     4994            //connector.resetProgressBarText(); 
    49954995            check_services_tryouts = 1; 
    49964996        } 
     
    49994999        write_msg(get_lang('Sorry, but Mail Archiver still seems to be sleeping. Check out your system services!')); 
    50005000        connector.hideProgressBar(); 
    5001         connector.resetProgressBarText(); 
     5001        //connector.resetProgressBarText(); 
    50025002        check_services_tryouts = 1; 
    50035003    } 
Note: See TracChangeset for help on using the changeset viewer.