1

Topic: Attempting AD integration: cannot complete dovecot login test

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 1.6.2 OPENLDAP edition.
- Deployed with iRedMail Easy or the downloadable installer? downloadable installer
- Linux/BSD distribution name and version: Ubuntu Server 22.04 LTS
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? no
====

I'm following the guide here to setup iRedMail with AD:

https://docs.iredmail.org/active.directory.html

All postmap tests work great.

Dovecot telnet login test is not working.

Failed test attempt:

#:/var/log/dovecot$ telnet localhost 143
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
* OK [CAPABILITY IMAP4rev1 SASL-IR LOGIN-REFERRALS ID ENABLE IDLE LITERAL+ STARTTLS AUTH=PLAIN AUTH=LOGIN] Dovecot (Ubuntu) ready.
. login firstname.lastname@example.com complexUSERpassword
* OK Waiting for authentication process to respond..
* BYE Disconnected for inactivity during authentication.
Connection closed by foreign host.

/etc/dovecot/dovecot-ldap.conf

hosts           = ad.example.com:389
ldap_version    = 3
auth_bind       = yes
dn              = vmail@example.com
dnpass          = complexVMAILpassword
base            = dc=example,dc=com
scope           = subtree
deref           = never
debug_level     = 1

# Below two are required by command 'doveadm mailbox ...'
iterate_attrs   = userPrincipalName=user
iterate_filter  = (&(userPrincipalName=*)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))
user_filter     = (&(userPrincipalName=%u)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))
user_attrs      = mail=master_user,mail=user,=home=/var/vmail/vmail1/%Ld/%Ln/,=mail=maildir:~/Maildir/

# Used for dn lookup
pass_filter     = (&(userPrincipalName=%u)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))
pass_attrs      = userPassword=password
default_pass_scheme = CRYPT

dovecot -n

# 2.3.16 (7e2e900c1a): /etc/dovecot/dovecot.conf
# Pigeonhole version 0.5.16 (09c29328)
# OS: Linux 5.15.0-58-generic x86_64 Ubuntu 22.04.1 LTS
# Hostname: iredmail.example.com
auth_debug = yes
auth_debug_passwords = yes
auth_master_user_separator = *
auth_mechanisms = PLAIN LOGIN
auth_verbose = yes
deliver_log_format = from=%{from}, envelope_sender=%{from_envelope}, subject=%{subject}, msgid=%m, size=%{size}, delivery_time=%{delivery_time}ms, %$
dict {
  acl = mysql:/etc/dovecot/dovecot-share-folder.conf
  lastlogin = mysql:/etc/dovecot/dovecot-last-login.conf
  quotadict = mysql:/etc/dovecot/dovecot-used-quota.conf
}
first_valid_uid = 2000
last_valid_uid = 2000
listen = * [::]
login_log_format_elements = user=<%u> method=%m rip=%r lip=%l mpid=%e %c %k session=<%{session}>
mail_debug = yes
mail_gid = 2000
mail_location = maildir:%Lh/Maildir/:INDEX=%Lh/Maildir/
mail_plugins = quota mailbox_alias acl mail_log notify
mail_uid = 2000
managesieve_notify_capability = mailto
managesieve_sieve_capability = fileinto reject envelope encoded-character vacation subaddress comparator-i;ascii-numeric relational regex imap4flags copy include variables body enotify environment mailbox date index ihave duplicate mime foreverypart extracttext
namespace {
  inbox = yes
  location =
  mailbox Archive {
    auto = no
    special_use = \Archive
  }
  mailbox Archives {
    auto = no
    special_use = \Archive
  }
  mailbox "Deleted Messages" {
    auto = no
    special_use = \Trash
  }
  mailbox Drafts {
    auto = subscribe
    special_use = \Drafts
  }
  mailbox Junk {
    auto = subscribe
    special_use = \Junk
  }
  mailbox "Junk E-mail" {
    auto = no
    special_use = \Junk
  }
  mailbox Sent {
    auto = subscribe
    special_use = \Sent
  }
  mailbox "Sent Items" {
    auto = no
    special_use = \Sent
  }
  mailbox "Sent Messages" {
    auto = no
    special_use = \Sent
  }
  mailbox Spam {
    auto = no
    special_use = \Junk
  }
  mailbox Trash {
    auto = subscribe
    special_use = \Trash
  }
  prefix =
  separator = /
  type = private
}
namespace {
  list = children
  location = maildir:%%Lh/Maildir/:INDEX=%%Lh/Maildir/Shared/%%Ld/%%Ln
  prefix = Shared/%%u/
  separator = /
  subscriptions = yes
  type = shared
}
passdb {
  args = /etc/dovecot/dovecot-ldap.conf
  driver = ldap
}
passdb {
  args = /etc/dovecot/dovecot-master-users
  driver = passwd-file
  master = yes
}
plugin {
  acl = vfile
  acl_shared_dict = proxy::acl
  last_login_dict = proxy::lastlogin
  last_login_key = # hidden, use -P to show it
  mail_log_events = delete undelete expunge copy mailbox_create mailbox_delete mailbox_rename
  mail_log_fields = uid box msgid size from subject flags
  mailbox_alias_new = Sent Messages
  mailbox_alias_new2 = Sent Items
  mailbox_alias_old = Sent
  mailbox_alias_old2 = Sent
  quota = dict:user::proxy::quotadict
  quota_grace = 10%%
  quota_status_nouser = DUNNO
  quota_status_overquota = 552 5.2.2 Mailbox is full
  quota_status_success = DUNNO
  quota_warning = storage=100%% quota-warning 100 %u
  quota_warning2 = storage=95%% quota-warning 95 %u
  quota_warning3 = storage=90%% quota-warning 90 %u
  quota_warning4 = storage=85%% quota-warning 85 %u
  sieve = ~/sieve/dovecot.sieve
  sieve_before = /var/vmail/sieve/dovecot.sieve
  sieve_dir = ~/sieve
  sieve_global_dir = /var/vmail/sieve
  sieve_max_redirects = 30
  sieve_vacation_send_from_recipient = yes
}
protocols = pop3 imap sieve lmtp
service auth {
  unix_listener /var/spool/postfix/private/dovecot-auth {
    group = postfix
    mode = 0666
    user = postfix
  }
  unix_listener auth-master {
    group = vmail
    mode = 0666
    user = vmail
  }
  unix_listener auth-userdb {
    group = vmail
    mode = 0660
    user = vmail
  }
}
service dict {
  unix_listener dict {
    group = vmail
    mode = 0660
    user = vmail
  }
}
service imap-login {
  process_limit = 500
  service_count = 1
}
service lmtp {
  executable = lmtp -L
  inet_listener lmtp {
    address = 127.0.0.1
    port = 24
  }
  process_min_avail = 5
  unix_listener /var/spool/postfix/private/dovecot-lmtp {
    group = postfix
    mode = 0600
    user = postfix
  }
  user = vmail
}
service managesieve-login {
  inet_listener sieve {
    address = 127.0.0.1
    port = 4190
  }
}
service pop3-login {
  service_count = 1
}
service quota-status {
  client_limit = 1
  executable = quota-status -p postfix
  inet_listener {
    address = 127.0.0.1
    port = 12340
  }
}
service quota-warning {
  executable = script /usr/local/bin/dovecot-quota-warning.sh
  unix_listener quota-warning {
    group = vmail
    mode = 0660
    user = vmail
  }
}
service stats {
  fifo_listener stats-mail {
    mode = 0644
    user = vmail
  }
  inet_listener {
    address = 127.0.0.1
    port = 24242
  }
  unix_listener stats-writer {
    group = vmail
    mode = 0660
    user = vmail
  }
}
ssl = required
ssl_cert = </etc/ssl/certs/iRedMail.crt
ssl_cipher_list = EECDH+CHACHA20:EECDH+AESGCM:EDH+AESGCM:AES256+EECDH
ssl_dh = # hidden, use -P to show it
ssl_key = # hidden, use -P to show it
ssl_prefer_server_ciphers = yes
syslog_facility = local5
userdb {
  args = /etc/dovecot/dovecot-ldap.conf
  driver = ldap
}
protocol lda {
  lda_mailbox_autocreate = yes
  lda_mailbox_autosubscribe = yes
  mail_plugins = quota mailbox_alias acl mail_log notify sieve
}
protocol lmtp {
  lmtp_save_to_detail_mailbox = yes
  mail_plugins = quota mailbox_alias acl mail_log notify sieve
  recipient_delimiter = +
}
protocol imap {
  imap_client_workarounds = tb-extra-mailbox-sep
  mail_max_userip_connections = 30
  mail_plugins = quota mailbox_alias acl mail_log notify imap_quota imap_acl last_login
}
protocol pop3 {
  mail_max_userip_connections = 30
  mail_plugins = quota mailbox_alias acl mail_log notify last_login
  pop3_client_workarounds = outlook-no-nuls oe-ns-eoh
  pop3_uidl_format = %08Xu%08Xv
}

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2 (edited by zippydan 2023-01-19 16:15:07)

Re: Attempting AD integration: cannot complete dovecot login test

/var/log/dovecot/dovecot.log

Jan 19 07:19:55 Office1-sv-iredmail dovecot: master: Dovecot v2.3.16 (7e2e900c1a) starting up for pop3, imap, sieve, lmtp (core dumps disabled)
Jan 19 07:20:18 Office1-sv-iredmail dovecot: stats: Error: conn stats-reader (127.0.0.1:35702): didn't reply with a valid VERSION line: EXPORT#011global
Jan 19 07:20:18 Office1-sv-iredmail dovecot: stats: Error: conn stats-reader (127.0.0.1:35712): didn't reply with a valid VERSION line: EXPORT#011global
Jan 19 07:26:50 Office1-sv-iredmail dovecot: master: Warning: Killed with signal 15 (by pid=2890 uid=0 code=kill)
Jan 19 07:26:52 Office1-sv-iredmail dovecot: log(936): Warning: Killed with signal 15 (by pid=1 uid=0 code=kill)
Jan 19 07:26:52 Office1-sv-iredmail dovecot: master: Dovecot v2.3.16 (7e2e900c1a) starting up for pop3, imap, sieve, lmtp (core dumps disabled)
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Debug: Loading modules from directory: /usr/lib/dovecot/modules/auth
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Debug: Module loaded: /usr/lib/dovecot/modules/auth/lib20_auth_var_expand_crypt.so
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Debug: Module loaded: /usr/lib/dovecot/modules/auth/libdriver_mysql.so
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Debug: Loading modules from directory: /usr/lib/dovecot/modules/auth
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Debug: Module loaded: /usr/lib/dovecot/modules/auth/libauthdb_ldap.so
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Debug: Wrote new auth token secret to /run/dovecot/auth-token-secret.dat
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Debug: passwd-file /etc/dovecot/dovecot-master-users:Read 0 users in 0 secs
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_bind
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_simple_bind
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 1 1 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP ad.example.com:389
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 21
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 21
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.230:389
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 21 tm: 5 async: 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 21
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 21 tm: 5
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 21
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 21
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_open_defconn: successful
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Debug: ldap(/etc/dovecot/dovecot-ldap.conf): LDAP initialization took 2 msecs
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Debug: auth client connected (pid=2989)
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid -1
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid -1 (timeout 0 usec)
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:29 2023
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:  * msgid 1,  origid 1, status InProgress
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 1 (abandoned 0)
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 1, lr 0x557736da9f90 lr->lr_refcnt = 1
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 1 message type bind
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 0 new referrals
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x557736d99b10 msgid 1
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x557736d99b10 msgid 1
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736da9f90, lr 0x557736da9f90
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 1, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 1, msgid 1)
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x557736da9f90 msgid 1 removed
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x557736da9f90 msgid 1 refcnt 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid -1
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid -1 (timeout 0 usec)
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:29 2023
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 0 (abandoned 0)
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:29 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Debug: client in: AUTH#0111#011PLAIN#011service=imap#011secured#011session=GRN34pjyGKB/AAAB#011lip=127.0.0.1#011rip=127.0.0.1#011lport=143#011rport=40984#011resp=AGRhbmllbC5jYXN0ZWxsYW5vc0B2ZWRldHRlY29ycC5jb20AdWRkZXJseVVOREVGRUFUQUJMRTU0MzIxJSQjQCE= (previous base64 data may contain sensitive data)
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<GRN34pjyGKB/AAAB>): Performing passdb lookup
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<GRN34pjyGKB/AAAB>): bind search: base=dc=example,dc=com filter=(&(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: ldap_search
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(&(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: AND
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter_list "(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2))"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(userPrincipalName=firstname.lastname@example.com)"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "userPrincipalName=firstname.lastname@example.com"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(objectClass=person)"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "objectClass=person"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(!(userAccountControl:1.2.840.113556.1.4.803:=2))"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: NOT
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter_list "(userAccountControl:1.2.840.113556.1.4.803:=2)"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(userAccountControl:1.2.840.113556.1.4.803:=2)"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "userAccountControl:1.2.840.113556.1.4.803:=2"
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:28:51 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid -1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid -1 (timeout 0 usec)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 1 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid -1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid -1 (timeout 0 usec)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 1 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x557736db2570 lr->lr_refcnt = 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 2 message type search-entry
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db2570, lr 0x557736db2570
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid -1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid -1 (timeout 0 usec)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 1 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x557736db2570 lr->lr_refcnt = 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 2 message type search-reference
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://ForestDnsZones.example.com/DC=ForestDnsZones,DC=example,DC=com)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 3, new dn <DC=ForestDnsZones,DC=example,DC=com>
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 2, url "ldap://ForestDnsZones.example.com/DC=ForestDnsZones,DC=example,DC=com"
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP ForestDnsZones.example.com:389
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.234:389
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid 4
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid 4 (timeout 100000 usec)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid 4 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55492
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 3  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 1, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  origid 4, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 2 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid 4 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 4 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x557736db2570 lr->lr_refcnt = 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 2 message type search-reference
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://DomainDnsZones.example.com/DC=DomainDnsZones,DC=example,DC=com)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 5, new dn <DC=DomainDnsZones,DC=example,DC=com>
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 2, url "ldap://DomainDnsZones.example.com/DC=DomainDnsZones,DC=example,DC=com"
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP DomainDnsZones.example.com:389
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 24
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 24
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.234:389
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 24 tm: 5 async: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 24
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 24 tm: 5
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 24
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 24
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid 6
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid 6 (timeout 100000 usec)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid 6 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55508
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55492
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 4  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  origid 4, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 6,  origid 6, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 3 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid 6 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 6 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 6, lr 0x557736db8460 lr->lr_refcnt = 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 6 message type bind
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 0 new referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x557736d99b10 msgid 6
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x557736d99b10 msgid 6
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db8460, lr 0x557736db8460
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 6, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 6, msgid 6)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x557736db8460 msgid 6 removed
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x557736db8460 msgid 6 refcnt 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  search ref chased, mark request chasing refs, id = 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db2570, lr 0x557736db2570
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 1, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 0 s 98204 us to go
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid 4 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55508
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55492
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 3  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status ChasingRefs
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  origid 4, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 3 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid 4 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 4 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 4, lr 0x557736db5a20 lr->lr_refcnt = 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 4 message type bind
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 0 new referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x557736d99b10 msgid 4
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x557736d99b10 msgid 4
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db5a20, lr 0x557736db5a20
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 4, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 4, msgid 4)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x557736db5a20 msgid 4 removed
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x557736db5a20 msgid 4 refcnt 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  search ref chased, mark request chasing refs, id = 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db2570, lr 0x557736db2570
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid -1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid -1 (timeout 0 usec)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55508
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55492
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status ChasingRefs
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 3 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 msgid 2, type 0x73
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid -1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid -1 (timeout 0 usec)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55508
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55492
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status ChasingRefs
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 3 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 5, lr 0x557736db8620 lr->lr_refcnt = 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 5 message type search-result
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 5
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 0 new referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x557736d99b10 msgid 5
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 2) error info:  result errno 1, error <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, matched <>
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db8620, lr 0x557736db8620
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 5, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db2570, lr 0x557736db2570
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 3, lr 0x557736db5dc0 lr->lr_refcnt = 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 3 message type search-result
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 3
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 0 new referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x557736d99b10 msgid 3
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 2) error info:  result errno 1, error <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, matched <>
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db5dc0, lr 0x557736db5dc0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 3, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db2570, lr 0x557736db2570
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x557736db2570 lr->lr_refcnt = 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 2 message type search-reference
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://example.com/CN=Configuration,DC=example,DC=com)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 9, new dn <CN=Configuration,DC=example,DC=com>
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 2, url "ldap://example.com/CN=Configuration,DC=example,DC=com"
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP example.com:389
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.234:389
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 23
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid 10
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid 10 (timeout 100000 usec)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid 10 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55510
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 3  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status ChasingRefs
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 1, parent count 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status RequestCompleted
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status RequestCompleted
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 10,  origid 10, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 4 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid 10 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 10 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x557736db2570 lr->lr_refcnt = 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 2 message type search-result
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 0 new referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x557736d99b10 msgid 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db2570, lr 0x557736db2570
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 1, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 0 s 99868 us to go
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid 10 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55510
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status RequestCompleted
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 1, parent count 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status RequestCompleted
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status RequestCompleted
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 10,  origid 10, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 4 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid 10 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 10 all 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 10, lr 0x557736db4630 lr->lr_refcnt = 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 msgid 10 message type bind
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x557736d99b10 0 new referrals
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x557736d99b10 msgid 10
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x557736d99b10 msgid 10
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db4630, lr 0x557736db4630
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 10, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 10, msgid 10)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x557736db4630 msgid 10 removed
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x557736db4630 msgid 10 refcnt 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x557736db2570, lr 0x557736db2570
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x557736d99b10 msgid -1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x557736d99b10 msgid -1 (timeout 0 usec)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Connections:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:55510
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:52 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:40932
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:28:51 2023
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Outstanding Requests:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status RequestCompleted
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 1, parent count 3
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status RequestCompleted
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status RequestCompleted
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:  * msgid 9,  origid 2, status InProgress
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 request count 4 (abandoned 0)
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x557736d99b10 Response Queue:
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error:   ld 0x557736d99b10 response count 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x557736d99b10 msgid -1 all 0
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x557736d99b10 NULL
Jan 19 07:28:52 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:31:22 Office1-sv-iredmail dovecot: auth: Error: plain(firstname.lastname@example.com,127.0.0.1,<GRN34pjyGKB/AAAB>): Request 2989.1 timed out after 151 secs, state=1
Jan 19 07:31:29 Office1-sv-iredmail dovecot: auth: Debug: client in: CANCEL#0111
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: deinit(firstname.lastname@example.com,127.0.0.1,<GRN34pjyGKB/AAAB>): Shutting down
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Debug: deinit(firstname.lastname@example.com,127.0.0.1,<GRN34pjyGKB/AAAB>): Finished passdb lookup
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Debug: auth(firstname.lastname@example.com,127.0.0.1,<GRN34pjyGKB/AAAB>): Auth request finished
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_unbind
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x557736db2570 msgid 2 refcnt 0
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x557736db6fe0 msgid 9 refcnt 0
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x557736db8620 msgid 5 refcnt 0
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x557736db5dc0 msgid 3 refcnt 0
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 1 1
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 1 1
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 07:32:29 Office1-sv-iredmail dovecot: auth: Debug: client passdb out: FAIL#0111#011user=firstname.lastname@example.com#011code=temp_fail

3 (edited by zippydan 2023-01-19 16:32:12)

Re: Attempting AD integration: cannot complete dovecot login test

I tried again, and it worked.
Absolutely no changes were made to anything.

#:/etc/dovecot$ telnet localhost 143
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
* OK [CAPABILITY IMAP4rev1 SASL-IR LOGIN-REFERRALS ID ENABLE IDLE LITERAL+ STARTTLS AUTH=PLAIN AUTH=LOGIN] Dovecot (Ubuntu) ready.
. login firstname.lastname@example.com complexUSERpassword
. OK [CAPABILITY IMAP4rev1 SASL-IR LOGIN-REFERRALS ID ENABLE IDLE SORT SORT=DISPLAY THREAD=REFERENCES THREAD=REFS THREAD=ORDEREDSUBJECT MULTIAPPEND URL-PARTIAL CATENATE UNSELECT CHILDREN NAMESPACE UIDPLUS LIST-EXTENDED I18NLEVEL=1 CONDSTORE QRESYNC ESEARCH ESORT SEARCHRES WITHIN CONTEXT=SEARCH LIST-STATUS BINARY MOVE SNIPPET=FUZZY PREVIEW=FUZZY PREVIEW STATUS=SIZE SAVEDATE LITERAL+ NOTIFY SPECIAL-USE QUOTA ACL RIGHTS=texk] Logged in

/var/logs/dovecot/dovecot.log (1/3)

Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Debug: Loading modules from directory: /usr/lib/dovecot/modules/auth
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Debug: Module loaded: /usr/lib/dovecot/modules/auth/lib20_auth_var_expand_crypt.so
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Debug: Module loaded: /usr/lib/dovecot/modules/auth/libdriver_mysql.so
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Debug: Loading modules from directory: /usr/lib/dovecot/modules/auth
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Debug: Module loaded: /usr/lib/dovecot/modules/auth/libauthdb_ldap.so
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Debug: Read auth token secret from /run/dovecot/auth-token-secret.dat
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Debug: passwd-file /etc/dovecot/dovecot-master-users:Read 0 users in 0 secs
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_bind
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_simple_bind
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 1 1 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP ad.example.com:389
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 21
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 21
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.230:389
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 21 tm: 5 async: 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 21
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 21 tm: 5
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 21
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 21
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Debug: ldap(/etc/dovecot/dovecot-ldap.conf): LDAP initialization took 324 msecs
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Debug: auth client connected (pid=4400)
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_open_defconn: successful
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:14 2023
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:  * msgid 1,  origid 1, status InProgress
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 1 (abandoned 0)
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 1, lr 0x562d7dfa7f90 lr->lr_refcnt = 1
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 1 message type bind
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 1
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 1
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfa7f90, lr 0x562d7dfa7f90
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 1, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 1, msgid 1)
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfa7f90 msgid 1 removed
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfa7f90 msgid 1 refcnt 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:14 2023
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 0 (abandoned 0)
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:14 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Debug: client in: AUTH#0111#011PLAIN#011service=imap#011secured#011session=eJqlTJnyguZ/AAAB#011lip=127.0.0.1#011rip=127.0.0.1#011lport=143#011rport=59010#011resp=AGRhbmllbC5jYXN0ZWxsYW5vc0B2ZWRldHRlY29ycC5jb20AdWRkZXJseVVOREVGRUFUQUJMRTU0MzIxJSQjQCE= (previous base64 data may contain sensitive data)
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<eJqlTJnyguZ/AAAB>): Performing passdb lookup
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<eJqlTJnyguZ/AAAB>): bind search: base=dc=example,dc=com filter=(&(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_search
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(&(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: AND
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter_list "(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2))"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(userPrincipalName=firstname.lastname@example.com)"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "userPrincipalName=firstname.lastname@example.com"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(objectClass=person)"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "objectClass=person"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(!(userAccountControl:1.2.840.113556.1.4.803:=2))"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: NOT
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter_list "(userAccountControl:1.2.840.113556.1.4.803:=2)"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(userAccountControl:1.2.840.113556.1.4.803:=2)"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "userAccountControl:1.2.840.113556.1.4.803:=2"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 1 (abandoned 0)
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x562d7dfb0570 lr->lr_refcnt = 1
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 2 message type search-entry
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0570, lr 0x562d7dfb0570
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 1 (abandoned 0)
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x562d7dfb0570 lr->lr_refcnt = 1
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 2 message type search-reference
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://ForestDnsZones.example.com/DC=ForestDnsZones,DC=example,DC=com)
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 3, new dn <DC=ForestDnsZones,DC=example,DC=com>
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 2, url "ldap://ForestDnsZones.example.com/DC=ForestDnsZones,DC=example,DC=com"
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP ForestDnsZones.example.com:389
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 172.18.1.241:389
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:33 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 23
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_is_socket_ready: error on socket 23: errno: 113 (No route to host)
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: -1
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_close_socket: 23
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 172.18.1.242:389
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:36 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: timed out
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: -1
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: ldap_close_socket: 23
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 172.18.1.245:389
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:41 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 23
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_is_socket_ready: error on socket 23: errno: 113 (No route to host)
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: -1
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_close_socket: 23
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.230:389
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 23
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 23
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid 4
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid 4 (timeout 100000 usec)
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 4 all 1
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35886
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:44 2023
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 3  status: Connected
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 1, parent count 0
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  origid 4, status InProgress
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 2 (abandoned 0)
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 4 all 1
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 4 all 1
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x562d7dfb0570 lr->lr_refcnt = 2
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 2 message type search-reference
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://DomainDnsZones.example.com/DC=DomainDnsZones,DC=example,DC=com)
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 5, new dn <DC=DomainDnsZones,DC=example,DC=com>
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 2, url "ldap://DomainDnsZones.example.com/DC=DomainDnsZones,DC=example,DC=com"
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP DomainDnsZones.example.com:389
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 24
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 24
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 172.18.1.245:389
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 24 tm: 5 async: 0
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 24
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:44 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 24 tm: 5
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 24
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_is_socket_ready: error on socket 24: errno: 113 (No route to host)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: -1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_close_socket: 24
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 24
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 24
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.234:389
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 24 tm: 5 async: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 24
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 24 tm: 5
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 24
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 24
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid 6
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid 6 (timeout 100000 usec)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 6 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51854
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35886
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:44 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 4  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  origid 4, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 6,  origid 6, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 3 (abandoned 0)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 6 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 6 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 4, lr 0x562d7dfb3a20 lr->lr_refcnt = 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 4 message type bind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 4
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 4
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb3a20, lr 0x562d7dfb3a20
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 4, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 4, msgid 4)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb3a20 msgid 4 removed
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb3a20 msgid 4 refcnt 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 6 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x562d7dfb0570 lr->lr_refcnt = 3
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 2 message type search-reference
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://example.com/CN=Configuration,DC=example,DC=com)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 7, new dn <CN=Configuration,DC=example,DC=com>
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 2, url "ldap://example.com/CN=Configuration,DC=example,DC=com"
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP example.com:389
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 25
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 25
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.234:389
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 25 tm: 5 async: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 25
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 25 tm: 5
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 25
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 25
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid 8
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid 8 (timeout 100000 usec)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 8 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51860
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51854
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35886
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:44 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 5  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 6,  origid 6, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 8,  origid 8, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 3 (abandoned 0)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  type 97
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 8 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 8 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 8, lr 0x562d7dfb3e40 lr->lr_refcnt = 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 8 message type bind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 8
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 8
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb3e40, lr 0x562d7dfb3e40
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 8, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 8, msgid 8)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb3e40 msgid 8 removed
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb3e40 msgid 8 refcnt 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  search ref chased, mark request chasing refs, id = 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0570, lr 0x562d7dfb0570
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 2, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 0 s 97833 us to go
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 6 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51860
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51854
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35886
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:44 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 4  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status ChasingRefs
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 6,  origid 6, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 3 (abandoned 0)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  type 97
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 6 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 6 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 7, lr 0x562d7dfb4120 lr->lr_refcnt = 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 7 message type search-result
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 7
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 7
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 2) error info:  result errno 1, error <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, matched <>
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb4120, lr 0x562d7dfb4120
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 7, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0570, lr 0x562d7dfb0570
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 1, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 6 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 6, lr 0x562d7dfb6460 lr->lr_refcnt = 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 6 message type bind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 6
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 6
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb6460, lr 0x562d7dfb6460
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 6, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 6, msgid 6)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb6460 msgid 6 removed
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb6460 msgid 6 refcnt 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  search ref chased, mark request chasing refs, id = 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0570, lr 0x562d7dfb0570
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: adding response ld 0x562d7df97b10 msgid 2 type 115:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid 4
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid 4 (timeout 100000 usec)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 4 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51854
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35886
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:44 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 3  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status ChasingRefs
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status RequestCompleted
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 3 (abandoned 0)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    chained responses:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   * msgid 2,  type 115
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  type 97
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 4 all 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 msgid 4, type 0x61
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  search ref chased, mark request chasing refs, id = 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0570, lr 0x562d7dfb0570
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51854
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35886
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status ChasingRefs
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 3
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status RequestCompleted
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 4 (abandoned 0)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    chained responses:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   * msgid 2,  type 115
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 msgid 2, type 0x73
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51854
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35886
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status ChasingRefs
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 3
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status RequestCompleted
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 4 (abandoned 0)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 msgid 2, type 0x73
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51854
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35886
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:33 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status ChasingRefs
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 3
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status RequestCompleted
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 4 (abandoned 0)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 5, lr 0x562d7dfb68e0 lr->lr_refcnt = 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 5 message type search-result
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 5
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 5
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 2) error info:  result errno 1, error <>, matched <>
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb68e0, lr 0x562d7dfb68e0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 5, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0570, lr 0x562d7dfb0570
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed

4

Re: Attempting AD integration: cannot complete dovecot login test

(2/3)

Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 3, lr 0x562d7dfb69b0 lr->lr_refcnt = 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 3 message type search-result
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 3
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 3
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 2) error info:  result errno 1, error <>, matched <>
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb69b0, lr 0x562d7dfb69b0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 3, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0570, lr 0x562d7dfb0570
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x562d7dfb0570 lr->lr_refcnt = 1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 2 message type search-result
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 2
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0570, lr 0x562d7dfb0570
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 2, msgid 2)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 2, msgid 3)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb69b0 msgid 3 removed
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb69b0 msgid 3 refcnt 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 2, msgid 5)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb68e0 msgid 5 removed
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb68e0 msgid 5 refcnt 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 2, msgid 7)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb4120 msgid 7 removed
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb4120 msgid 7 refcnt 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb0570 msgid 2 removed
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb0570 msgid 2 refcnt 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_first_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<eJqlTJnyguZ/AAAB>): result: objectClass=top,top,top,top cn=firstname lastname sn=lastname givenName=firstname distinguishedName=CN=firstname lastname,OU=Users,OU=Office1,DC=example,DC=com instanceType=4 whenCreated=20150628223924.0Z whenChanged=20230111215041.0Z displayName=firstname lastname uSNCreated=12796 memberOf=CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com,CN=Office1.Users.remote.RDP.wk-15,OU=Groups,OU=Users,OU=Office1,DC=example,DC=com uSNChanged=146252447 proxyAddresses=smtp:daniel@vedetteonline.com,smtp:daniel@vedetteonline.com,smtp:daniel@vedetteonline.com,smtp:daniel@vedetteonline.com,smtp:daniel@vedetteonline.com name=firstname lastname objectGUID=ÏjüÃÂ%˜FŸ#024´86f0J userAccountControl=512 badPwdCount=1 codePage=0 countryCode=0 badPasswordTime=133185873660139273 lastLogoff=0 lastLogon=133185873509511359 pwdLastSet=133149931502386461 primaryGroupID=513 objectSid=<no values> accountExpires=9223372036854775807 logonCount=11058 sAMAccountName=firstname.lastname sAMAccountType=805306368 showInAddressBook=CN=Mailboxes(VLV),CN=All System Address Lists,CN=Address Lists Container,CN=Example,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=example,DC=com,CN=Mailboxes(VLV),CN=All System Address Lists,CN=Address Lists Container,CN=Example,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=example,DC=com,CN=Mailboxes(VLV),CN=All System Address Lists,CN=Address Lists Container,CN=Example,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=example,DC=com,CN=Mailboxes(VLV),CN=All System Address Lists,CN=Address Lists Container,CN=Example,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=example,DC=com,CN=Mailboxes(VLV),CN=All System Address Lists,CN=Address Lists Container,CN=Example,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=example,DC=com legacyExchangeDN=/o=Example/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=9b86435a1937486ca489adcd00c614dc-firstname Caste userPrincipalName=firstname.lastname@example.com objectCategory=CN=Person,CN=Schema,CN=Configuration,DC=example,DC=com dSCorePropagationData=20200802014744.0Z,20200802014744.0Z,20200802014744.0Z,20200802014744.0Z,20200802014744.0Z 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Debug: lastLogonTimestamp=133179474411997403 msTSExpireDate=20190315150314.0Z msTSLicenseVersion=393216 msTSManagingLS=00477-001-1800311-84082 mail=firstname.lastname@example.com msExchMailboxGuid=,“ôˆª#037#B¨àý*žrbÔ msExchTextMessagingState=302120705,302120705 msExchMailboxSecurityDescriptor=<no values> mailNickname=firstname.lastname homeMDB=CN=Mailbox Database 0003755541,CN=Databases,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=Example,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=example,DC=com msExchArchiveWarnQuota=94371840 msExchHomeServerName=/o=Example/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=OFFICE1-SV-EX msExchWhenMailboxCreated=20150629051557.0Z msExchRecipientTypeDetails=1 msExchPoliciesIncluded=5b93fe27-612c-483b-91ae-40b7c4c2cb07,5b93fe27-612c-483b-91ae-40b7c4c2cb07 msExchCalendarLoggingQuota=6291456 msExchDumpsterWarningQuota=20971520 msExchUserCulture=en-US msExchRBACPolicyLink=CN=Default Role Assignment Policy,CN=Policies,CN=RBAC,CN=Example,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=example,DC=com msExchUMDtmfMap=emailAddress:32643522783552667,emailAddress:32643522783552667,emailAddress:32643522783552667 msExchBlockedSendersHash=î#033¦#005&¢Ò#007#015†±#011¥ Ž#014$Âþ#026ë½?$z 6HèÂ8Á0i@ÑUùBTgtC›_'d¿´0epúfm_òr$¥æu'›?xym1#003èÄ'Ÿ¹ŠLBäŒC#020¬’-R#005®ï
]µÎzŠ¹î’Ǿ`#026ƒÈª1ËÇ Ìòº±Í¢ZÓ\8tؽeÖßUĞçi#0235ê msExchUserAccountControl=0 msExchRecipientDisplayType=1073741824 msExchDumpsterQuota=31457280 msExchArchiveQuota=104857600 msExchDelegateListBL=CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com,CN=Facebook USA,OU=Office1,DC=example,DC=com msExchVersion=88218628259840 mDBUseDefaults=TRUE msExchMobileMailboxFlags=1; msExchVersion,objectGUID,uSNCreated,msExchMailboxGuid,objectCategory,msTSManagingLS,objectClass,primaryGroupID,msExchRecipientDisplayType,mailNickname,msExchRecipientTypeDetails,cn,givenName,objectSid,sAMAccountType,dSCorePropagationData,userAccountControl,name,msExchCalendarLoggingQuota,mail,msExchArchiveQuota,msTSExpireDate,codePage,lastLogon,msExchPoliciesIncluded,msExchArchiveWarnQuota,logonCount,msExchBlockedSendersHash,msExchDelegateListBL,countryCode,msExchWhenMailboxCreated,lastLogoff,homeMDB,uSNChanged,msExchRBACPolicyLink,pwdLastSet,msExchUMDtmfMap,distinguishedName,sAMAccountName,msTSLicenseVersion,memberOf,whenChanged,userPrincipalName,msExchUserCulture,msExchTextMessagingState,msExchMobileMailboxFlags,instanceType,badPwdCount,accountExpires,msExchDumpsterQuota,msExchMailboxSecurityDescriptor,msExchDumpsterWarningQuota,showInAddressBook,mDBUseDefaults,whenCreated,displayName,proxyAddresses,msExchUserAccountControl,msExchHomeServerName,legacyExchangeDN,badPasswordTime,lastLogonTimestamp,sn unused
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_first_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_get_dn
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_bind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_simple_bind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:  * msgid 12,  origid 12, status InProgress
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 1 (abandoned 0)
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:47 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 12,  origid 12, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 1 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 12, lr 0x562d7dfb0570 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 12 message type bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 12
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 12
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0570, lr 0x562d7dfb0570
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 12, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 12, msgid 12)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb0570 msgid 12 removed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb0570 msgid 12 refcnt 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<eJqlTJnyguZ/AAAB>): Finished passdb lookup
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Debug: auth(firstname.lastname@example.com,127.0.0.1,<eJqlTJnyguZ/AAAB>): Auth request finished
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Debug: client passdb out: OK#0111#011user=firstname.lastname@example.com
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:47 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 0 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Debug: master in: REQUEST#0113945267201#0114400#0111#0111861b81450bdbf81e0ac4b0ae7b32946#011session_pid=4417#011request_auth_token
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<eJqlTJnyguZ/AAAB>): Performing userdb lookup
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<eJqlTJnyguZ/AAAB>): user search: base=dc=example,dc=com scope=subtree filter=(&(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2))) fields=mail,mail
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_simple_bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 13,  origid 13, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 1 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 13, lr 0x562d7dfb3d20 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 13 message type bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 13
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 13
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb3d20, lr 0x562d7dfb3d20
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 13, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 13, msgid 13)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb3d20 msgid 13 removed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb3d20 msgid 13 refcnt 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_search
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(&(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: AND
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter_list "(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2))"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(userPrincipalName=firstname.lastname@example.com)"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "userPrincipalName=firstname.lastname@example.com"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(objectClass=person)"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "objectClass=person"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(!(userAccountControl:1.2.840.113556.1.4.803:=2))"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: NOT
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter_list "(userAccountControl:1.2.840.113556.1.4.803:=2)"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(userAccountControl:1.2.840.113556.1.4.803:=2)"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "userAccountControl:1.2.840.113556.1.4.803:=2"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 1 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 1 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 14, lr 0x562d7dfa7d30 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 14 message type search-entry
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfa7d30, lr 0x562d7dfa7d30
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 14, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 1 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 14, lr 0x562d7dfa7d30 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 14 message type search-reference
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://ForestDnsZones.example.com/DC=ForestDnsZones,DC=example,DC=com)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 15, new dn <DC=ForestDnsZones,DC=example,DC=com>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 14, url "ldap://ForestDnsZones.example.com/DC=ForestDnsZones,DC=example,DC=com"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP ForestDnsZones.example.com:389
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 24
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 24
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.234:389
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 24 tm: 5 async: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 24
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 24 tm: 5
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 24
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 24
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid 16
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid 16 (timeout 100000 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 16 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51870
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 3  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 1, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 16,  origid 16, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 2 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 16 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 16 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 14, lr 0x562d7dfa7d30 lr->lr_refcnt = 2
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 14 message type search-reference
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://DomainDnsZones.example.com/DC=DomainDnsZones,DC=example,DC=com)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 17, new dn <DC=DomainDnsZones,DC=example,DC=com>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 14, url "ldap://DomainDnsZones.example.com/DC=DomainDnsZones,DC=example,DC=com"
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP DomainDnsZones.example.com:389
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 25
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 25
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.230:389
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 25 tm: 5 async: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 25
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 25 tm: 5
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 25
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 25
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid 18
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid 18 (timeout 100000 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 18 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35898
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51870
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 4  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 16,  origid 16, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 18,  origid 18, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 3 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 18 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 18 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 16, lr 0x562d7dfb6230 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 16 message type bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 16
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 16
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb6230, lr 0x562d7dfb6230
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 16, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 16, msgid 16)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb6230 msgid 16 removed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb6230 msgid 16 refcnt 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 18 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 14, lr 0x562d7dfa7d30 lr->lr_refcnt = 3
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 14 message type search-reference
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://example.com/CN=Configuration,DC=example,DC=com)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 19, new dn <CN=Configuration,DC=example,DC=com>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 14, url "ldap://example.com/CN=Configuration,DC=example,DC=com"

5

Re: Attempting AD integration: cannot complete dovecot login test

(3/3)

Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP example.com:389
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 26
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 26
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.234:389
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 26 tm: 5 async: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 26
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 26 tm: 5
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 26
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 26
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid 20
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid 20 (timeout 100000 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 20 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51886
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35898
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51870
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 5  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 18,  origid 18, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 20,  origid 20, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 3 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 16,  type 97
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 20 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 20 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 20, lr 0x562d7dfb3680 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 20 message type bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 20
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 20
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb3680, lr 0x562d7dfb3680
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 20, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 20, msgid 20)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb3680 msgid 20 removed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb3680 msgid 20 refcnt 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  search ref chased, mark request chasing refs, id = 14
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfa7d30, lr 0x562d7dfa7d30
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 14, lrx->lr_refcnt is now 2, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 0 s 98327 us to go
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 18 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51886
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35898
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51870
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 4  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status ChasingRefs
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 18,  origid 18, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 19,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 3 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  type 115
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 16,  type 97
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 2
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 18 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 18 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 18, lr 0x562d7dfb28b0 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 18 message type bind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 18
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 18
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb28b0, lr 0x562d7dfb28b0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 18, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 18, msgid 18)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb28b0 msgid 18 removed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb28b0 msgid 18 refcnt 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  search ref chased, mark request chasing refs, id = 14
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfa7d30, lr 0x562d7dfa7d30
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 14, lrx->lr_refcnt is now 1, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: adding response ld 0x562d7df97b10 msgid 14 type 115:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 0 s 96420 us to go
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid 16 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51886
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35898
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51870
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 3  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status ChasingRefs
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 2
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 17,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 19,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 3 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  type 115
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    chained responses:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   * msgid 14,  type 115
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 16,  type 97
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 2
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid 16 all 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 msgid 16, type 0x61
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  search ref chased, mark request chasing refs, id = 14
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfa7d30, lr 0x562d7dfa7d30
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 14, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51886
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35898
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51870
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status ChasingRefs
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 3
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 15,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 17,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 19,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 4 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  type 115
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    chained responses:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   * msgid 14,  type 115
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 msgid 14, type 0x73
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51886
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35898
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51870
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status ChasingRefs
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 3
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 15,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 17,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 19,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 4 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  type 115
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 msgid 14, type 0x73
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51886
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:35898
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:51870
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 14,  origid 14, status ChasingRefs
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 3
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 15,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 17,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:  * msgid 19,  origid 14, status InProgress
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 4 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 19, lr 0x562d7dfb3800 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 19 message type search-result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 19
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 19
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 14) error info:  result errno 1, error <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, matched <>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb3800, lr 0x562d7dfb3800
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 19, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfa7d30, lr 0x562d7dfa7d30
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 14, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 17, lr 0x562d7dfb00b0 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 17 message type search-result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 17
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 17
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 14) error info:  result errno 1, error <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, matched <>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb00b0, lr 0x562d7dfb00b0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 17, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfa7d30, lr 0x562d7dfa7d30
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 14, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 15, lr 0x562d7dfb0180 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 15 message type search-result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 15
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 15
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 14) error info:  result errno 1, error <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, matched <>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfb0180, lr 0x562d7dfb0180
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 15, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfa7d30, lr 0x562d7dfa7d30
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 14, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 14, lr 0x562d7dfa7d30 lr->lr_refcnt = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 msgid 14 message type search-result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x562d7df97b10 0 new referrals
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x562d7df97b10 msgid 14
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x562d7df97b10 msgid 14
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, res_matched: <>
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x562d7dfa7d30, lr 0x562d7dfa7d30
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 14, lrx->lr_refcnt is now 0, lr is still present
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 14, msgid 14)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 14, msgid 15)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb0180 msgid 15 removed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb0180 msgid 15 refcnt 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 14, msgid 17)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb00b0 msgid 17 removed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb00b0 msgid 17 refcnt 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 14, msgid 19)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfb3800 msgid 19 removed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfb3800 msgid 19 refcnt 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x562d7dfa7d30 msgid 14 removed
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x562d7dfa7d30 msgid 14 refcnt 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_first_attribute
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<eJqlTJnyguZ/AAAB>): result: mail=firstname.lastname@example.com; mail unused
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_first_attribute
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_get_values
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_next_attribute
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<eJqlTJnyguZ/AAAB>): Finished userdb lookup
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Debug: master userdb out: USER#0113945267201#011firstname.lastname@example.com#011master_user=firstname.lastname@example.com#011home=/var/vmail/vmail1/example.com/firstname.lastname/#011mail=maildir:~/Maildir/#011auth_mech=PLAIN#011auth_token=709e2b72d3d12a4845460d36260836ad59cf8ee6
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x562d7df97b10 msgid -1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x562d7df97b10 msgid -1 (timeout 0 usec)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Connections:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36164
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 07:58:48 2023
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Outstanding Requests:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 request count 0 (abandoned 0)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x562d7df97b10 Response Queue:
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error:   ld 0x562d7df97b10 response count 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x562d7df97b10 msgid -1 all 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x562d7df97b10 NULL
Jan 19 07:58:48 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Loading modules from directory: /usr/lib/dovecot/modules
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Module loaded: /usr/lib/dovecot/modules/lib01_acl_plugin.so
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Module loaded: /usr/lib/dovecot/modules/lib02_imap_acl_plugin.so
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Module loaded: /usr/lib/dovecot/modules/lib10_last_login_plugin.so
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Module loaded: /usr/lib/dovecot/modules/lib10_quota_plugin.so
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Module loaded: /usr/lib/dovecot/modules/lib11_imap_quota_plugin.so
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Module loaded: /usr/lib/dovecot/modules/lib15_notify_plugin.so
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Module loaded: /usr/lib/dovecot/modules/lib20_mail_log_plugin.so
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Module loaded: /usr/lib/dovecot/modules/lib20_mailbox_alias_plugin.so
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Added userdb setting: mail=maildir:~/Maildir/
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Added userdb setting: plugin/master_user=firstname.lastname@example.com
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Effective uid=2000, gid=2000, home=/var/vmail/vmail1/example.com/firstname.lastname/
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Home dir not found: /var/vmail/vmail1/example.com/firstname.lastname/
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: dict(proxy)<firstname.lastname@example.com>: Starting transaction
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: dict(proxy)<firstname.lastname@example.com>: Setting 'shared/last-login/imap/firstname.lastname@example.com/example.com' to '1674115128'
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: dict(proxy)<firstname.lastname@example.com>: conn unix:/run/dovecot/dict: Connecting
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: dict(proxy)<firstname.lastname@example.com>: conn unix:/run/dovecot/dict (pid=2895,uid=0): Client connected (fd=8)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Quota root: name=user backend=dict args=:proxy::quotadict
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Quota warning: bytes=0 (100%) messages=0 reverse=no command=quota-warning 100 firstname.lastname@example.com
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Quota warning: bytes=0 (95%) messages=0 reverse=no command=quota-warning 95 firstname.lastname@example.com
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Quota warning: bytes=0 (90%) messages=0 reverse=no command=quota-warning 90 firstname.lastname@example.com
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Quota warning: bytes=0 (85%) messages=0 reverse=no command=quota-warning 85 firstname.lastname@example.com
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Quota grace: root=user bytes=0 (10%)
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: quota-dict: user=firstname.lastname@example.com, uri=proxy::quotadict, noenforcing=0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Namespace : type=private, prefix=, sep=/, inbox=yes, hidden=no, list=yes, subscriptions=yes location=maildir:~/Maildir/
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: maildir++: root=/var/vmail/vmail1/example.com/firstname.lastname//Maildir, index=, indexpvt=, control=, inbox=/var/vmail/vmail1/example.com/firstname.lastname//Maildir, alt=
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: acl: initializing backend with data: vfile
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: acl: acl username = firstname.lastname@example.com
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: acl: owner = 1
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: acl vfile: Global ACLs disabled
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: Namespace : type=shared, prefix=Shared/%u/, sep=/, inbox=no, hidden=no, list=children, subscriptions=yes location=maildir:%Lh/Maildir/:INDEX=%Lh/Maildir/Shared/%Ld/%Ln
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: shared: root=/run/dovecot, index=, indexpvt=, control=, inbox=, alt=
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: acl: initializing backend with data: vfile
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: acl: acl username = firstname.lastname@example.com
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: acl: owner = 0
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: acl vfile: Global ACLs disabled
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: quota: quota_over_flag check: quota_over_script unset - skipping
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: dict(proxy)<firstname.lastname@example.com>: Dict transaction finished
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: dict(proxy)<firstname.lastname@example.com>: Waiting for dict to finish pending operations
Jan 19 07:58:48 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: dict(proxy)<firstname.lastname@example.com>: conn unix:/run/dovecot/dict (pid=2895,uid=0): Disconnected: Connection closed (fd=8)
Jan 19 07:59:50 Office1-sv-iredmail dovecot: auth: Error: ldap_unbind
Jan 19 07:59:50 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 1 1
Jan 19 07:59:50 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 07:59:50 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 08:01:58 Office1-sv-iredmail dovecot: imap(firstname.lastname@example.com)<4417><eJqlTJnyguZ/AAAB>: Debug: dict(proxy)<firstname.lastname@example.com>: Waiting for dict to finish pending operations

6 (edited by zippydan 2023-01-19 16:53:47)

Re: Attempting AD integration: cannot complete dovecot login test

I tried a third time, and it failed again.
Why is this so unstable?
What do the logs show is happening when it fails?

:/etc/dovecot$ telnet localhost 143
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
* OK [CAPABILITY IMAP4rev1 SASL-IR LOGIN-REFERRALS ID ENABLE IDLE LITERAL+ STARTTLS AUTH=PLAIN AUTH=LOGIN] Dovecot (Ubuntu) ready.
. login firstname.lastname@example.com complexUSERpassword
. NO [UNAVAILABLE] Temporary authentication failure. [Office1-sv-iredmail:2023-01-19 08:16:35]
* BYE Disconnected for inactivity.
Connection closed by foreign host.

/var/log/dovecot/dovecot.log (1/2)

Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Debug: Loading modules from directory: /usr/lib/dovecot/modules/auth
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Debug: Module loaded: /usr/lib/dovecot/modules/auth/lib20_auth_var_expand_crypt.so
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Debug: Module loaded: /usr/lib/dovecot/modules/auth/libdriver_mysql.so
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Debug: Loading modules from directory: /usr/lib/dovecot/modules/auth
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Debug: Module loaded: /usr/lib/dovecot/modules/auth/libauthdb_ldap.so
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Debug: Read auth token secret from /run/dovecot/auth-token-secret.dat
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Debug: passwd-file /etc/dovecot/dovecot-master-users:Read 0 users in 0 secs
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_bind
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_simple_bind
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 1 1 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP ad.example.com:389
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 21
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 21
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.230:389
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 21 tm: 5 async: 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 21
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 21 tm: 5
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 21
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 21
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_open_defconn: successful
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Debug: ldap(/etc/dovecot/dovecot-ldap.conf): LDAP initialization took 2 msecs
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Debug: auth client connected (pid=5250)
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid -1
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid -1 (timeout 0 usec)
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid -1 all 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:15:37 2023
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:  * msgid 1,  origid 1, status InProgress
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 1 (abandoned 0)
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid -1 all 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid -1 all 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 1, lr 0x564279291f90 lr->lr_refcnt = 1
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 1 message type bind
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 0 new referrals
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x564279281b10 msgid 1
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x564279281b10 msgid 1
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x564279291f90, lr 0x564279291f90
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 1, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 1, msgid 1)
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x564279291f90 msgid 1 removed
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x564279291f90 msgid 1 refcnt 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid -1
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid -1 (timeout 0 usec)
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid -1 all 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:15:37 2023
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 0 (abandoned 0)
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid -1 all 0
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:15:37 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Debug: client in: AUTH#0111#011PLAIN#011service=imap#011secured#011session=Bzx1jJnydsF/AAAB#011lip=127.0.0.1#011rip=127.0.0.1#011lport=143#011rport=49526#011resp=AGRhbmllbC5jYXN0ZWxsYW5vc0B2ZWRldHRlY29ycC5jb20AdWRkZXJseVVOREVGRUFUQUJMRTU0MzIxJSQjQCE= (previous base64 data may contain sensitive data)
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<Bzx1jJnydsF/AAAB>): Performing passdb lookup
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<Bzx1jJnydsF/AAAB>): bind search: base=dc=example,dc=com filter=(&(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: ldap_search
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(&(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: AND
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter_list "(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2))"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(userPrincipalName=firstname.lastname@example.com)"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "userPrincipalName=firstname.lastname@example.com"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(objectClass=person)"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "objectClass=person"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(!(userAccountControl:1.2.840.113556.1.4.803:=2))"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: NOT
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter_list "(userAccountControl:1.2.840.113556.1.4.803:=2)"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: "(userAccountControl:1.2.840.113556.1.4.803:=2)"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_filter: simple
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: put_simple_filter: "userAccountControl:1.2.840.113556.1.4.803:=2"
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 08:16:23 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid -1
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid -1 (timeout 0 usec)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 1 (abandoned 0)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid -1
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid -1 (timeout 0 usec)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 1 (abandoned 0)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x56427929a570 lr->lr_refcnt = 1
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 2 message type search-entry
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929a570, lr 0x56427929a570
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid -1
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid -1 (timeout 0 usec)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 1 (abandoned 0)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x56427929a570 lr->lr_refcnt = 1
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 2 message type search-reference
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://ForestDnsZones.example.com/DC=ForestDnsZones,DC=example,DC=com)
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 3, new dn <DC=ForestDnsZones,DC=example,DC=com>
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 2, url "ldap://ForestDnsZones.example.com/DC=ForestDnsZones,DC=example,DC=com"
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP ForestDnsZones.example.com:389
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 172.18.1.242:389
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 08:16:24 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: timed out
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: -1
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: ldap_close_socket: 23
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 172.18.1.241:389
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 08:16:29 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 23
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_is_socket_ready: error on socket 23: errno: 113 (No route to host)
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: -1
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_close_socket: 23
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 172.18.1.245:389
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 08:16:32 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 23
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_is_socket_ready: error on socket 23: errno: 113 (No route to host)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: -1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_close_socket: 23
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 23
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 23
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.230:389
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 23 tm: 5 async: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 23
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 23 tm: 5
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 23
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 23
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid 4
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid 4 (timeout 100000 usec)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid 4 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33978
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 3  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 1, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  origid 4, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 2 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid 4 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 4 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x56427929a570 lr->lr_refcnt = 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 2 message type search-reference
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://DomainDnsZones.example.com/DC=DomainDnsZones,DC=example,DC=com)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 5, new dn <DC=DomainDnsZones,DC=example,DC=com>
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 2, url "ldap://DomainDnsZones.example.com/DC=DomainDnsZones,DC=example,DC=com"
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP DomainDnsZones.example.com:389
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 24
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 24
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.234:389
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 24 tm: 5 async: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 24
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 24 tm: 5
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 24
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 24
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid 6
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid 6 (timeout 100000 usec)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid 6 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:42366
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33978
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 4  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 2, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  origid 4, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 6,  origid 6, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 3 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid 6 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 6 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 4, lr 0x56427929da20 lr->lr_refcnt = 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 4 message type bind
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 0 new referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x564279281b10 msgid 4
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x564279281b10 msgid 4
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929da20, lr 0x56427929da20
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 4, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 4, msgid 4)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x56427929da20 msgid 4 removed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x56427929da20 msgid 4 refcnt 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 6 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x56427929a570 lr->lr_refcnt = 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 2 message type search-reference
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_url_parse_ext(ldap://example.com/CN=Configuration,DC=example,DC=com)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: re_encode_request: new msgid 7, new dn <CN=Configuration,DC=example,DC=com>
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_v3referral: msgid 2, url "ldap://example.com/CN=Configuration,DC=example,DC=com"
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_new_connection 0 1 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_open_connection
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: TCP example.com:389
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_new_socket: 25
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_prepare_socket: 25
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_connect_to_host: Trying 192.168.1.230:389
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: fd: 25 tm: 5 async: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_on: 25
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: attempting to connect: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: connect errno: 115
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_poll: fd: 25 tm: 5
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_is_sock_ready: 25
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_ndelay_off: 25
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_pvt_connect: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: anonymous rebind via ldap_sasl_bind("")
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_sasl_bind
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_initial_request
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_server_request
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid 8
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid 8 (timeout 100000 usec)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid 8 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33980
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:42366
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33978
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 5  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 6,  origid 6, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 8,  origid 8, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 3 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  type 97
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid 8 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 8 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 6, lr 0x5642792a0460 lr->lr_refcnt = 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 6 message type bind
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 0 new referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x564279281b10 msgid 6
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x564279281b10 msgid 6
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x5642792a0460, lr 0x5642792a0460
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 6, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 6, msgid 6)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x5642792a0460 msgid 6 removed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x5642792a0460 msgid 6 refcnt 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 8 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 2, lr 0x56427929a570 lr->lr_refcnt = 4
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 2 message type search-result
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 0 new referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x564279281b10 msgid 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929a570, lr 0x56427929a570
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 3, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 0 s 99780 us to go
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid 8 all 1

7

Re: Attempting AD integration: cannot complete dovecot login test

(2/2)

Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33980
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:42366
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33978
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 4  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status RequestCompleted
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 8,  origid 8, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 2 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 6,  type 97
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  type 97
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid 8 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 8 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 8, lr 0x56427929de40 lr->lr_refcnt = 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 8 message type bind
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 0 new referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x564279281b10 msgid 8
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x564279281b10 msgid 8
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: res_errno: 0, res_error: <>, res_matched: <>
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929de40, lr 0x56427929de40
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 8, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 8, msgid 8)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x56427929de40 msgid 8 removed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x56427929de40 msgid 8 refcnt 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929a570, lr 0x56427929a570
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 2, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 0 s 98013 us to go
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid 6 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33980
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:42366
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33978
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 3  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status RequestCompleted
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 2 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 6,  type 97
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  type 97
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid 6 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 msgid 6, type 0x61
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929a570, lr 0x56427929a570
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 1, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: adding response ld 0x564279281b10 msgid 2 type 115:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 0 s 95333 us to go
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid 4 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33980
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:42366
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33978
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   rebind in progress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:     queue is empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 2  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status RequestCompleted
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 3 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    chained responses:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   * msgid 2,  type 115
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 4,  type 97
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid 4 all 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 msgid 4, type 0x61
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929a570, lr 0x56427929a570
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid -1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid -1 (timeout 0 usec)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33980
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:42366
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33978
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status RequestCompleted
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 4 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    chained responses:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   * msgid 2,  type 115
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 msgid 2, type 0x73
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid -1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid -1 (timeout 0 usec)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33980
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:42366
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33978
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status RequestCompleted
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 4 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  type 115
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 msgid 2, type 0x73
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid -1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid -1 (timeout 0 usec)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33980
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: DomainDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:42366
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ForestDnsZones.example.com  port: 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:33978
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:35 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 2,  origid 2, status RequestCompleted
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 3, parent count 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 3,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 5,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:  * msgid 7,  origid 2, status InProgress
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    outstanding referrals 0, parent count 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 4 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 7, lr 0x56427929e220 lr->lr_refcnt = 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 7 message type search-result
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 7
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 0 new referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x564279281b10 msgid 7
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 2) error info:  result errno 1, error <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, matched <>
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929e220, lr 0x56427929e220
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 7, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929a570, lr 0x56427929a570
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 5, lr 0x5642792a07c0 lr->lr_refcnt = 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 5 message type search-result
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 5
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 0 new referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x564279281b10 msgid 5
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 2) error info:  result errno 1, error <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, matched <>
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x5642792a07c0, lr 0x5642792a07c0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 5, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929a570, lr 0x56427929a570
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_find_request_by_msgid: msgid 3, lr 0x5642792a0890 lr->lr_refcnt = 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 msgid 3 message type search-result
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chase_referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  V2 referral chased, mark request completed, id = 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg: ld 0x564279281b10 0 new referrals
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: read1msg:  mark request completed, ld 0x564279281b10 msgid 3
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: merged parent (id 2) error info:  result errno 1, error <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, matched <>
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x5642792a0890, lr 0x5642792a0890
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 3, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: request done: ld 0x564279281b10 msgid 2
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: res_errno: 1, res_error: <000004DC: LdapErr: DSID-0C0907E9, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v2580>, res_matched: <>
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx 0x56427929a570, lr 0x56427929a570
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_return_request: lrx->lr_msgid 2, lrx->lr_refcnt is now 0, lr is still present
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 2, msgid 2)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 2, msgid 3)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x5642792a0890 msgid 3 removed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x5642792a0890 msgid 3 refcnt 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 2, msgid 5)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x5642792a07c0 msgid 5 removed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x5642792a07c0 msgid 5 refcnt 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request (origid 2, msgid 7)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x56427929e220 msgid 7 removed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x56427929e220 msgid 7 refcnt 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_request_int: lr 0x56427929a570 msgid 2 removed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_do_free_request: asked to free lr 0x56427929a570 msgid 2 refcnt 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 0 1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_parse_result
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_err2string
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap(firstname.lastname@example.com,127.0.0.1,<Bzx1jJnydsF/AAAB>): ldap_search(base=dc=example,dc=com filter=(&(userPrincipalName=firstname.lastname@example.com)(objectClass=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))) failed: Operations error
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Debug: ldap(firstname.lastname@example.com,127.0.0.1,<Bzx1jJnydsF/AAAB>): Finished passdb lookup
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Debug: auth(firstname.lastname@example.com,127.0.0.1,<Bzx1jJnydsF/AAAB>): Auth request finished
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_msgfree
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_result ld 0x564279281b10 msgid -1
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg ld 0x564279281b10 msgid -1 (timeout 0 usec)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: wait4msg continue ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Connections:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * host: ad.example.com  port: 389  (default)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: * from: IP=192.168.1.222:36994
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   refcnt: 1  status: Connected
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   last used: Thu Jan 19 08:16:23 2023
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: 
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Outstanding Requests:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 request count 0 (abandoned 0)
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ** ld 0x564279281b10 Response Queue:
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:    Empty
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error:   ld 0x564279281b10 response count 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList ld 0x564279281b10 msgid -1 all 0
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_chkResponseList returns ld 0x564279281b10 NULL
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Error: ldap_int_select
Jan 19 08:16:35 Office1-sv-iredmail dovecot: auth: Debug: client passdb out: FAIL#0111#011user=firstname.lastname@example.com#011code=temp_fail
Jan 19 08:19:37 Office1-sv-iredmail dovecot: auth: Error: ldap_unbind
Jan 19 08:19:37 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection 1 1
Jan 19 08:19:37 Office1-sv-iredmail dovecot: auth: Error: ldap_send_unbind
Jan 19 08:19:37 Office1-sv-iredmail dovecot: auth: Error: ldap_free_connection: actually freed