Changeset fe3434a for npl/mailserver/kopano_conf/root
- Timestamp:
- 07/10/19 17:47:25 (6 years ago)
- Branches:
- master
- Children:
- 42fa616
- Parents:
- 36e2ca3
- 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 29 29 #coredump_enabled = systemdefault 30 30 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 # 47 32 # Only mail folder for IMAP or all subfolders (calendar, contacts, tasks, etc. too) 48 33 imap_only_mailfolders = yes -
npl/mailserver/kopano_conf/root/etc/kopano/ical.cfg
r36e2ca3 rfe3434a 17 17 #server_bind = 18 18 19 # whether normal connections can be made to the ical server20 ical_enable = yes21 22 # port which the ical server listens on for normal connections23 ical_port = 808024 25 # whether ssl connections can be made to the ical server26 icals_enable = yes27 28 # port which the ical server listens on for ssl connections29 icals_port = 844330 19 31 20 # default connection to the storage server -
npl/mailserver/kopano_conf/root/etc/kopano/server.cfg
r36e2ca3 rfe3434a 7 7 #server_bind = 8 8 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 14 10 15 11 # Accept Unix pipe connections (not recommended to disable) … … 183 179 # SSL SETTINGS 184 180 185 # enable SSL support in server186 server_ssl_enabled = no187 188 # Listen for SSL connections on this port189 server_ssl_port = 237190 181 191 182 # Required Server certificate, contains the certificate and the private key parts -
npl/mailserver/kopano_conf/root/etc/postinst.d/post.kopano_conf
r36e2ca3 rfe3434a 57 57 58 58 #create and own stuff 59 chown root/etc/kopano/server.cfg || exit 159 chown kopano /etc/kopano/server.cfg || exit 1 60 60 chmod 700 /etc/kopano/server.cfg || exit 1 61 61 mkdir /var/run/kopano 2>/dev/null … … 90 90 91 91 # fix is neccesary one time, but may be run always 92 kopano-dbadm k-1216 || exit 1 92 if ! [ -e /etc/kopano/.upgrade-1216-ok ]; then 93 kopano-dbadm k-1216 || exit 1 94 touch /etc/kopano/.upgrade-1216-ok 95 fi 96 97 # only needed once when upgrading (server can be down) 98 if ! [ -e /etc/kopano/.upgrade-usmp-ok ]; then 99 kopano-dbadm usmp || exit 1 100 touch /etc/kopano/.upgrade-usmp-ok 101 fi 93 102 94 103 #create public store (first time only) 95 104 svcstart /service/kopano-server || exit 1 96 kopano-admin -s 105 if ! [ -e /etc/kopano/.create-publicstore-ok ]; then 106 kopano-admin -s 107 touch /etc/kopano/.create-publicstore-ok 108 fi 97 109 98 110
Note: See TracChangeset
for help on using the changeset viewer.