After installing the new 0.8.1 packages today I was realy hopefull that the T1317 is solved now and we could start our loadtests on guam today but late I discoverd that I had an iptables rule between loadbalancer and guam-network-interface blocking imap traffic.
That's why guam kept listening for normal operating clients and tools but now, after installing/configuring guam on our three other frontend nodes, where there are no iptables rules blocking loadbalancer imap checks, guam never realy starts listening on imap port but immediately stops servicing the loadbalancer network interface on imap (143).
installed versions
~~~
root@kolabfek003a [0] ~ # rpm -qv erlang erlang-eimap guam
erlang-18.3.3-1.1.el6.kolab_14.x86_64
erlang-eimap-0.2.5-1.1.el6.kolab_14.x86_64
guam-0.8.1-1.2.el6.kolab_14.x86_64
~~~
our guam config (/etc/guam/sys.config
~~~
root@kolabfek003a [0] ~ # cat /etc/guam/sys.config
%% Managed by Puppet
[
{
kolab_guam, [
{
imap_servers, [
{
imap, [
{ host, "127.0.0.1" },
{ port, 10143 },
{ tls, starttls }
]
},
{
imaps, [
{ host, "127.0.0.1" },
{ port, 10993 },
{ tls, true }
]
}
]
},
{
listeners, [
{
imap, [
{ port, 143 },
{ imap_server, imap },
{
rules, [
{ filter_groupware, [] }
]
},
{
tls_config, [
{ certfile, "/etc/pki/tls/certs/mailserver.pem" },
{ keyfile, "/etc/pki/tls/private/mailserver.key" }
]
}
]
},
{
imaps, [
{ port, 993 },
{ implicit_tls, true },
{ imap_server, imaps },
{
rules, [
{ filter_groupware, [] }
]
},
{
tls_config, [
{ certfile, "/etc/pki/tls/certs/mailserver.pem" },
{ keyfile, "/etc/pki/tls/private/mailserver.key" }
]
}
]
}
]
}
]
},
{
lager, [
{
handlers, [
{ lager_console_backend, debug },
{ lager_file_backend, [ { file, "log/error.log"}, { level, error } ] },
{ lager_file_backend, [ { file, "log/console.log"}, { level, info } ] }
]
}
]
},
%% SASL config
{
sasl, [
{ sasl_error_logger, { file, "log/sasl-error.log" } },
{ errlog_type, error },
{ error_logger_mf_dir, "log/sasl" }, % Log directory
{ error_logger_mf_maxbytes, 10485760 }, % 10 MB max file size
{ error_logger_mf_maxfiles, 5 } % 5 files max
]
}
].
~~~
the bash command and output during test
~~~
root@kolabfek003a [0] ~ # netstat -tulpen | grep -e "993" -e "143"
tcp 0 0 127.0.0.1:10143 0.0.0.0:* LISTEN 0 13658 2410/cyrus-master
tcp 0 0 0.0.0.0:10993 0.0.0.0:* LISTEN 0 13662 2410/cyrus-master
tcp 0 0 ::1:10143 :::* LISTEN 0 13656 2410/cyrus-master
tcp 0 0 :::993 :::* LISTEN 0 75137 4781/beam.smp
tcp 0 0 :::10993 :::* LISTEN 0 13664 2410/cyrus-master
root@kolabfek003a [0] ~ # service guam restart
ok
root@kolabfek003a [0] ~ # date;netstat -tulpen | grep -e "993" -e "143"
Wed Jul 6 16:18:33 CEST 2016
tcp 0 0 127.0.0.1:10143 0.0.0.0:* LISTEN 0 13658 2410/cyrus-master
tcp 0 0 0.0.0.0:10993 0.0.0.0:* LISTEN 0 13662 2410/cyrus-master
tcp 0 0 ::1:10143 :::* LISTEN 0 13656 2410/cyrus-master
tcp 0 0 :::10993 :::* LISTEN 0 13664 2410/cyrus-master
root@kolabfek003a [0] ~ # date;netstat -tulpen | grep -e "993" -e "143"
Wed Jul 6 16:18:44 CEST 2016
tcp 0 0 127.0.0.1:10143 0.0.0.0:* LISTEN 0 13658 2410/cyrus-master
tcp 0 0 0.0.0.0:10993 0.0.0.0:* LISTEN 0 13662 2410/cyrus-master
tcp 0 0 ::1:10143 :::* LISTEN 0 13656 2410/cyrus-master
tcp 0 0 :::993 :::* LISTEN 0 83119 4781/beam.smp
tcp 0 0 :::143 :::* LISTEN 0 83117 4781/beam.smp
tcp 0 0 :::10993 :::* LISTEN 0 13664 2410/cyrus-master
root@kolabfek003a [0] ~ # iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT icmp -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
REJECT tcp -- anywhere anywhere tcp dpt:imap reject-with icmp-port-unreachable
Chain FORWARD (policy ACCEPT)
target prot opt source destination
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
root@kolabfek003a [0] ~ # date;service iptables stop; date;netstat -tulpen | grep -e "993" -e "143"
Wed Jul 6 16:19:35 CEST 2016
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Flushing firewall rules: [ OK ]
iptables: Unloading modules: [ OK ]
Wed Jul 6 16:19:35 CEST 2016
tcp 0 0 127.0.0.1:10143 0.0.0.0:* LISTEN 0 13658 2410/cyrus-master
tcp 0 0 0.0.0.0:10993 0.0.0.0:* LISTEN 0 13662 2410/cyrus-master
tcp 0 0 ::1:10143 :::* LISTEN 0 13656 2410/cyrus-master
tcp 0 0 :::993 :::* LISTEN 0 83119 4781/beam.smp
tcp 0 0 :::143 :::* LISTEN 0 83117 4781/beam.smp
tcp 0 0 :::10993 :::* LISTEN 0 13664 2410/cyrus-master
root@kolabfek003a [0] ~ # date;service iptables stop; date;netstat -tulpen | grep -e "993" -e "143"
Wed Jul 6 16:19:40 CEST 2016
Wed Jul 6 16:19:40 CEST 2016
tcp 0 0 127.0.0.1:10143 0.0.0.0:* LISTEN 0 13658 2410/cyrus-master
tcp 0 0 0.0.0.0:10993 0.0.0.0:* LISTEN 0 13662 2410/cyrus-master
tcp 0 0 ::1:10143 :::* LISTEN 0 13656 2410/cyrus-master
tcp 0 0 :::993 :::* LISTEN 0 83119 4781/beam.smp
tcp 0 0 :::10993 :::* LISTEN 0 13664 2410/cyrus-master
~~~
what was logged while I tested
~~~
root@kolabfek003a [1] ~ # grep -ir "2016-07-06 16:19:[34]" /var/log/guam/
/var/log/guam/crash.log:2016-07-06 16:19:36 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:36 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:36 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:37 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:41 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:41 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:41 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:41 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:41 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:41 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:46 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:46 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:46 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:46 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:46 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-06 16:19:46 =SUPERVISOR REPORT====
/var/log/guam/console.log:2016-07-06 16:19:36.231 [error] <0.4020.0> gen_server <0.4020.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/console.log:2016-07-06 16:19:36.232 [error] <0.4020.0> CRASH REPORT Process <0.4020.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/console.log:2016-07-06 16:19:36.233 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4020.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.114 [error] <0.4006.0> gen_server <0.4006.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 131
/var/log/guam/console.log:2016-07-06 16:19:37.114 [error] <0.4007.0> gen_server <0.4007.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.114 [error] <0.4007.0> CRASH REPORT Process <0.4007.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.114 [error] <0.4006.0> CRASH REPORT Process <0.4006.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 131 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.115 [error] <0.4022.0> gen_server <0.4022.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.115 [error] <0.4022.0> CRASH REPORT Process <0.4022.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.115 [error] <0.4024.0> gen_server <0.4024.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.115 [error] <0.4024.0> CRASH REPORT Process <0.4024.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.115 [error] <0.4008.0> gen_server <0.4008.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.115 [error] <0.4025.0> gen_server <0.4025.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.116 [error] <0.4008.0> CRASH REPORT Process <0.4008.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.116 [error] <0.4025.0> CRASH REPORT Process <0.4025.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.116 [error] <0.4026.0> gen_server <0.4026.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.116 [error] <0.4026.0> CRASH REPORT Process <0.4026.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.116 [error] <0.4009.0> gen_server <0.4009.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.116 [error] <0.4027.0> gen_server <0.4027.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.116 [error] <0.4027.0> CRASH REPORT Process <0.4027.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.117 [error] <0.4009.0> CRASH REPORT Process <0.4009.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.117 [error] <0.4028.0> gen_server <0.4028.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.117 [error] <0.4028.0> CRASH REPORT Process <0.4028.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.117 [error] <0.4029.0> gen_server <0.4029.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.118 [error] <0.4010.0> gen_server <0.4010.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.118 [error] <0.4029.0> CRASH REPORT Process <0.4029.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.118 [error] <0.4010.0> CRASH REPORT Process <0.4010.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.118 [error] <0.4030.0> gen_server <0.4030.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.118 [error] <0.4030.0> CRASH REPORT Process <0.4030.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.119 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4007.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.119 [error] <0.4011.0> gen_server <0.4011.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.119 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4006.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 131 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.119 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4022.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.119 [error] <0.4011.0> CRASH REPORT Process <0.4011.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.120 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4024.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.120 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4008.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.120 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4025.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.120 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4026.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.121 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4027.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.121 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4009.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.121 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4028.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.121 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4029.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4010.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4030.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4012.0> gen_server <0.4012.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4011.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4012.0> CRASH REPORT Process <0.4012.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4014.0> gen_server <0.4014.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4014.0> CRASH REPORT Process <0.4014.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4012.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4014.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4018.0> gen_server <0.4018.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.523 [error] <0.4017.0> gen_server <0.4017.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4018.0> CRASH REPORT Process <0.4018.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4017.0> CRASH REPORT Process <0.4017.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4019.0> gen_server <0.4019.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4018.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4017.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4019.0> CRASH REPORT Process <0.4019.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4021.0> gen_server <0.4021.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4021.0> CRASH REPORT Process <0.4021.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4019.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:37.524 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4021.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:41.215 [error] <0.4023.0> gen_server <0.4023.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/console.log:2016-07-06 16:19:41.216 [error] <0.4023.0> CRASH REPORT Process <0.4023.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/console.log:2016-07-06 16:19:41.216 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4023.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:41.233 [error] <0.4032.0> gen_server <0.4032.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/console.log:2016-07-06 16:19:41.233 [error] <0.4032.0> CRASH REPORT Process <0.4032.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/console.log:2016-07-06 16:19:41.233 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4032.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:46.220 [error] <0.4033.0> gen_server <0.4033.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/console.log:2016-07-06 16:19:46.220 [error] <0.4033.0> CRASH REPORT Process <0.4033.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/console.log:2016-07-06 16:19:46.221 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4033.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
/var/log/guam/console.log:2016-07-06 16:19:46.240 [error] <0.4034.0> gen_server <0.4034.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/console.log:2016-07-06 16:19:46.240 [error] <0.4034.0> CRASH REPORT Process <0.4034.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/console.log:2016-07-06 16:19:46.240 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4034.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:36.231 [error] <0.4020.0> gen_server <0.4020.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/error.log:2016-07-06 16:19:36.232 [error] <0.4020.0> CRASH REPORT Process <0.4020.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/error.log:2016-07-06 16:19:36.233 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4020.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.114 [error] <0.4006.0> gen_server <0.4006.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 131
/var/log/guam/error.log:2016-07-06 16:19:37.114 [error] <0.4007.0> gen_server <0.4007.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.114 [error] <0.4007.0> CRASH REPORT Process <0.4007.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.114 [error] <0.4006.0> CRASH REPORT Process <0.4006.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 131 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.115 [error] <0.4022.0> gen_server <0.4022.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.115 [error] <0.4022.0> CRASH REPORT Process <0.4022.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.115 [error] <0.4024.0> gen_server <0.4024.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.115 [error] <0.4024.0> CRASH REPORT Process <0.4024.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.115 [error] <0.4008.0> gen_server <0.4008.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.115 [error] <0.4025.0> gen_server <0.4025.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.116 [error] <0.4008.0> CRASH REPORT Process <0.4008.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.116 [error] <0.4025.0> CRASH REPORT Process <0.4025.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.116 [error] <0.4026.0> gen_server <0.4026.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.116 [error] <0.4026.0> CRASH REPORT Process <0.4026.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.116 [error] <0.4009.0> gen_server <0.4009.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.116 [error] <0.4027.0> gen_server <0.4027.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.116 [error] <0.4027.0> CRASH REPORT Process <0.4027.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.117 [error] <0.4009.0> CRASH REPORT Process <0.4009.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.117 [error] <0.4028.0> gen_server <0.4028.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.117 [error] <0.4028.0> CRASH REPORT Process <0.4028.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.117 [error] <0.4029.0> gen_server <0.4029.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.118 [error] <0.4010.0> gen_server <0.4010.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.118 [error] <0.4029.0> CRASH REPORT Process <0.4029.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.118 [error] <0.4010.0> CRASH REPORT Process <0.4010.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.118 [error] <0.4030.0> gen_server <0.4030.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.118 [error] <0.4030.0> CRASH REPORT Process <0.4030.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.119 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4007.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.119 [error] <0.4011.0> gen_server <0.4011.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.119 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4006.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 131 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.119 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4022.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.119 [error] <0.4011.0> CRASH REPORT Process <0.4011.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.120 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4024.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.120 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4008.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.120 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4025.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.120 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4026.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.121 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4027.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.121 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4009.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.121 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4028.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.121 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4029.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4010.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4030.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4012.0> gen_server <0.4012.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4011.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4012.0> CRASH REPORT Process <0.4012.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4014.0> gen_server <0.4014.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4014.0> CRASH REPORT Process <0.4014.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4012.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4014.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4018.0> gen_server <0.4018.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.523 [error] <0.4017.0> gen_server <0.4017.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4018.0> CRASH REPORT Process <0.4018.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4017.0> CRASH REPORT Process <0.4017.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4019.0> gen_server <0.4019.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4018.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4017.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4019.0> CRASH REPORT Process <0.4019.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4021.0> gen_server <0.4021.0> terminated with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4021.0> CRASH REPORT Process <0.4021.0> with 0 neighbours exited with reason: no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4019.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:37.524 [error] <0.4002.0> Supervisor {<0.4002.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4021.0> exit with reason no match of right hand value {error,closed} in kolab_guam_session:accept_client/2 line 130 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:41.215 [error] <0.4023.0> gen_server <0.4023.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/error.log:2016-07-06 16:19:41.216 [error] <0.4023.0> CRASH REPORT Process <0.4023.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/error.log:2016-07-06 16:19:41.216 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4023.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:41.233 [error] <0.4032.0> gen_server <0.4032.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/error.log:2016-07-06 16:19:41.233 [error] <0.4032.0> CRASH REPORT Process <0.4032.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/error.log:2016-07-06 16:19:41.233 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4032.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:46.220 [error] <0.4033.0> gen_server <0.4033.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/error.log:2016-07-06 16:19:46.220 [error] <0.4033.0> CRASH REPORT Process <0.4033.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/error.log:2016-07-06 16:19:46.221 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4033.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
/var/log/guam/error.log:2016-07-06 16:19:46.240 [error] <0.4034.0> gen_server <0.4034.0> terminated with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516
/var/log/guam/error.log:2016-07-06 16:19:46.240 [error] <0.4034.0> CRASH REPORT Process <0.4034.0> with 0 neighbours exited with reason: no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in gen_server:terminate/7 line 814
/var/log/guam/error.log:2016-07-06 16:19:46.240 [error] <0.4005.0> Supervisor {<0.4005.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.4034.0> exit with reason no function clause matching inet:tcp_close({sslsocket,nil,{#Port<0.11238>,{config,{ssl_options,tls,[{3,3},{3,2},{3,1}],verify_none,{#Fun<ssl.7..>,...},...},...}}}) line 1516 in context child_terminated
~~~