Changeset 8137


Ignore:
Timestamp:
05/06/13 09:18:28 (11 years ago)
Author:
wmerlotto
Message:

Ticket #3441 - Correções diversas no instalador do Expresso

Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/INSTALL/arquivos/expresso-cron

    r7700 r8137  
    55 
    66# Utilizado para verificar se ha algum alarme, por e-mail, do modulo ExpressoCalendar 
    7 #CENTOS*/1 *    * * *   apache   php    EXPRESSO_DIR/prototype/modules/calendar/alarms.php  
    8 #DEBIAN*/1 *    * * *   www-data php5   EXPRESSO_DIR/prototype/modules/calendar/alarms.php  
     7#CENTOS*/1 *    * * *   apache   php    EXPRESSO_DIR/prototype/modules/calendar/alarms.php 1>& /dev/null 
     8#DEBIAN*/1 *    * * *   www-data php5   EXPRESSO_DIR/prototype/modules/calendar/alarms.php 1>& /dev/null 
    99 
    1010# Utilizado para limpar a tabela, temporaria, que contem os e-mails (rascunhos) antes de 
     
    1919# Utilizado para limpar os arquivos de sessao do PHP 
    2020#*/31 *  * * *   root                    find /dev/shm -type f -name "sess_*" -cmin 240 -print0 | xargs -n 200 -r -0 rm 
     21*/31 *  * * *   root                    find /dev/shm -type f -name "sess_*" -cmin +240 -delete 
    2122 
    2223# Utilizado para limpar os arquivos, eml, criados ao exportar mensagens 
    23 13 */4 * * * root                       find /tmp/ -iname "*.eml" -amin +60 -exec rm -f '{}' \; 
     24#13 */4 * * * root                      find /tmp/ -iname "*.eml" -amin +60 -exec rm -f '{}' \; 
     2513 */4  * * * root                      find /tmp/ -iname "*.eml" -cmin +60 -delete 
    2426 
    2527# 
  • trunk/INSTALL/arquivos/scripts/http.sh

    r7619 r8137  
    111111        yum -y install httpd mod_ssl \ 
    112112                php php-cli php-ldap php-pgsql php-imap php-mbstring php-gd php-xml \ 
    113                 php-pecl-memcache graphviz-php php-pspell \ 
     113                php-pecl-memcache php-pspell \ 
    114114                unzip zip memcached libmemcached \ 
    115115                php-soap php-process # para o zpush 
     116                #graphviz-php \ # problema com o PHP-5.4 
    116117 
    117118        # para que o yuicompressor funcione 
     
    122123 
    123124        chkconfig httpd on 
     125        chkconfig memcached on 
    124126 
    125127        # Ativa o script do CRON para o RedHat e similares 
  • trunk/INSTALL/debian/squeeze/etc/postfix/main.cf

    r7278 r8137  
    11# Configuracoes para o Expresso 
    2 myorigin = DOMAIN 
    3 myhostname = DOMAIN 
     2mydomain = DOMAIN 
     3myorigin = $mydomain 
     4myhostname = $mydomain 
    45biff = no 
    56 
     
    89 
    910# A lista de dominios que esta maquina considera seu destino final. 
    10 mydestination = $myhostname, localhost.$mydomain, DOMAIN 
     11mydestination = $mydomain, $myhostname, expresso.$mydomain 
    1112 
    1213recipient_delimiter = +  
  • trunk/INSTALL/rhel/6/etc/cyrus.conf

    r7699 r8137  
    77  # this is only necessary if using idled for IMAP IDLE 
    88  idled         cmd="idled" 
    9  
    10   # this is recommended if using duplicate delivery suppression 
    11   delprune        cmd="/usr/lib/cyrus-imapd/ctl_deliver -E 3" 
    129} 
    1310 
     
    3734  checkpoint    cmd="ctl_cyrusdb -c" period=30 
    3835 
    39   # this is only necessary if using duplicate delivery suppression 
    40   delprune        cmd="/usr/lib/cyrus-imapd/ctl_deliver -E 3" at=0401 
    41  
    4236  # this is only necessary if using duplicate delivery suppression, 
    4337  # Sieve or NNTP 
  • trunk/INSTALL/rhel/6/etc/imapd.conf

    r5802 r8137  
    99sasl_mech_list: LOGIN PLAIN 
    1010allowplaintext: yes 
    11 auxprop_plugin: ldapdb 
    1211 
    1312tls_cert_file: /etc/pki/cyrus-imapd/cyrus-imapd.pem 
  • trunk/INSTALL/rhel/6/etc/postfix/main.cf

    r7278 r8137  
    11# Configuracoes para o Expresso 
    2 myorigin = DOMAIN 
    3 myhostname = DOMAIN 
     2mydomain = DOMAIN 
     3myorigin = $mydomain 
     4myhostname = $mydomain 
    45biff = no 
    56 
     
    89 
    910# A lista de dominios que esta maquina considera seu destino final. 
    10 mydestination = $myhostname, localhost.$mydomain, DOMAIN 
     11mydestination = $mydomain, $myhostname, expresso.$mydomain 
    1112 
    1213recipient_delimiter = +  
  • trunk/INSTALL/rhel/6/var/lib/pgsql/data/postgresql.conf

    r5797 r8137  
    484484#backslash_quote = safe_encoding        # on, off, or safe_encoding 
    485485#default_with_oids = off 
    486 # Necessario para o Expresso 
    487 standard_conforming_strings = off 
    488 #bytea_output = 'escape' 
    489 # Necessario para o Expresso 
    490486#escape_string_warning = on 
    491487#regex_flavor = advanced                # advanced, extended, or basic 
     
    494490#synchronize_seqscans = on 
    495491 
     492# Necessario para o Expresso 
     493standard_conforming_strings = off 
     494bytea_output = 'escape' 
     495 
    496496# - Other Platforms and Clients - 
    497497 
  • trunk/prototype/config/OpenLDAP.srv

    r7731 r8137  
    44idAtribute = "uidNumber" 
    55host = 127.0.0.1 
    6 context = "LDAP_DN" 
     6context = "dc=prognus,dc=com,dc=br" 
    77; Caso o LDAP requisite autenticacao, configure os parametros a seguir 
    88;user =  
Note: See TracChangeset for help on using the changeset viewer.