Ignore:
Timestamp:
07/10/19 17:47:25 (6 years ago)
Author:
Edwin Eefting <edwin@datux.nl>
Branches:
master
Children:
42fa616
Parents:
36e2ca3
Message:

kopano upgrade to 8.7.5. also upgraded zpush and webapp to latest stable

Location:
npl/mailserver/kopano_conf/root/etc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • npl/mailserver/kopano_conf/root/etc/kopano/gateway.cfg

    r36e2ca3 rfe3434a  
    2929#coredump_enabled = systemdefault
    3030
    31 # enable/disable POP3, and POP3 listen port
    32 pop3_enable     =       yes
    33 pop3_port       =       110
    34 
    35 # enable/disable Secure POP3, and Secure POP3 listen port
    36 pop3s_enable    =       yes
    37 pop3s_port      =       995
    38 
    39 # enable/disable IMAP, and IMAP listen port
    40 imap_enable     =       yes
    41 imap_port       =       143
    42 
    43 # enable/disable Secure IMAP, and Secure IMAP listen port
    44 imaps_enable    =       yes
    45 imaps_port      =       993
    46 
     31#
    4732# Only mail folder for IMAP or all subfolders (calendar, contacts, tasks, etc. too)
    4833imap_only_mailfolders   =       yes
  • npl/mailserver/kopano_conf/root/etc/kopano/ical.cfg

    r36e2ca3 rfe3434a  
    1717#server_bind =
    1818
    19 # whether normal connections can be made to the ical server
    20 ical_enable = yes
    21 
    22 # port which the ical server listens on for normal connections
    23 ical_port = 8080
    24 
    25 # whether ssl connections can be made to the ical server
    26 icals_enable = yes
    27 
    28 # port which the ical server listens on for ssl connections
    29 icals_port = 8443
    3019
    3120# default connection to the storage server
  • npl/mailserver/kopano_conf/root/etc/kopano/server.cfg

    r36e2ca3 rfe3434a  
    77#server_bind            =
    88
    9 # Accept normal TCP connections (not recommended to disable)
    10 server_tcp_enabled      = yes
    11 
    12 # Port to bind to
    13 server_tcp_port         = 236
     9
    1410
    1511# Accept Unix pipe connections (not recommended to disable)
     
    183179#  SSL SETTINGS
    184180
    185 # enable SSL support in server
    186 server_ssl_enabled      = no
    187 
    188 # Listen for SSL connections on this port
    189 server_ssl_port         = 237
    190181
    191182# Required Server certificate, contains the certificate and the private key parts
  • npl/mailserver/kopano_conf/root/etc/postinst.d/post.kopano_conf

    r36e2ca3 rfe3434a  
    5757
    5858#create and own stuff
    59 chown root /etc/kopano/server.cfg || exit 1
     59chown kopano /etc/kopano/server.cfg || exit 1
    6060chmod 700 /etc/kopano/server.cfg || exit 1
    6161mkdir /var/run/kopano 2>/dev/null
     
    9090
    9191# fix is neccesary one time, but may be run always
    92 kopano-dbadm k-1216  || exit 1
     92if ! [ -e /etc/kopano/.upgrade-1216-ok ]; then
     93        kopano-dbadm k-1216  || exit 1
     94        touch /etc/kopano/.upgrade-1216-ok
     95fi
     96
     97# only needed once when upgrading (server can be down)
     98if ! [ -e /etc/kopano/.upgrade-usmp-ok ]; then
     99        kopano-dbadm usmp || exit 1
     100        touch /etc/kopano/.upgrade-usmp-ok
     101fi
    93102
    94103#create public store (first time only)
    95104svcstart /service/kopano-server || exit 1
    96 kopano-admin -s
     105if ! [ -e /etc/kopano/.create-publicstore-ok ]; then
     106        kopano-admin -s
     107        touch /etc/kopano/.create-publicstore-ok
     108fi
    97109
    98110
Note: See TracChangeset for help on using the changeset viewer.