Hi,
we are running a 4 host setup which each hosts a director+mailbox which is
mounted
via NFSv4 from a DRBD cluster.
* Dovecot upstream release 2.1.16
* Doveadm batch subcommand fix -
http://hg.dovecot.org/dovecot-2.1/raw-rev/850b5d8bbcc9
* Pigeonhole release 0.3.4
Now we would like to remove duplicate Mails using the vnd.dovecot.duplicate
extension
using a SIEVE script like this:
require ["vnd.dovecot.duplicate", "fileinto", "mailbox", "regex", "vacation",
"variables"];
if duplicate {
fileinto :create "Trash";
}
But as soon as we start delivering duplicate mails, we're sometimes getting
locking
errors from the mailbox (which is responsible for the user) according to the
director:
Dec 27 16:36:30 10.129.3.213 dovecot: lmtp(27975, user...@example.org): Error: Creating lock file for
/mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:33 10.129.3.213 dovecot: lmtp(27987, user...@example.org): Error: Creating lock file for
/mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:35 10.129.3.213 dovecot: lmtp(27994, user...@example.org): Error: Creating lock file for
/mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:36 10.129.3.213 dovecot: lmtp(28011, user...@example.org): Error: Creating lock file for
/mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:36 10.129.3.213 dovecot: lmtp(28013, user...@example.org): Error: Creating lock file for
/mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:38 10.129.3.213 dovecot: lmtp(28017, user...@example.org): Error: Creating lock file for
/mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:39 10.129.3.213 dovecot: lmtp(28025, user...@example.org): Error: Creating lock file for
/mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:42 10.129.3.213 dovecot: lmtp(28037, user...@example.org): Error: Creating lock file for
/mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:43 10.129.3.213 dovecot: lmtp(27973, user...@example.org): Error: Creating lock file for
/mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Configs and Error log is attached.
Any idea how to mitigate these locking issues?
Regards
Daniel
# 2.1.16: /etc/dovecot/dovecot.conf
# OS: Linux 3.2.0-56-generic x86_64 Ubuntu 12.04.3 LTS
auth_cache_negative_ttl = 0
auth_cache_size = 10 M
auth_cache_ttl = 1 mins
auth_verbose = yes
auth_verbose_passwords = sha1
deliver_log_format = mailbox: deliver: msgid=%m from=%f: %$
dict {
quota = mysql:/etc/dovecot/conf.d/dovecot-dict-sql.conf.ext
}
disable_plaintext_auth = no
doveadm_password = secret
instance_name = dovecot-mailbox
lda_mailbox_autocreate = yes
lda_mailbox_autosubscribe = yes
login_greeting = Mailbox
login_log_format = mailbox: login: %$: %s
login_trusted_networks = 10.129.3.0/24
mail_debug = yes
mail_fsync = always
mail_gid = vmail
mail_home = /mail/dovecot/%d/%n
mail_location = mdbox:~/mail
mail_log_prefix = "mailbox: mail: %s(%u): <%{session}>: "
mail_plugins = quota stats
mail_privileged_group = vmail
mail_uid = vmail
managesieve_implementation_string = Sieve
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 ihave
vnd.dovecot.duplicate
mdbox_rotate_interval = 1 weeks
mdbox_rotate_size = 50 M
mmap_disable = yes
namespace {
inbox = yes
location =
mailbox Archives {
special_use = \Archive
}
mailbox Drafts {
special_use = \Drafts
}
mailbox Junk {
special_use = \Junk
}
mailbox Sent {
special_use = \Sent
}
mailbox Trash {
special_use = \Trash
}
prefix =
separator = /
type = private
}
passdb {
args = /etc/dovecot/conf.d/dovecot-sql.conf.ext
driver = sql
}
plugin {
quota = dict:User quota::proxy::quota
quota_rule = *:storage=10G
quota_rule2 = Trash:storage=+100M
quota_warning = storage=95%% quota-warning 95 %u
quota_warning2 = storage=80%% quota-warning 80 %u
sieve = ~/.dovecot.sieve
sieve_dir = ~/sieve
sieve_extensions = +vnd.dovecot.duplicate
stats_refresh = 30 secs
stats_track_cmds = yes
}
protocols = imap pop3 lmtp sieve
service auth {
unix_listener auth-userdb {
group = dovecot
user = dovecot
}
}
service dict {
unix_listener dict {
group = vmail
mode = 0660
}
}
service doveadm {
inet_listener doveadm-server {
port = 19000
}
}
service imap-login {
inet_listener imap {
port = 19143
}
}
service imap-postlogin {
executable = script-login /usr/local/bin/dovecot-postlogin
user = $default_internal_user
}
service imap {
executable = imap imap-postlogin
}
service lmtp {
inet_listener lmtp-without-quota {
address = *
port = 19025
}
inet_listener lmtp {
address = *
port = 19024
}
}
service managesieve-login {
inet_listener sieve {
port = 19200
}
}
service pop3-login {
inet_listener pop3 {
port = 19110
}
}
service pop3-postlogin {
executable = script-login /usr/local/bin/dovecot-postlogin
user = $default_internal_user
}
service pop3 {
executable = pop3 pop3-postlogin
}
service quota-warning {
executable = script /usr/local/bin/quota-warning
extra_groups = dovecot
unix_listener quota-warning {
user = vmail
}
user = vmail
}
service stats {
fifo_listener stats-mail {
mode = 0600
user = vmail
}
}
ssl = no
syslog_facility = local1
userdb {
driver = prefetch
}
userdb {
args = /etc/dovecot/conf.d/dovecot-sql.conf.ext
driver = sql
}
verbose_proctitle = yes
protocol imap {
imap_client_workarounds = delay-newmail tb-extra-mailbox-sep
mail_plugins = quota stats imap_quota imap_stats
}
protocol lmtp {
mail_plugins = quota stats sieve
}
# 2.1.16: /etc/dovecot-director/dovecot-director.conf
# OS: Linux 3.2.0-56-generic x86_64 Ubuntu 12.04.3 LTS
auth_verbose = yes
auth_verbose_passwords = sha1
base_dir = /var/run/dovecot-director
deliver_log_format = director: deliver: msgid=%m from=%f: %$
director_doveadm_port = 20000
director_mail_servers = 10.129.3.193 10.129.3.192 10.129.3.191 10.129.3.190
director_servers = 10.129.3.193 10.129.3.192 10.129.3.191 10.129.3.190
director_user_expire = 2 days
disable_plaintext_auth = no
doveadm_password = secret
doveadm_proxy_port = 19000
instance_name = dovecot-director
lmtp_proxy = yes
login_greeting = Mail Balancer
login_log_format = director: login: %$: %s
login_trusted_networks = 10.129.3.0/24
mail_debug = yes
mail_fsync = always
mail_gid = vmail
mail_home = /mail/dovecot/%d/%n
mail_location = mdbox:~/mail
mail_log_prefix = "director: mail: %s(%u): <%{session}>: "
mail_max_userip_connections = 20
mail_privileged_group = vmail
mail_uid = vmail
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 ihave
vnd.dovecot.duplicate
mmap_disable = yes
passdb {
args = /etc/dovecot-director/conf.d/dovecot-sql.conf.ext
driver = sql
}
protocols = imap pop3 lmtp sieve
service auth {
unix_listener auth-userdb {
user = dovecot
}
}
service director {
fifo_listener login/proxy-notify {
mode = 0666
}
inet_listener {
port = 9090
}
unix_listener director-userdb {
mode = 0600
}
unix_listener login/director {
mode = 0666
}
}
service doveadm {
executable = doveadm-server director
inet_listener doveadm-server {
port = 20000
}
}
service imap-login {
executable = imap-login director
inet_listener imap {
port = 20143
}
inet_listener imaps {
port = 20993
ssl = yes
}
}
service ipc {
unix_listener ipc {
user = dovecot
}
}
service lmtp {
inet_listener lmtp-without-quota {
address = *
port = 20025
}
inet_listener lmtp {
address = *
port = 20024
}
}
service managesieve-login {
executable = managesieve-login director
inet_listener sieve {
port = 20200
}
}
service pop3-login {
executable = pop3-login director
inet_listener pop3 {
port = 20110
}
inet_listener pop3s {
port = 20995
ssl = yes
}
}
ssl_cert = </etc/certs/example.org.crt
ssl_key = </etc/certs/example.org.key
syslog_facility = local2
userdb {
driver = prefetch
}
userdb {
args = /etc/dovecot-director/conf.d/dovecot-sql.conf.ext
driver = sql
}
verbose_proctitle = yes
protocol lmtp {
auth_socket_path = director-userdb
}
protocol sieve {
auth_socket_path = director-userdb
}
protocol doveadm {
auth_socket_path = director-userdb
}
protocol imap {
imap_client_workarounds = delay-newmail tb-extra-mailbox-sep
}
Dec 27 16:36:30 10.129.3.213 dovecot: lmtp(27975, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:33 10.129.3.213 dovecot: lmtp(27987, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:35 10.129.3.213 dovecot: lmtp(27994, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:36 10.129.3.213 dovecot: lmtp(28011, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:36 10.129.3.213 dovecot: lmtp(28013, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:38 10.129.3.213 dovecot: lmtp(28017, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:39 10.129.3.213 dovecot: lmtp(28025, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:42 10.129.3.213 dovecot: lmtp(28037, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:43 10.129.3.213 dovecot: lmtp(27973, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:48 10.129.3.213 dovecot: lmtp(28053, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:48 10.129.3.213 dovecot: lmtp(28050, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:49 10.129.3.213 dovecot: lmtp(28054, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:49 10.129.3.213 dovecot: lmtp(28023, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:50 10.129.3.213 dovecot: lmtp(28061, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:51 10.129.3.213 dovecot: lmtp(28010, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:52 10.129.3.213 dovecot: lmtp(27990, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:53 10.129.3.213 dovecot: lmtp(28072, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:54 10.129.3.213 dovecot: lmtp(27976, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:54 10.129.3.213 dovecot: lmtp(28083, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:56 10.129.3.213 dovecot: lmtp(28042, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:58 10.129.3.213 dovecot: lmtp(28101, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:58 10.129.3.213 dovecot: lmtp(28015, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:36:59 10.129.3.213 dovecot: lmtp(27977, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:00 10.129.3.213 dovecot: lmtp(28063, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:07 10.129.3.213 dovecot: lmtp(28037, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:08 10.129.3.213 dovecot: lmtp(28112, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:10 10.129.3.213 dovecot: lmtp(28000, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:10 10.129.3.213 dovecot: lmtp(27991, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:10 10.129.3.213 dovecot: lmtp(27994, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:10 10.129.3.213 dovecot: lmtp(28023, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:11 10.129.3.213 dovecot: lmtp(28061, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:12 10.129.3.213 dovecot: lmtp(27987, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:12 10.129.3.213 dovecot: lmtp(28035, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:12 10.129.3.213 dovecot: lmtp(28118, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:13 10.129.3.213 dovecot: lmtp(28050, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:13 10.129.3.213 dovecot: lmtp(28010, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:13 10.129.3.213 dovecot: lmtp(27975, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:13 10.129.3.213 dovecot: lmtp(28154, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:14 10.129.3.213 dovecot: lmtp(27995, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:15 10.129.3.213 dovecot: lmtp(28161, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:16 10.129.3.213 dovecot: lmtp(28185, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:17 10.129.3.213 dovecot: lmtp(28124, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:17 10.129.3.213 dovecot: lmtp(28139, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:18 10.129.3.213 dovecot: lmtp(28245, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:18 10.129.3.213 dovecot: lmtp(28081, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:18 10.129.3.213 dovecot: lmtp(28113, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:19 10.129.3.213 dovecot: lmtp(28015, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:20 10.129.3.213 dovecot: lmtp(28013, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:21 10.129.3.213 dovecot: lmtp(28032, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:22 10.129.3.213 dovecot: lmtp(27973, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:23 10.129.3.213 dovecot: lmtp(28073, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:24 10.129.3.213 dovecot: lmtp(28003, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:26 10.129.3.213 dovecot: lmtp(28104, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:27 10.129.3.213 dovecot: lmtp(28123, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:27 10.129.3.213 dovecot: lmtp(28242, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:28 10.129.3.213 dovecot: lmtp(28368, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:30 10.129.3.213 dovecot: lmtp(28037, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:30 10.129.3.213 dovecot: lmtp(27994, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:33 10.129.3.213 dovecot: lmtp(28182, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:34 10.129.3.213 dovecot: lmtp(28050, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:34 10.129.3.213 dovecot: lmtp(28035, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:34 10.129.3.213 dovecot: lmtp(28023, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:35 10.129.3.213 dovecot: lmtp(28154, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:35 10.129.3.213 dovecot: lmtp(27991, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:36 10.129.3.213 dovecot: lmtp(27990, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:36 10.129.3.213 dovecot: lmtp(28409, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:36 10.129.3.213 dovecot: lmtp(28101, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:37 10.129.3.249 dovecot: lmtp(29169, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:37 10.129.3.213 dovecot: lmtp(27987, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:37 10.129.3.213 dovecot: lmtp(28185, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:38 10.129.3.213 dovecot: lmtp(28313, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:39 10.129.3.213 dovecot: lmtp(28017, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:40 10.129.3.213 dovecot: lmtp(28245, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:40 10.129.3.213 dovecot: lmtp(28116, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:40 10.129.3.213 dovecot: lmtp(28139, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:41 10.129.3.213 dovecot: lmtp(28081, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:41 10.129.3.213 dovecot: lmtp(27975, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:41 10.129.3.213 dovecot: lmtp(28011, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:42 10.129.3.213 dovecot: lmtp(28113, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:42 10.129.3.213 dovecot: lmtp(28032, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:42 10.129.3.213 dovecot: lmtp(28010, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:43 10.129.3.213 dovecot: lmtp(28418, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:43 10.129.3.213 dovecot: lmtp(27973, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:43 10.129.3.213 dovecot: lmtp(28061, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:44 10.129.3.249 dovecot: lmtp(29147, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:44 10.129.3.213 dovecot: lmtp(28042, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:45 10.129.3.249 dovecot: lmtp(29309, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:46 10.129.3.249 dovecot: lmtp(29221, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:46 10.129.3.213 dovecot: lmtp(28419, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:47 10.129.3.213 dovecot: lmtp(28427, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:47 10.129.3.213 dovecot: lmtp(28104, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:47 10.129.3.213 dovecot: lmtp(27995, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:49 10.129.3.213 dovecot: lmtp(28112, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:50 10.129.3.213 dovecot: lmtp(28124, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:50 10.129.3.249 dovecot: lmtp(29543, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:50 10.129.3.249 dovecot: lmtp(29454, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:51 10.129.3.213 dovecot: lmtp(28161, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:51 10.129.3.213 dovecot: lmtp(28242, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:51 10.129.3.249 dovecot: lmtp(29556, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:51 10.129.3.249 dovecot: lmtp(29565, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:51 10.129.3.213 dovecot: lmtp(28433, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:52 10.129.3.213 dovecot: lmtp(28037, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:52 10.129.3.213 dovecot: lmtp(28434, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:52 10.129.3.213 dovecot: lmtp(28053, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:52 10.129.3.213 dovecot: lmtp(28054, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:53 10.129.3.213 dovecot: lmtp(28072, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:53 10.129.3.213 dovecot: lmtp(28221, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:54 10.129.3.213 dovecot: lmtp(28182, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:54 10.129.3.249 dovecot: lmtp(29277, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:55 10.129.3.249 dovecot: lmtp(29106, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:56 10.129.3.213 dovecot: lmtp(28083, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:56 10.129.3.213 dovecot: lmtp(28023, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:56 10.129.3.249 dovecot: lmtp(29630, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:57 10.129.3.249 dovecot: lmtp(29192, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:57 10.129.3.213 dovecot: lmtp(28476, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:57 10.129.3.213 dovecot: lmtp(27991, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:57 10.129.3.213 dovecot: lmtp(28013, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:58 10.129.3.213 dovecot: lmtp(28409, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:37:58 10.129.3.213 dovecot: lmtp(28073, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:00 10.129.3.213 dovecot: lmtp(28035, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:00 10.129.3.249 dovecot: lmtp(29539, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:00 10.129.3.249 dovecot: lmtp(29228, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:00 10.129.3.213 dovecot: lmtp(28313, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:01 10.129.3.213 dovecot: lmtp(28154, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:01 10.129.3.213 dovecot: lmtp(28257, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:02 10.129.3.213 dovecot: lmtp(27987, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:03 10.129.3.213 dovecot: lmtp(28011, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:03 10.129.3.249 dovecot: lmtp(29170, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:04 10.129.3.213 dovecot: lmtp(27994, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:05 10.129.3.213 dovecot: lmtp(28113, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:05 10.129.3.249 dovecot: lmtp(29367, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:05 10.129.3.249 dovecot: lmtp(29205, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:05 10.129.3.249 dovecot: lmtp(29527, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:06 10.129.3.249 dovecot: lmtp(29149, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:07 10.129.3.249 dovecot: lmtp(29105, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:07 10.129.3.213 dovecot: lmtp(28119, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:07 10.129.3.213 dovecot: lmtp(28139, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:08 10.129.3.213 dovecot: lmtp(28357, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:08 10.129.3.249 dovecot: lmtp(29222, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user003/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:09 10.129.3.213 dovecot: lmtp(28010, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:09 10.129.3.213 dovecot: lmtp(28427, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:10 10.129.3.213 dovecot: lmtp(28025, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:10 10.129.3.213 dovecot: lmtp(27975, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:10 10.129.3.213 dovecot: lmtp(27995, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:10 10.129.3.213 dovecot: lmtp(28101, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:11 10.129.3.213 dovecot: lmtp(28061, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:12 10.129.3.213 dovecot: lmtp(28015, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:13 10.129.3.213 dovecot: lmtp(28419, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:14 10.129.3.213 dovecot: lmtp(28054, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:15 10.129.3.213 dovecot: lmtp(28050, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:15 10.129.3.213 dovecot: lmtp(28104, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:15 10.129.3.213 dovecot: lmtp(27973, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:15 10.129.3.213 dovecot: lmtp(28221, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:16 10.129.3.213 dovecot: lmtp(28161, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:17 10.129.3.213 dovecot: lmtp(28037, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:18 10.129.3.213 dovecot: lmtp(28042, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:18 10.129.3.213 dovecot: lmtp(28053, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:19 10.129.3.213 dovecot: lmtp(28242, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:19 10.129.3.213 dovecot: lmtp(28116, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:20 10.129.3.213 dovecot: lmtp(28073, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:20 10.129.3.213 dovecot: lmtp(28513, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:20 10.129.3.213 dovecot: lmtp(28118, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:20 10.129.3.213 dovecot: lmtp(28418, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:23 10.129.3.213 dovecot: lmtp(28083, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:24 10.129.3.213 dovecot: lmtp(28313, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:24 10.129.3.213 dovecot: lmtp(27987, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:24 10.129.3.213 dovecot: lmtp(28154, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:25 10.129.3.213 dovecot: lmtp(28131, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:25 10.129.3.213 dovecot: lmtp(27977, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:27 10.129.3.213 dovecot: lmtp(28032, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:28 10.129.3.213 dovecot: lmtp(27991, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:29 10.129.3.213 dovecot: lmtp(28139, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:30 10.129.3.213 dovecot: lmtp(28010, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:32 10.129.3.213 dovecot: lmtp(28035, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:33 10.129.3.213 dovecot: lmtp(28025, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:33 10.129.3.213 dovecot: lmtp(27990, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:34 10.129.3.213 dovecot: lmtp(28182, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:35 10.129.3.213 dovecot: lmtp(28427, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:35 10.129.3.213 dovecot: lmtp(28409, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:38 10.129.3.213 dovecot: lmtp(28003, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:40 10.129.3.213 dovecot: lmtp(28242, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:41 10.129.3.213 dovecot: lmtp(28434, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:43 10.129.3.213 dovecot: lmtp(28161, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:43 10.129.3.213 dovecot: lmtp(28257, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:44 10.129.3.213 dovecot: lmtp(28476, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user002/.dovecot.lda-dupes timed out in 20 secs
Dec 27 16:38:49 10.129.3.213 dovecot: lmtp(28419, user...@example.org): Error: Creating lock file for /mail/dovecot/example.org/user001/.dovecot.lda-dupes timed out in 20 secs