Page MenuHomePhorge

guam stops servicing imap on loadbalanced interface (reasonably caused by loadbalancer service checks [not shure])
Closed, ResolvedPublic

Description

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

Details

Ticket Type
Task

Revisions and Commits

Event Timeline

I've made the output more legible by using backticks (`) rather than tildes (~)

If the load ballancer is "pinging" the system by checking to see if the port is open / being listened to without actually completing the connection, this is the exact same issue that was fixed 0.8.2. Looking at the error.log entries, that indeed appears to be the case.

I absolutely agree, and added a comment/test results for 0.8.2 on T1317.
Shall we close T1345 and continue this in T1317 or the other way around?

Just mean T1317 involves some more and by the way fixed problems which could be closed for versions >"0.8" .

Ok, I tried that with 0.8.2 now and think I found one problem or missing info in the test you run.
Is the guam realy responding on that "nc -z"?
If I do the test you described I get at least one/a few "Success" messages returned by "nc -z". Did you just not copy those to the case (like the trailing "done")?

If I run this test sequence:

clear
date;yum list installed guam | grep guam;
date;service guam stop
date;service guam start
date;netstat -tulpen | grep -e 143 -e 993
let n=0;let t=0; while  [ $t -lt 5 ]; do if [ $n == 10 ]; then echo "date 10 times"; let n=0;let t=$t+1; else let n=$n+1; fi; echo -n "$n ";date;nc -z localhost 143;done
rm -f ~/guam.logs
date;grep -re "2016-07-08 $(date +%H):$(date +%M):" /var/log/guam/* >> ~/guam.logs
less ~/guam.logs

and get in response:

[root@kolabfek001a ~]# clear

[root@kolabfek001a ~]# date;yum list installed guam | grep guam;
Fri Jul  8 10:06:58 CEST 2016
guam.x86_64          0.8.2-1.1.el6.kolab_14           @lhm-kolab-14-extras-audit
[root@kolabfek001a ~]# date;service guam stop
Fri Jul  8 10:06:59 CEST 2016
Stopping guam..ok

Stopped
[root@kolabfek001a ~]# date;service guam start
Fri Jul  8 10:07:07 CEST 2016
Starting guam
.
[root@kolabfek001a ~]# date;netstat -tulpen | grep -e 143 -e 993
Fri Jul  8 10:07:11 CEST 2016
tcp        0      0 127.0.0.1:10143             0.0.0.0:*                   LISTEN      0          81788      1428/proxyd
tcp        0      0 0.0.0.0:10993               0.0.0.0:*                   LISTEN      0          81792      1464/proxyd
tcp        0      0 ::1:10143                   :::*                        LISTEN      0          81786      9424/cyrus-master
tcp        0      0 :::993                      :::*                        LISTEN      0          911957     21575/beam.smp
tcp        0      0 :::143                      :::*                        LISTEN      0          911956     21575/beam.smp
tcp        0      0 :::10993                    :::*                        LISTEN      0          81794      3007/proxyd

in here the service quits after the third attempt

[root@kolabfek001a ~]# let n=0;let t=0; while  [ $t -lt 5 ]; do if [ $n == 10 ]; then echo "date 10 times"; let n=0;let t=$t+1; else let n=$n+1; fi; echo -n "$n ";date;nc -z localhost 143;done
1 Fri Jul  8 10:07:12 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
2 Fri Jul  8 10:07:12 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
3 Fri Jul  8 10:07:12 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
4 Fri Jul  8 10:07:12 CEST 2016
5 Fri Jul  8 10:07:12 CEST 2016
6 Fri Jul  8 10:07:12 CEST 2016
7 Fri Jul  8 10:07:12 CEST 2016
8 Fri Jul  8 10:07:12 CEST 2016
9 Fri Jul  8 10:07:12 CEST 2016
10 Fri Jul  8 10:07:12 CEST 2016
date 10 times
0 Fri Jul  8 10:07:12 CEST 2016
1 Fri Jul  8 10:07:12 CEST 2016
2 Fri Jul  8 10:07:12 CEST 2016
3 Fri Jul  8 10:07:12 CEST 2016
4 Fri Jul  8 10:07:12 CEST 2016
5 Fri Jul  8 10:07:12 CEST 2016
6 Fri Jul  8 10:07:12 CEST 2016
7 Fri Jul  8 10:07:12 CEST 2016
8 Fri Jul  8 10:07:12 CEST 2016
9 Fri Jul  8 10:07:12 CEST 2016
10 Fri Jul  8 10:07:12 CEST 2016
date 10 times
0 Fri Jul  8 10:07:12 CEST 2016
1 Fri Jul  8 10:07:12 CEST 2016
2 Fri Jul  8 10:07:12 CEST 2016
3 Fri Jul  8 10:07:12 CEST 2016
4 Fri Jul  8 10:07:12 CEST 2016
5 Fri Jul  8 10:07:12 CEST 2016
6 Fri Jul  8 10:07:12 CEST 2016
7 Fri Jul  8 10:07:12 CEST 2016
8 Fri Jul  8 10:07:12 CEST 2016
9 Fri Jul  8 10:07:12 CEST 2016
10 Fri Jul  8 10:07:12 CEST 2016
date 10 times
0 Fri Jul  8 10:07:12 CEST 2016
1 Fri Jul  8 10:07:12 CEST 2016
2 Fri Jul  8 10:07:12 CEST 2016
3 Fri Jul  8 10:07:12 CEST 2016
4 Fri Jul  8 10:07:12 CEST 2016
5 Fri Jul  8 10:07:12 CEST 2016
6 Fri Jul  8 10:07:12 CEST 2016
7 Fri Jul  8 10:07:12 CEST 2016
8 Fri Jul  8 10:07:12 CEST 2016
9 Fri Jul  8 10:07:12 CEST 2016
10 Fri Jul  8 10:07:12 CEST 2016
date 10 times
0 Fri Jul  8 10:07:12 CEST 2016
1 Fri Jul  8 10:07:12 CEST 2016
2 Fri Jul  8 10:07:12 CEST 2016
3 Fri Jul  8 10:07:12 CEST 2016
4 Fri Jul  8 10:07:12 CEST 2016
5 Fri Jul  8 10:07:12 CEST 2016
6 Fri Jul  8 10:07:12 CEST 2016
7 Fri Jul  8 10:07:12 CEST 2016
8 Fri Jul  8 10:07:12 CEST 2016
9 Fri Jul  8 10:07:12 CEST 2016
10 Fri Jul  8 10:07:12 CEST 2016
date 10 times
0 Fri Jul  8 10:07:12 CEST 2016
[root@kolabfek001a ~]# rm -f ~/guam.logs
[root@kolabfek001a ~]# date;grep -re "2016-07-08 $(date +%H):$(date +%M):" /var/log/guam/* >> ~/guam.logs
Fri Jul  8 10:07:12 CEST 2016

find this attached (if I find the attach function here)

[root@kolabfek001a ~]# less ~/guam.logs

And here another netstat for imap(s) services after running the test (listener for 143 is missing now):

[root@kolabfek001a ~]# date;netstat -tulpen | grep -e 143 -e 993
Fri Jul  8 10:17:37 CEST 2016
tcp        0      0 127.0.0.1:10143             0.0.0.0:*                   LISTEN      0          81788      1428/proxyd
tcp        0      0 0.0.0.0:10993               0.0.0.0:*                   LISTEN      0          81792      1464/proxyd
tcp        0      0 ::1:10143                   :::*                        LISTEN      0          81786      9424/cyrus-master
tcp        0      0 :::993                      :::*                        LISTEN      0          911957     21575/beam.smp
tcp        0      0 :::10993                    :::*                        LISTEN      0          81794      3007/proxyd

since I can't find the/a attach function, here the guam logs

[root@kolabfek001a ~]# cat ~/guam.logs
/var/log/guam/console.log:2016-07-08 10:07:00.000 [warning] <0.1189.0> lager_error_logger_h dropped 4318 messages in the last second that exceeded the limit of 50 messages/sec
/var/log/guam/console.log:2016-07-08 10:07:00.000 [error] <0.31560.2> gen_server <0.31560.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.001 [error] <0.31560.2> CRASH REPORT Process <0.31560.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.002 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31560.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.002 [error] <0.31562.2> gen_server <0.31562.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.002 [error] <0.31562.2> CRASH REPORT Process <0.31562.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.002 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31562.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.002 [error] <0.31563.2> gen_server <0.31563.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.002 [error] <0.31563.2> CRASH REPORT Process <0.31563.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.002 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31563.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.002 [error] <0.31564.2> gen_server <0.31564.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.002 [error] <0.31564.2> CRASH REPORT Process <0.31564.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31564.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.003 [error] <0.31565.2> gen_server <0.31565.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.003 [error] <0.31565.2> CRASH REPORT Process <0.31565.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31565.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.003 [error] <0.31566.2> gen_server <0.31566.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.003 [error] <0.31566.2> CRASH REPORT Process <0.31566.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31566.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.003 [error] <0.31567.2> gen_server <0.31567.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.003 [error] <0.31567.2> CRASH REPORT Process <0.31567.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31567.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.004 [error] <0.31568.2> gen_server <0.31568.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.004 [error] <0.31568.2> CRASH REPORT Process <0.31568.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31568.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.004 [error] <0.31569.2> gen_server <0.31569.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.004 [error] <0.31569.2> CRASH REPORT Process <0.31569.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31569.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.005 [error] <0.31561.2> gen_server <0.31561.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.005 [error] <0.31561.2> CRASH REPORT Process <0.31561.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.005 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31561.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.005 [error] <0.31570.2> gen_server <0.31570.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.005 [error] <0.31570.2> CRASH REPORT Process <0.31570.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.005 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31570.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.005 [error] <0.31571.2> gen_server <0.31571.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.006 [error] <0.31571.2> CRASH REPORT Process <0.31571.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.006 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31571.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:00.008 [error] <0.31572.2> gen_server <0.31572.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.008 [error] <0.31572.2> CRASH REPORT Process <0.31572.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.008 [error] <0.31573.2> gen_server <0.31573.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.008 [error] <0.31573.2> CRASH REPORT Process <0.31573.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.008 [error] <0.31574.2> gen_server <0.31574.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.008 [error] <0.31574.2> CRASH REPORT Process <0.31574.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.008 [error] <0.31575.2> gen_server <0.31575.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.008 [error] <0.31575.2> CRASH REPORT Process <0.31575.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.008 [error] <0.31576.2> gen_server <0.31576.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.009 [error] <0.31576.2> CRASH REPORT Process <0.31576.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.009 [error] <0.31577.2> gen_server <0.31577.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.009 [error] <0.31577.2> CRASH REPORT Process <0.31577.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:00.009 [error] <0.31578.2> gen_server <0.31578.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:00.009 [error] <0.31578.2> CRASH REPORT Process <0.31578.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.000 [warning] <0.1189.0> lager_error_logger_h dropped 4322 messages in the last second that exceeded the limit of 50 messages/sec
/var/log/guam/console.log:2016-07-08 10:07:01.000 [error] <0.1129.3> gen_server <0.1129.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.001 [error] <0.1129.3> CRASH REPORT Process <0.1129.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.001 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1129.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.001 [error] <0.1130.3> gen_server <0.1130.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.001 [error] <0.1130.3> CRASH REPORT Process <0.1130.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1131.3> gen_server <0.1131.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1131.3> CRASH REPORT Process <0.1131.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1132.3> gen_server <0.1132.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1132.3> CRASH REPORT Process <0.1132.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1133.3> gen_server <0.1133.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1133.3> CRASH REPORT Process <0.1133.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1134.3> gen_server <0.1134.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1134.3> CRASH REPORT Process <0.1134.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1135.3> gen_server <0.1135.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1135.3> CRASH REPORT Process <0.1135.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.002 [error] <0.1136.3> gen_server <0.1136.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.003 [error] <0.1136.3> CRASH REPORT Process <0.1136.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1130.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1131.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1132.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1133.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1134.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1135.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1136.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.004 [error] <0.1137.3> gen_server <0.1137.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.004 [error] <0.1137.3> CRASH REPORT Process <0.1137.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.004 [error] <0.1138.3> gen_server <0.1138.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.004 [error] <0.1138.3> CRASH REPORT Process <0.1138.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1137.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1138.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.005 [error] <0.1139.3> gen_server <0.1139.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.005 [error] <0.1139.3> CRASH REPORT Process <0.1139.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.005 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1139.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.005 [error] <0.1142.3> gen_server <0.1142.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.005 [error] <0.1140.3> gen_server <0.1140.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.005 [error] <0.1142.3> CRASH REPORT Process <0.1142.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.005 [error] <0.1140.3> CRASH REPORT Process <0.1140.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.006 [error] <0.1141.3> gen_server <0.1141.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.006 [error] <0.1141.3> CRASH REPORT Process <0.1141.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.006 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1142.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.006 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1140.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.006 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1141.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.006 [error] <0.1143.3> gen_server <0.1143.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.006 [error] <0.1143.3> CRASH REPORT Process <0.1143.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.007 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1143.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:01.007 [error] <0.1144.3> gen_server <0.1144.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.007 [error] <0.1144.3> CRASH REPORT Process <0.1144.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.007 [error] <0.1145.3> gen_server <0.1145.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:01.007 [error] <0.1145.3> CRASH REPORT Process <0.1145.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:01.007 [error] <0.1146.3> gen_server <0.1146.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:02.325 [warning] <0.1189.0> lager_error_logger_h dropped 1269 messages in the last second that exceeded the limit of 50 messages/sec
/var/log/guam/console.log:2016-07-08 10:07:02.326 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with kolab_guam_session:start_link(<0.1279.0>, #Port<0.3725>, [{port,10143},{tls,starttls}], false, [{certfile,"/etc/pki/tls/private/muenchen.de.pem"}], [{filter_groupware,[]}]) at undefined exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context shutdown_error
/var/log/guam/console.log:2016-07-08 10:07:02.328 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with kolab_guam_session:start_link(<0.1279.0>, #Port<0.3725>, [{port,10143},{tls,starttls}], false, [{certfile,"/etc/pki/tls/private/muenchen.de.pem"}], [{filter_groupware,[]}]) at undefined exit with reason killed in context shutdown_error
/var/log/guam/console.log:2016-07-08 10:07:10.709 [info] <0.1190.0> Application lager started on node 'kolab_guam@127.0.0.1'
/var/log/guam/console.log:2016-07-08 10:07:10.709 [info] <0.1190.0> Application lager_syslog started on node 'kolab_guam@127.0.0.1'
/var/log/guam/console.log:2016-07-08 10:07:10.709 [info] <0.1190.0> Application crypto started on node 'kolab_guam@127.0.0.1'
/var/log/guam/console.log:2016-07-08 10:07:10.709 [info] <0.1190.0> Application asn1 started on node 'kolab_guam@127.0.0.1'
/var/log/guam/console.log:2016-07-08 10:07:10.709 [info] <0.1190.0> Application public_key started on node 'kolab_guam@127.0.0.1'
/var/log/guam/console.log:2016-07-08 10:07:10.710 [info] <0.1190.0> Application ssl started on node 'kolab_guam@127.0.0.1'
/var/log/guam/console.log:2016-07-08 10:07:10.710 [info] <0.1277.0>@kolab_guam:start:35 Starting Kolab Guam IMAP session proxy ...
/var/log/guam/console.log:2016-07-08 10:07:10.710 [info] <0.1277.0>@kolab_guam:start:36     Starting the main supervisor ...
/var/log/guam/console.log:2016-07-08 10:07:10.711 [info] <0.1279.0>@kolab_guam_listener:init:45 Starting listener "imap" on port 143 ([{reuseaddr,true},{active,once},inet6]) with 1 rules
/var/log/guam/console.log:2016-07-08 10:07:10.712 [info] <0.1292.0>@kolab_guam_listener:init:45 Starting listener "imaps" on port 993 ([{reuseaddr,true},{active,once},inet6,{certfile,"/etc/pki/tls/private/muenchen.de.pem"}]) with 1 rules
/var/log/guam/console.log:2016-07-08 10:07:10.713 [info] <0.1190.0> Application kolab_guam started on node 'kolab_guam@127.0.0.1'
/var/log/guam/console.log:2016-07-08 10:07:12.073 [error] <0.1285.0> gen_server <0.1285.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 133
/var/log/guam/console.log:2016-07-08 10:07:12.073 [error] <0.1285.0> CRASH REPORT Process <0.1285.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 133 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:12.073 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1285.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 133 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:12.073 [error] <0.1319.0> gen_server <0.1319.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:12.073 [error] <0.1319.0> CRASH REPORT Process <0.1319.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:12.074 [error] <0.1321.0> gen_server <0.1321.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:12.074 [error] <0.1321.0> CRASH REPORT Process <0.1321.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:12.074 [error] <0.1286.0> gen_server <0.1286.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/console.log:2016-07-08 10:07:12.074 [error] <0.1286.0> CRASH REPORT Process <0.1286.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/console.log:2016-07-08 10:07:12.074 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1319.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:12.074 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1321.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/console.log:2016-07-08 10:07:12.074 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1286.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:00 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:01 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:02 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:02 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =ERROR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =CRASH REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/crash.log:2016-07-08 10:07:12 =SUPERVISOR REPORT====
/var/log/guam/error.log:2016-07-08 10:07:00.000 [error] <0.31560.2> gen_server <0.31560.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.001 [error] <0.31560.2> CRASH REPORT Process <0.31560.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.002 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31560.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.002 [error] <0.31562.2> gen_server <0.31562.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.002 [error] <0.31562.2> CRASH REPORT Process <0.31562.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.002 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31562.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.002 [error] <0.31563.2> gen_server <0.31563.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.002 [error] <0.31563.2> CRASH REPORT Process <0.31563.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.002 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31563.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.002 [error] <0.31564.2> gen_server <0.31564.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.002 [error] <0.31564.2> CRASH REPORT Process <0.31564.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31564.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.003 [error] <0.31565.2> gen_server <0.31565.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.003 [error] <0.31565.2> CRASH REPORT Process <0.31565.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31565.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.003 [error] <0.31566.2> gen_server <0.31566.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.003 [error] <0.31566.2> CRASH REPORT Process <0.31566.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31566.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.003 [error] <0.31567.2> gen_server <0.31567.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.003 [error] <0.31567.2> CRASH REPORT Process <0.31567.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31567.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.004 [error] <0.31568.2> gen_server <0.31568.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.004 [error] <0.31568.2> CRASH REPORT Process <0.31568.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31568.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.004 [error] <0.31569.2> gen_server <0.31569.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.004 [error] <0.31569.2> CRASH REPORT Process <0.31569.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31569.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.005 [error] <0.31561.2> gen_server <0.31561.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.005 [error] <0.31561.2> CRASH REPORT Process <0.31561.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.005 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31561.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.005 [error] <0.31570.2> gen_server <0.31570.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.005 [error] <0.31570.2> CRASH REPORT Process <0.31570.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.005 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31570.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.005 [error] <0.31571.2> gen_server <0.31571.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.006 [error] <0.31571.2> CRASH REPORT Process <0.31571.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.006 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.31571.2> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:00.008 [error] <0.31572.2> gen_server <0.31572.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.008 [error] <0.31572.2> CRASH REPORT Process <0.31572.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.008 [error] <0.31573.2> gen_server <0.31573.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.008 [error] <0.31573.2> CRASH REPORT Process <0.31573.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.008 [error] <0.31574.2> gen_server <0.31574.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.008 [error] <0.31574.2> CRASH REPORT Process <0.31574.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.008 [error] <0.31575.2> gen_server <0.31575.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.008 [error] <0.31575.2> CRASH REPORT Process <0.31575.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.008 [error] <0.31576.2> gen_server <0.31576.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.009 [error] <0.31576.2> CRASH REPORT Process <0.31576.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.009 [error] <0.31577.2> gen_server <0.31577.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.009 [error] <0.31577.2> CRASH REPORT Process <0.31577.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:00.009 [error] <0.31578.2> gen_server <0.31578.2> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:00.009 [error] <0.31578.2> CRASH REPORT Process <0.31578.2> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.000 [error] <0.1129.3> gen_server <0.1129.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.001 [error] <0.1129.3> CRASH REPORT Process <0.1129.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.001 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1129.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.001 [error] <0.1130.3> gen_server <0.1130.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.001 [error] <0.1130.3> CRASH REPORT Process <0.1130.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1131.3> gen_server <0.1131.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1131.3> CRASH REPORT Process <0.1131.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1132.3> gen_server <0.1132.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1132.3> CRASH REPORT Process <0.1132.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1133.3> gen_server <0.1133.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1133.3> CRASH REPORT Process <0.1133.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1134.3> gen_server <0.1134.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1134.3> CRASH REPORT Process <0.1134.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1135.3> gen_server <0.1135.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1135.3> CRASH REPORT Process <0.1135.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.002 [error] <0.1136.3> gen_server <0.1136.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.003 [error] <0.1136.3> CRASH REPORT Process <0.1136.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1130.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1131.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1132.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.003 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1133.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1134.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1135.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1136.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.004 [error] <0.1137.3> gen_server <0.1137.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.004 [error] <0.1137.3> CRASH REPORT Process <0.1137.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.004 [error] <0.1138.3> gen_server <0.1138.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.004 [error] <0.1138.3> CRASH REPORT Process <0.1138.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1137.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.004 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1138.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.005 [error] <0.1139.3> gen_server <0.1139.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.005 [error] <0.1139.3> CRASH REPORT Process <0.1139.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.005 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1139.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.005 [error] <0.1142.3> gen_server <0.1142.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.005 [error] <0.1140.3> gen_server <0.1140.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.005 [error] <0.1142.3> CRASH REPORT Process <0.1142.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.005 [error] <0.1140.3> CRASH REPORT Process <0.1140.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.006 [error] <0.1141.3> gen_server <0.1141.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.006 [error] <0.1141.3> CRASH REPORT Process <0.1141.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.006 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1142.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.006 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1140.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.006 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1141.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.006 [error] <0.1143.3> gen_server <0.1143.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.006 [error] <0.1143.3> CRASH REPORT Process <0.1143.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.007 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1143.3> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:01.007 [error] <0.1144.3> gen_server <0.1144.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.007 [error] <0.1144.3> CRASH REPORT Process <0.1144.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.007 [error] <0.1145.3> gen_server <0.1145.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:01.007 [error] <0.1145.3> CRASH REPORT Process <0.1145.3> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:01.007 [error] <0.1146.3> gen_server <0.1146.3> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:02.326 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with kolab_guam_session:start_link(<0.1279.0>, #Port<0.3725>, [{port,10143},{tls,starttls}], false, [{certfile,"/etc/pki/tls/private/muenchen.de.pem"}], [{filter_groupware,[]}]) at undefined exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context shutdown_error
/var/log/guam/error.log:2016-07-08 10:07:02.328 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with kolab_guam_session:start_link(<0.1279.0>, #Port<0.3725>, [{port,10143},{tls,starttls}], false, [{certfile,"/etc/pki/tls/private/muenchen.de.pem"}], [{filter_groupware,[]}]) at undefined exit with reason killed in context shutdown_error
/var/log/guam/error.log:2016-07-08 10:07:12.073 [error] <0.1285.0> gen_server <0.1285.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 133
/var/log/guam/error.log:2016-07-08 10:07:12.073 [error] <0.1285.0> CRASH REPORT Process <0.1285.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 133 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.073 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1285.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:accept_client/2 line 133 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.073 [error] <0.1319.0> gen_server <0.1319.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.073 [error] <0.1319.0> CRASH REPORT Process <0.1319.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.074 [error] <0.1321.0> gen_server <0.1321.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.074 [error] <0.1321.0> CRASH REPORT Process <0.1321.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.074 [error] <0.1286.0> gen_server <0.1286.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.074 [error] <0.1286.0> CRASH REPORT Process <0.1286.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.074 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1319.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.074 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1321.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.074 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1286.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.075 [error] <0.1287.0> gen_server <0.1287.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.075 [error] <0.1287.0> CRASH REPORT Process <0.1287.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.075 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1287.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.075 [error] <0.1288.0> gen_server <0.1288.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.075 [error] <0.1289.0> gen_server <0.1289.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.075 [error] <0.1288.0> CRASH REPORT Process <0.1288.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.075 [error] <0.1289.0> CRASH REPORT Process <0.1289.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.075 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1288.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1289.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1290.0> gen_server <0.1290.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1290.0> CRASH REPORT Process <0.1290.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1291.0> gen_server <0.1291.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1291.0> CRASH REPORT Process <0.1291.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1310.0> gen_server <0.1310.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1310.0> CRASH REPORT Process <0.1310.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1290.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1291.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1310.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1325.0> gen_server <0.1325.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.076 [error] <0.1325.0> CRASH REPORT Process <0.1325.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1326.0> gen_server <0.1326.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1326.0> CRASH REPORT Process <0.1326.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1325.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1326.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1327.0> gen_server <0.1327.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1327.0> CRASH REPORT Process <0.1327.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1327.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1328.0> gen_server <0.1328.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1328.0> CRASH REPORT Process <0.1328.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.079 [error] <0.1329.0> gen_server <0.1329.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1329.0> CRASH REPORT Process <0.1329.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1330.0> gen_server <0.1330.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1330.0> CRASH REPORT Process <0.1330.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1331.0> gen_server <0.1331.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1331.0> CRASH REPORT Process <0.1331.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1332.0> gen_server <0.1332.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1332.0> CRASH REPORT Process <0.1332.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1333.0> gen_server <0.1333.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1333.0> CRASH REPORT Process <0.1333.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1328.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1329.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.080 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1330.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.081 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1331.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.081 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1332.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.081 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1333.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.081 [error] <0.1334.0> gen_server <0.1334.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.081 [error] <0.1334.0> CRASH REPORT Process <0.1334.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.081 [error] <0.1279.0> Supervisor {<0.1279.0>,kolab_guam_listener} had child undefined started with {kolab_guam_session,start_link,undefined} at <0.1334.0> exit with reason no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in context child_terminated
/var/log/guam/error.log:2016-07-08 10:07:12.083 [error] <0.1335.0> gen_server <0.1335.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.083 [error] <0.1335.0> CRASH REPORT Process <0.1335.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.083 [error] <0.1336.0> gen_server <0.1336.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.083 [error] <0.1336.0> CRASH REPORT Process <0.1336.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.083 [error] <0.1337.0> gen_server <0.1337.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.083 [error] <0.1337.0> CRASH REPORT Process <0.1337.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.083 [error] <0.1338.0> gen_server <0.1338.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142
/var/log/guam/error.log:2016-07-08 10:07:12.084 [error] <0.1338.0> CRASH REPORT Process <0.1338.0> with 0 neighbours exited with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142 in gen_server:terminate/7 line 826
/var/log/guam/error.log:2016-07-08 10:07:12.084 [error] <0.1339.0> gen_server <0.1339.0> terminated with reason: no match of right hand value {error,einval} in kolab_guam_session:post_accept_bookkeeping/4 line 142

since I can't find the/a attach function, here the guam sys.config (the active one used while testing 0.8.2)

[root@kolabfek001a ~]# cat /etc/guam/sys.config
%% Example configuration for Guam.
[
    {
        kolab_guam, [
            {
                imap_servers, [
                    {
                        imap, [
                            { port, 10143 },
                            { tls, starttls }
                        ]
                    },
                    {
                        imaps, [
                            { port, 10993 },
                            { tls, true }
                        ]
                    }
                ]
            },
            {
                listeners, [
                    {
                        imap, [
                            { port, 143 },
                            { imap_server, imap },
                            {
                                rules, [
                                    { filter_groupware, [] }
                                ]
                            },
                            {
                                tls_config, [
                                    { certfile, "/etc/pki/tls/private/muenchen.de.pem" }
                                ]
                            }
                        ]
                    },
                    {
                        imaps, [
                            { port, 993 },
                            { implicit_tls, true },
                            { imap_server, imaps },
                            {
                                rules, [
                                    { filter_groupware, [] }
                                ]
                            },
                            {
                                tls_config, [
                                    { certfile, "/etc/pki/tls/private/muenchen.de.pem" }
                                ]
                            }
                        ]
                    }
                ]
            }
        ]
    },

    {
        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
        ]
    }
].

Tagged, signed. Available at 21:00 or soon thereafter.

after testing I'd say it's FIXED now

Testprotocol:

GUAM Version

root@kolabfek001a [0] ~ # clear
root@kolabfek001a [0] ~ # date;yum list installed guam | grep guam;
Mon Jul 11 10:56:09 CEST 2016
guam.x86_64            0.8.2-2.1.el6.kolab_14             @kolab-14-extras-audit

Stop GUAM

root@kolabfek001a [0] ~ # date;service guam stop
Mon Jul 11 10:56:09 CEST 2016
Stopping guam..ok

Stopped

Start GUAM

root@kolabfek001a [0] ~ # date;service guam start
Mon Jul 11 10:56:17 CEST 2016
Starting guam

NetStat imap(s) ports

root@kolabfek001a [0] ~ # date;netstat -tulpen | grep -e 143 -e 993
Mon Jul 11 10:56:20 CEST 2016
tcp        0      0 127.0.0.1:10143             0.0.0.0:*                   LISTEN      0          173004755  344/proxyd
tcp        0      0 0.0.0.0:10993               0.0.0.0:*                   LISTEN      0          173004759  1938/cyrus-master
tcp        0      0 ::1:10143                   :::*                        LISTEN      0          173004753  1938/cyrus-master
tcp        0      0 :::993                      :::*                        LISTEN      0          179376946  14081/beam.smp
tcp        0      0 :::143                      :::*                        LISTEN      0          179376943  14081/beam.smp
tcp        0      0 :::10993                    :::*                        LISTEN      0          173004761  1938/cyrus-master

GUAM stabilized test

root@kolabfek001a [0] ~ # let n=0;let t=0; while  [ $t -lt 5 ]; do if [ $n == 10 ]; then echo "date 10 times"; let n=0;let t=$t+1; else let n=$n+1; fi; echo -n "$n ";date;nc -z localhost 143;done
1 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
2 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
3 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
4 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
5 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
6 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
7 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
8 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
9 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
10 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
date 10 times
0 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
1 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
2 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
3 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
4 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
5 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
6 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
7 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
8 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
9 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
10 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
date 10 times
0 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
1 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
2 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
3 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
4 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
5 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
6 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
7 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
8 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
9 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
10 Mon Jul 11 10:56:20 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
date 10 times
0 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
1 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
2 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
3 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
4 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
5 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
6 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
7 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
8 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
9 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
10 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
date 10 times
0 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
1 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
2 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
3 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
4 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
5 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
6 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
7 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
8 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
9 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
10 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!
date 10 times
0 Mon Jul 11 10:56:21 CEST 2016
Connection to localhost 143 port [tcp/imap] succeeded!