diff --git a/.cloudflared/a765a217-5312-48f8-9bb7-5a7ef56602b8.json b/.cloudflared/a765a217-5312-48f8-9bb7-5a7ef56602b8.json new file mode 100755 index 0000000..09721f9 --- /dev/null +++ b/.cloudflared/a765a217-5312-48f8-9bb7-5a7ef56602b8.json @@ -0,0 +1 @@ +{"AccountTag":"a67861072a144cdd746e9c9bdd8476fe","TunnelSecret":"NCu/3BUoqAbF5kwXfs3rTjU9QUiVvXv7OM27BrUd/50Kf/wthq2rIH0G+Eu76LK8JQon/UQBUbQPoRPRY3qbtA==","TunnelID":"a765a217-5312-48f8-9bb7-5a7ef56602b8"} \ No newline at end of file diff --git a/.cloudflared/config.yml b/.cloudflared/config.yml new file mode 100644 index 0000000..a82b2cb --- /dev/null +++ b/.cloudflared/config.yml @@ -0,0 +1,7 @@ +tunnel: a765a217-5312-48f8-9bb7-5a7ef56602b8 +credentials-file: /etc/cloudflared/a765a217-5312-48f8-9bb7-5a7ef56602b8.json + +ingress: + - hostname: hb3-accelerator.com + service: http://dapp-frontend:5173 + - service: http_status:404 diff --git a/Dockerfile.agent b/Dockerfile.agent new file mode 100644 index 0000000..79f83cf --- /dev/null +++ b/Dockerfile.agent @@ -0,0 +1,6 @@ +FROM node:18-alpine +WORKDIR /app +COPY cloudflared-agent.js . +RUN yarn add express +RUN apk add --no-cache docker-cli docker-compose +CMD ["node", "cloudflared-agent.js"] \ No newline at end of file diff --git a/Dockerfile.cloudflared b/Dockerfile.cloudflared new file mode 100644 index 0000000..2d7c6fe --- /dev/null +++ b/Dockerfile.cloudflared @@ -0,0 +1,9 @@ +FROM alpine:3.20 as base +RUN apk add --no-cache bash curl wget + +FROM cloudflare/cloudflared:2025.6.1 as src + +FROM base +COPY --from=src /usr/local/bin/cloudflared /usr/local/bin/cloudflared +USER nobody +ENTRYPOINT ["bash", "/start-cloudflared.sh"] \ No newline at end of file diff --git a/backend/Dockerfile b/backend/Dockerfile index 5cd9056..491727b 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -3,7 +3,19 @@ FROM node:20-bullseye WORKDIR /app # Устанавливаем зависимости, включая Python для node-gyp -RUN apt-get update && apt-get install -y python3 make g++ cmake openssl libssl-dev +RUN apt-get update && apt-get install -y \ + python3 make g++ cmake openssl libssl-dev \ + ca-certificates curl gnupg lsb-release + +RUN mkdir -p /etc/apt/keyrings && \ + curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg + +RUN echo \ + "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \ + $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null + +RUN apt-get update && apt-get install -y \ + docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin # Копируем package.json и yarn.lock для установки зависимостей COPY package.json yarn.lock ./ diff --git a/backend/app.js b/backend/app.js index 7aabf51..e37115a 100644 --- a/backend/app.js +++ b/backend/app.js @@ -16,6 +16,7 @@ const userTagsRoutes = require('./routes/userTags'); const tagsInitRoutes = require('./routes/tagsInit'); const tagsRoutes = require('./routes/tags'); const ragRoutes = require('./routes/rag'); // Новый роут для RAG-ассистента +const cloudflareRoutes = require('./routes/cloudflare'); // Проверка и создание директорий для хранения данных контрактов const ensureDirectoriesExist = () => { @@ -190,6 +191,7 @@ app.use('/api/tags', tagsInitRoutes); app.use('/api/tags', tagsRoutes); app.use('/api/identities', identitiesRoutes); app.use('/api/rag', ragRoutes); // Подключаем роут +app.use('/api/cloudflare', cloudflareRoutes); const nonceStore = new Map(); // или любая другая реализация хранилища nonce diff --git a/backend/cloudflaredEnv.js b/backend/cloudflaredEnv.js new file mode 100644 index 0000000..e4d7803 --- /dev/null +++ b/backend/cloudflaredEnv.js @@ -0,0 +1,13 @@ +const fs = require('fs'); +const path = require('path'); + +function writeCloudflaredEnv({ tunnelToken, domain }) { + console.log('[writeCloudflaredEnv] tunnelToken:', tunnelToken, 'domain:', domain); + const envPath = '/cloudflared.env'; + let content = ''; + if (tunnelToken) content += `TUNNEL_TOKEN=${tunnelToken}\n`; + if (domain) content += `DOMAIN=${domain}\n`; + fs.writeFileSync(envPath, content, 'utf8'); +} + +module.exports = { writeCloudflaredEnv }; \ No newline at end of file diff --git a/backend/db/migrations/041_create_cloudflare_settings.sql b/backend/db/migrations/041_create_cloudflare_settings.sql new file mode 100644 index 0000000..385d791 --- /dev/null +++ b/backend/db/migrations/041_create_cloudflare_settings.sql @@ -0,0 +1,7 @@ +CREATE TABLE IF NOT EXISTS cloudflare_settings ( + id SERIAL PRIMARY KEY, + api_token TEXT, + tunnel_token TEXT, + domain TEXT, + updated_at TIMESTAMP DEFAULT NOW() +); \ No newline at end of file diff --git a/backend/db/migrations/042_create_cloudflare_settings.sql b/backend/db/migrations/042_create_cloudflare_settings.sql new file mode 100644 index 0000000..55d8132 --- /dev/null +++ b/backend/db/migrations/042_create_cloudflare_settings.sql @@ -0,0 +1 @@ + ALTER TABLE cloudflare_settings ADD COLUMN account_id TEXT; \ No newline at end of file diff --git a/backend/db/migrations/043_create_cloudflare_settings.sql b/backend/db/migrations/043_create_cloudflare_settings.sql new file mode 100644 index 0000000..ec412a7 --- /dev/null +++ b/backend/db/migrations/043_create_cloudflare_settings.sql @@ -0,0 +1 @@ +ALTER TABLE cloudflare_settings ADD COLUMN tunnel_id TEXT; \ No newline at end of file diff --git a/backend/logs/combined.log b/backend/logs/combined.log index 71108d6..5586c5c 100644 --- a/backend/logs/combined.log +++ b/backend/logs/combined.log @@ -2010,3 +2010,7628 @@ {"level":"info","message":"[IdentityService] Found 1 identities for user 141","timestamp":"2025-06-26T17:33:55.690Z"} {"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-26T17:33:55.692Z"} {"level":"info","message":"No new messages found","timestamp":"2025-06-26T17:33:55.857Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T08:22:43.352Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T08:22:43.360Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T08:22:43.361Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T08:22:43.364Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T08:22:43.364Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T08:22:43.366Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T08:22:43.508Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T08:22:43.543Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T08:22:43.641Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T08:22:43.643Z"} +{"level":"error","message":"Unhandled Rejection: Cannot use a pool after calling end on the pool","stack":"Error: Cannot use a pool after calling end on the pool\n at /app/node_modules/pg-pool/index.js:45:11\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async /app/app.js:101:20","timestamp":"2025-06-27T08:22:43.778Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T08:22:52.667Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T08:22:52.668Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T08:23:04.990Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T08:23:07.007Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T08:23:07.011Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:23:10.245Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T08:24:21.045Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T08:24:21.046Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:24:21.046Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:24:21.046Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T08:24:33.797Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T08:24:42.698Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T08:24:42.700Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:24:51.103Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:25:23.227Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:25:56.323Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:26:29.600Z"} +{"level":"info","message":"[IdentityService] No user found with identity email:spaceambition@substack.com","timestamp":"2025-06-27T08:26:56.405Z"} +{"level":"info","message":"[IdentityService] Saving identity for user 145: email:spaceambition@substack.com","timestamp":"2025-06-27T08:26:56.496Z"} +{"level":"info","message":"[IdentityService] Created new identity email:spaceambition@substack.com for user 145","timestamp":"2025-06-27T08:26:56.514Z"} +{"level":"info","message":"[WS] broadcastContactsUpdate after new user created","timestamp":"2025-06-27T08:26:56.514Z"} +{"level":"info","message":"[getLinkedWallet] Called with userId: 145 (Type: number)","timestamp":"2025-06-27T08:26:56.515Z"} +{"level":"info","message":"[getLinkedWallet] DB query result for userId 145:","timestamp":"2025-06-27T08:26:56.517Z"} +{"level":"info","message":"[getLinkedWallet] Returning address: undefined for userId 145","timestamp":"2025-06-27T08:26:56.517Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.340Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.340Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.341Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.341Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.341Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.342Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.342Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:28:00.613Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:28:00.748Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:28:36.709Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:29:09.573Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:29:46.396Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:30:11.168Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:30:47.750Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:31:16.505Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:31:53.009Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:32:19.079Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:32:19.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:32:19.183Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:32:19.197Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:32:19.240Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:32:19.244Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:32:19.324Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:32:19.337Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:32:19.351Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:32:19.354Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:32:19.400Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:32:19.406Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:32:19.524Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:32:19.531Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:32:21.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:32:50.223Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:32:50.231Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:33:01.884Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:33:20.465Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:33:20.473Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:33:31.268Z"} +{"level":"info","message":"Email sent to spaceambition@substack.com","timestamp":"2025-06-27T08:33:42.717Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:33:44.543Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:33:44.551Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:33:44.617Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:33:44.622Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:33:44.647Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:33:44.653Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:33:44.677Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:33:44.682Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:33:44.703Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:33:44.711Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:33:44.712Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:33:44.718Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:33:44.751Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:33:44.756Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:34:04.218Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:14.947Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:14.956Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:34:19.611Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:19.618Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:19.758Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:19.763Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:34:19.862Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:19.869Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:19.914Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:19.918Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:34:19.933Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:34:19.934Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:19.960Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:19.974Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:20.004Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:20.011Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:34:36.961Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:51.165Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:51.180Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:34:57.308Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:57.311Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:57.363Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:57.366Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:34:57.440Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:57.453Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:57.493Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:57.498Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:34:57.507Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:34:57.508Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:57.544Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:57.575Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:34:57.696Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:34:57.700Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:35:09.576Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:35:25.090Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:35:25.102Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:35:38.416Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:35:56.188Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:35:56.203Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:36:19.022Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:36:26.413Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:36:26.424Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:36:43.970Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:36:56.606Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:36:56.614Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:37:25.112Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:37:26.850Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:37:26.868Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:37:49.534Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:37:57.103Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:37:57.119Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:38:29.630Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:38:52.673Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:52.681Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:38:52.732Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:52.738Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:38:52.790Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:52.792Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:38:52.851Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:38:52.856Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:38:52.857Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:52.859Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:38:52.889Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:52.899Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:38:52.933Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:52.936Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:38:57.223Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:57.229Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:38:57.361Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:57.370Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:38:57.443Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T08:38:57.444Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T08:38:57.481Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:57.483Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:38:57.521Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:57.524Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:38:57.552Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:57.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:38:57.597Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:38:57.600Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.081Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.081Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.082Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.083Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.083Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.088Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.088Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.089Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.089Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.091Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.091Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.091Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:39:28.689Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:39:28.704Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:39:35.138Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:39:35.232Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:39:58.971Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:39:58.988Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:40:00.475Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:40:29.084Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:40:29.094Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:40:36.745Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:40:59.488Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:40:59.495Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:41:05.693Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:41:29.563Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:41:29.575Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:41:41.857Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:41:57.077Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:41:57.084Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:42:11.369Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:42:36.118Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:42:36.131Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:42:47.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:42:57.524Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:42:57.531Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.856Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.856Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.857Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.857Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.858Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.858Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.858Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.859Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:43:27.801Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:43:27.809Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:43:53.141Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:43:53.232Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:44:22.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:44:25.750Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:44:25.758Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:44:58.079Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:45:25.941Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:45:25.948Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:45:31.451Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.449Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.450Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.451Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.451Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.452Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:46:26.942Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:46:26.949Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:46:36.737Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:46:36.839Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:47:13.284Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:47:24.699Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:47:24.709Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:47:42.372Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:48:18.843Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:48:24.886Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:48:24.891Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:48:43.839Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:49:24.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T08:49:25.680Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T08:49:25.688Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:49:49.596Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T08:52:33.968Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T08:52:33.972Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T08:52:33.973Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T08:52:33.974Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T08:52:33.975Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T08:52:33.977Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T08:52:34.129Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T08:52:34.146Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T08:52:34.222Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T08:52:34.223Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T08:52:34.854Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T08:52:34.858Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:52:35.579Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T08:53:40.087Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T08:53:40.088Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:53:40.089Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:53:40.089Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T08:53:50.095Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T08:53:54.553Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T08:53:54.555Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:53:55.201Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:54:40.313Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:55:02.936Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:55:45.295Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:56:07.742Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:56:50.882Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:57:24.198Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:57:58.628Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:58:18.397Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:58:54.519Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T08:59:15.422Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.213Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T09:00:04.213Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T09:00:15.874Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T09:00:17.784Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T09:00:17.786Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'cbargs')","stack":"TypeError: Cannot read properties of undefined (reading 'cbargs')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1253:20)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T09:00:19.304Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:00:21.354Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:01:05.023Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.765Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.765Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-27T09:01:57.077Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:02:13.935Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-27T09:02:25.405Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:02:30.546Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:02:30.585Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:02:30.622Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:02:30.660Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:02:30.698Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:02:33.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:02:33.592Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:03:15.811Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:03:44.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:03:44.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:03:44.423Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-27T09:04:05.611Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:04:17.938Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:04:17.975Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:04:18.014Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:04:38.749Z"} +{"level":"error","message":"IMAP connection error during check: This socket has been ended by the other party","timestamp":"2025-06-27T09:04:39.815Z"} +{"level":"error","message":"IMAP connection error during check: This socket has been ended by the other party","timestamp":"2025-06-27T09:04:39.816Z"} +{"level":"error","message":"IMAP connection error during check: This socket has been ended by the other party","timestamp":"2025-06-27T09:04:39.816Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:05:22.913Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:05:22.957Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:05:44.039Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:05:49.061Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:06:28.427Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.954Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.954Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.955Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.955Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.955Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.955Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:07:33.846Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:07:33.887Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:07:33.926Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:07:56.171Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:07:56.206Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:07:59.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:07:59.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:07:59.425Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:08:39.140Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:09:04.895Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:09:04.896Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:09:04.896Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:09:48.456Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:09:48.498Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:09:48.540Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:10:05.739Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:10:07.072Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:10:53.749Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.781Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.782Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.782Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.782Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.782Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.783Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:11:59.265Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:11:59.301Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:11:59.339Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:12:18.130Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:12:18.175Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:12:21.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:12:21.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:12:21.280Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:13:01.013Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:13:22.215Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:13:23.447Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:14:06.445Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:14:27.631Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:14:29.101Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:14:37.463Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:14:37.483Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:14:37.529Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:14:37.534Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:14:37.555Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:14:37.564Z"} +{"level":"info","message":"POST /api/chat/process-guest","timestamp":"2025-06-27T09:14:37.610Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1751015675617-b3820tu1x","timestamp":"2025-06-27T09:14:37.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:14:37.622Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:14:37.626Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:14:37.628Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:14:37.632Z"} +{"level":"info","message":"Created mapping for guest ID 1751015675617-b3820tu1x to user 1","timestamp":"2025-06-27T09:14:37.678Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:14:37.680Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:14:37.681Z"} +{"level":"info","message":"No guest messages found for guest ID 1751015675617-b3820tu1x","timestamp":"2025-06-27T09:14:37.689Z"} +{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID 1751015675617-b3820tu1x","timestamp":"2025-06-27T09:14:37.694Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:14:37.701Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:14:37.703Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-06-27T09:14:39.115Z"} +{"level":"info","message":"GET /api/chat/history?offset=116&limit=30","timestamp":"2025-06-27T09:14:39.147Z"} +{"count":30,"level":"info","limit":30,"message":"Returning message history for user 1","offset":116,"timestamp":"2025-06-27T09:14:39.159Z","total":146} +{"level":"info","message":"POST /api/auth/logout","timestamp":"2025-06-27T09:14:47.949Z"} +{"address":null,"authType":null,"authenticated":false,"cookie":{"expires":"2025-07-26T13:14:14.655Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"email":null,"guestId":null,"isAdmin":false,"level":"info","message":"[SessionService] Saving session data:","pendingEmail":null,"previousGuestId":null,"processedGuestIds":[],"telegramId":null,"timestamp":"2025-06-27T09:14:47.950Z","userId":null} +{"level":"info","message":"Session saved successfully","timestamp":"2025-06-27T09:14:47.962Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:14:47.985Z"} +{"cookie":{"expires":"2025-07-27T09:14:47.982Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"5192e3ecf64213445992e1d877635643","level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-06-27T09:14:47.985Z"} +{"level":"info","message":"Session saved successfully","timestamp":"2025-06-27T09:14:47.991Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-06-27T09:14:48.011Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-06-27T09:14:48.046Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:14:48.484Z"} +{"level":"info","message":"GET /api/auth/nonce?address=0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-06-27T09:15:04.939Z"} +{"level":"info","message":"Nonce 2e4180ca100a49f4b0bd98efc04cff8e сохранен для адреса 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-06-27T09:15:04.947Z"} +{"level":"info","message":"POST /api/auth/verify","timestamp":"2025-06-27T09:15:07.378Z"} +{"level":"info","message":"[verify] Verifying signature for address: 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-06-27T09:15:07.379Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:07.460Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"454852.0","contract":"0x351f59de4fedbdf7601f5592b93db3b9330c1c1d","hasTokens":true,"level":"info","message":"Token balance on polygon:","minBalance":"10.000000000000000000","timestamp":"2025-06-27T09:15:08.011Z"} +{"level":"info","message":"Found admin tokens on polygon","timestamp":"2025-06-27T09:15:08.012Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdCe769b847a0a697239777D0B1C7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","minBalance":"100.000000000000000000","timestamp":"2025-06-27T09:15:08.202Z"} +{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-06-27T09:15:08.202Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on ethereum:","minBalance":"10.000000000000000000","timestamp":"2025-06-27T09:15:08.244Z"} +{"level":"info","message":"Found admin tokens on ethereum","timestamp":"2025-06-27T09:15:08.244Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4b294265720b09ca39bfba18c7e368413c0f68eb","hasTokens":true,"level":"info","message":"Token balance on bsc:","minBalance":"10.000000000000000000","timestamp":"2025-06-27T09:15:08.400Z"} +{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-06-27T09:15:08.400Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"110.0","contract":"0xef49261169B454f191678D2aFC5E91Ad2e85dfD8","hasTokens":true,"level":"info","message":"Token balance on sepolia:","minBalance":"50.000000000000000000","timestamp":"2025-06-27T09:15:08.444Z"} +{"level":"info","message":"Found admin tokens on sepolia","timestamp":"2025-06-27T09:15:08.445Z"} +{"balances":{"arbitrum":"499999.9","bsc":"500000.0","ethereum":"1500000.0","polygon":"454852.0","sepolia":"110.0"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["polygon","arbitrum","ethereum","bsc","sepolia"],"timestamp":"2025-06-27T09:15:08.445Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:08.446Z"} +{"level":"info","message":"[verify] Found or created user 1 for wallet 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:08.446Z"} +{"level":"info","message":"[IdentityService] Converting guest identity for user 1 to guest_user_mapping: 5192e3ecf64213445992e1d877635643","timestamp":"2025-06-27T09:15:08.446Z"} +{"level":"info","message":"Checking admin tokens for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:08.453Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:08.454Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"454852.0","contract":"0x351f59de4fedbdf7601f5592b93db3b9330c1c1d","hasTokens":true,"level":"info","message":"Token balance on polygon:","minBalance":"10.000000000000000000","timestamp":"2025-06-27T09:15:08.678Z"} +{"level":"info","message":"Found admin tokens on polygon","timestamp":"2025-06-27T09:15:08.678Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4b294265720b09ca39bfba18c7e368413c0f68eb","hasTokens":true,"level":"info","message":"Token balance on bsc:","minBalance":"10.000000000000000000","timestamp":"2025-06-27T09:15:08.713Z"} +{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-06-27T09:15:08.713Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"110.0","contract":"0xef49261169B454f191678D2aFC5E91Ad2e85dfD8","hasTokens":true,"level":"info","message":"Token balance on sepolia:","minBalance":"50.000000000000000000","timestamp":"2025-06-27T09:15:08.823Z"} +{"level":"info","message":"Found admin tokens on sepolia","timestamp":"2025-06-27T09:15:08.824Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdCe769b847a0a697239777D0B1C7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","minBalance":"100.000000000000000000","timestamp":"2025-06-27T09:15:08.826Z"} +{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-06-27T09:15:08.826Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on ethereum:","minBalance":"10.000000000000000000","timestamp":"2025-06-27T09:15:08.850Z"} +{"level":"info","message":"Found admin tokens on ethereum","timestamp":"2025-06-27T09:15:08.850Z"} +{"balances":{"arbitrum":"499999.9","bsc":"500000.0","ethereum":"1500000.0","polygon":"454852.0","sepolia":"110.0"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["polygon","bsc","sepolia","arbitrum","ethereum"],"timestamp":"2025-06-27T09:15:08.850Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:08.851Z"} +{"level":"info","message":"Updated user 1 role to admin based on token holdings","timestamp":"2025-06-27T09:15:08.856Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-07-27T09:14:47.982Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"5192e3ecf64213445992e1d877635643","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-06-27T09:15:08.857Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-06-27T09:15:08.860Z"} +{"level":"info","message":"[linkGuestMessages] Starting for user 1 with guestId=5192e3ecf64213445992e1d877635643, previousGuestId=undefined","timestamp":"2025-06-27T09:15:08.860Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=5192e3ecf64213445992e1d877635643","timestamp":"2025-06-27T09:15:08.864Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 5192e3ecf64213445992e1d877635643","timestamp":"2025-06-27T09:15:08.864Z"} +{"level":"info","message":"No guest messages found for guest ID 5192e3ecf64213445992e1d877635643","timestamp":"2025-06-27T09:15:08.868Z"} +{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID 5192e3ecf64213445992e1d877635643","timestamp":"2025-06-27T09:15:08.871Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750414678688-i9z0kljkk","timestamp":"2025-06-27T09:15:08.873Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750414678688-i9z0kljkk","timestamp":"2025-06-27T09:15:08.873Z"} +{"level":"info","message":"Guest messages for guest ID 1750414678688-i9z0kljkk were already processed.","timestamp":"2025-06-27T09:15:08.874Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0a99fc1abc598f50aa7f9bb4ad0ed58f","timestamp":"2025-06-27T09:15:08.876Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0a99fc1abc598f50aa7f9bb4ad0ed58f","timestamp":"2025-06-27T09:15:08.876Z"} +{"level":"info","message":"Guest messages for guest ID 0a99fc1abc598f50aa7f9bb4ad0ed58f were already processed.","timestamp":"2025-06-27T09:15:08.878Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1749199741958-wplc2viy5","timestamp":"2025-06-27T09:15:08.880Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1749199741958-wplc2viy5","timestamp":"2025-06-27T09:15:08.880Z"} +{"level":"info","message":"Guest messages for guest ID 1749199741958-wplc2viy5 were already processed.","timestamp":"2025-06-27T09:15:08.881Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1749215605031-e36tfrsg7","timestamp":"2025-06-27T09:15:08.883Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1749215605031-e36tfrsg7","timestamp":"2025-06-27T09:15:08.884Z"} +{"level":"info","message":"Guest messages for guest ID 1749215605031-e36tfrsg7 were already processed.","timestamp":"2025-06-27T09:15:08.885Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1749219734273-z8cjo614o","timestamp":"2025-06-27T09:15:08.887Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1749219734273-z8cjo614o","timestamp":"2025-06-27T09:15:08.887Z"} +{"level":"info","message":"Guest messages for guest ID 1749219734273-z8cjo614o were already processed.","timestamp":"2025-06-27T09:15:08.888Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750871992168-b7ljnr7fi","timestamp":"2025-06-27T09:15:08.890Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750871992168-b7ljnr7fi","timestamp":"2025-06-27T09:15:08.890Z"} +{"level":"info","message":"Guest messages for guest ID 1750871992168-b7ljnr7fi were already processed.","timestamp":"2025-06-27T09:15:08.891Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=e3f276c739780f7f79e50905cb900155","timestamp":"2025-06-27T09:15:08.893Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID e3f276c739780f7f79e50905cb900155","timestamp":"2025-06-27T09:15:08.893Z"} +{"level":"info","message":"Guest messages for guest ID e3f276c739780f7f79e50905cb900155 were already processed.","timestamp":"2025-06-27T09:15:08.894Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=468571bcf6944db390ebc215dedd3a55","timestamp":"2025-06-27T09:15:08.896Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 468571bcf6944db390ebc215dedd3a55","timestamp":"2025-06-27T09:15:08.897Z"} +{"level":"info","message":"Guest messages for guest ID 468571bcf6944db390ebc215dedd3a55 were already processed.","timestamp":"2025-06-27T09:15:08.898Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750915517060-2lf6nr65o","timestamp":"2025-06-27T09:15:08.900Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750915517060-2lf6nr65o","timestamp":"2025-06-27T09:15:08.900Z"} +{"level":"info","message":"Guest messages for guest ID 1750915517060-2lf6nr65o were already processed.","timestamp":"2025-06-27T09:15:08.901Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750921637490-rkuee3750","timestamp":"2025-06-27T09:15:08.903Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750921637490-rkuee3750","timestamp":"2025-06-27T09:15:08.904Z"} +{"level":"info","message":"Guest messages for guest ID 1750921637490-rkuee3750 were already processed.","timestamp":"2025-06-27T09:15:08.905Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=836ef0c256afc6fe709014bea3d5e6ad","timestamp":"2025-06-27T09:15:08.906Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 836ef0c256afc6fe709014bea3d5e6ad","timestamp":"2025-06-27T09:15:08.907Z"} +{"level":"info","message":"Guest messages for guest ID 836ef0c256afc6fe709014bea3d5e6ad were already processed.","timestamp":"2025-06-27T09:15:08.908Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750923656929-lbdstodh2","timestamp":"2025-06-27T09:15:08.910Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750923656929-lbdstodh2","timestamp":"2025-06-27T09:15:08.910Z"} +{"level":"info","message":"Guest messages for guest ID 1750923656929-lbdstodh2 were already processed.","timestamp":"2025-06-27T09:15:08.911Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750923703304-tf2lyglz8","timestamp":"2025-06-27T09:15:08.913Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750923703304-tf2lyglz8","timestamp":"2025-06-27T09:15:08.913Z"} +{"level":"info","message":"Guest messages for guest ID 1750923703304-tf2lyglz8 were already processed.","timestamp":"2025-06-27T09:15:08.914Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7c737e9edc4b4f8df98af1cd19f6fe31","timestamp":"2025-06-27T09:15:08.916Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 7c737e9edc4b4f8df98af1cd19f6fe31","timestamp":"2025-06-27T09:15:08.916Z"} +{"level":"info","message":"Guest messages for guest ID 7c737e9edc4b4f8df98af1cd19f6fe31 were already processed.","timestamp":"2025-06-27T09:15:08.917Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c468d847f518642666898a1c7a7d9c15","timestamp":"2025-06-27T09:15:08.919Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c468d847f518642666898a1c7a7d9c15","timestamp":"2025-06-27T09:15:08.920Z"} +{"level":"info","message":"Guest messages for guest ID c468d847f518642666898a1c7a7d9c15 were already processed.","timestamp":"2025-06-27T09:15:08.921Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750772552636-bxl1slj9a","timestamp":"2025-06-27T09:15:08.923Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750772552636-bxl1slj9a","timestamp":"2025-06-27T09:15:08.923Z"} +{"level":"info","message":"Guest messages for guest ID 1750772552636-bxl1slj9a were already processed.","timestamp":"2025-06-27T09:15:08.924Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750772667419-ki0n6un0c","timestamp":"2025-06-27T09:15:08.926Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750772667419-ki0n6un0c","timestamp":"2025-06-27T09:15:08.927Z"} +{"level":"info","message":"Guest messages for guest ID 1750772667419-ki0n6un0c were already processed.","timestamp":"2025-06-27T09:15:08.928Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1748971995627-i4wduj6v0","timestamp":"2025-06-27T09:15:08.930Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1748971995627-i4wduj6v0","timestamp":"2025-06-27T09:15:08.930Z"} +{"level":"info","message":"Guest messages for guest ID 1748971995627-i4wduj6v0 were already processed.","timestamp":"2025-06-27T09:15:08.931Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1748971772605-2176ii4p8","timestamp":"2025-06-27T09:15:08.933Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1748971772605-2176ii4p8","timestamp":"2025-06-27T09:15:08.934Z"} +{"level":"info","message":"Guest messages for guest ID 1748971772605-2176ii4p8 were already processed.","timestamp":"2025-06-27T09:15:08.935Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=a329b8732cc9083fdb55894a2d1814f7","timestamp":"2025-06-27T09:15:08.937Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID a329b8732cc9083fdb55894a2d1814f7","timestamp":"2025-06-27T09:15:08.937Z"} +{"level":"info","message":"Guest messages for guest ID a329b8732cc9083fdb55894a2d1814f7 were already processed.","timestamp":"2025-06-27T09:15:08.939Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=5d3fa01a03251b27ec7c9d3683957fe1","timestamp":"2025-06-27T09:15:08.941Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 5d3fa01a03251b27ec7c9d3683957fe1","timestamp":"2025-06-27T09:15:08.941Z"} +{"level":"info","message":"Guest messages for guest ID 5d3fa01a03251b27ec7c9d3683957fe1 were already processed.","timestamp":"2025-06-27T09:15:08.943Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750416593902-e298ho4si","timestamp":"2025-06-27T09:15:08.945Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750416593902-e298ho4si","timestamp":"2025-06-27T09:15:08.945Z"} +{"level":"info","message":"Guest messages for guest ID 1750416593902-e298ho4si were already processed.","timestamp":"2025-06-27T09:15:08.947Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c669dd30c7c2f8f2bef3e71e48852bf3","timestamp":"2025-06-27T09:15:08.948Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c669dd30c7c2f8f2bef3e71e48852bf3","timestamp":"2025-06-27T09:15:08.949Z"} +{"level":"info","message":"Guest messages for guest ID c669dd30c7c2f8f2bef3e71e48852bf3 were already processed.","timestamp":"2025-06-27T09:15:08.950Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=cf443b86b4dcfd92f235965d83483763","timestamp":"2025-06-27T09:15:08.952Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID cf443b86b4dcfd92f235965d83483763","timestamp":"2025-06-27T09:15:08.952Z"} +{"level":"info","message":"Guest messages for guest ID cf443b86b4dcfd92f235965d83483763 were already processed.","timestamp":"2025-06-27T09:15:08.953Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1749215412677-039rqj55c","timestamp":"2025-06-27T09:15:08.954Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1749215412677-039rqj55c","timestamp":"2025-06-27T09:15:08.955Z"} +{"level":"info","message":"Guest messages for guest ID 1749215412677-039rqj55c were already processed.","timestamp":"2025-06-27T09:15:08.956Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750355588881-80dk1w9pa","timestamp":"2025-06-27T09:15:08.958Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750355588881-80dk1w9pa","timestamp":"2025-06-27T09:15:08.959Z"} +{"level":"info","message":"Guest messages for guest ID 1750355588881-80dk1w9pa were already processed.","timestamp":"2025-06-27T09:15:08.960Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750923890061-3wcksdpjn","timestamp":"2025-06-27T09:15:08.963Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750923890061-3wcksdpjn","timestamp":"2025-06-27T09:15:08.963Z"} +{"level":"info","message":"Guest messages for guest ID 1750923890061-3wcksdpjn were already processed.","timestamp":"2025-06-27T09:15:08.964Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750923927890-zrzidz9fz","timestamp":"2025-06-27T09:15:08.966Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750923927890-zrzidz9fz","timestamp":"2025-06-27T09:15:08.967Z"} +{"level":"info","message":"Guest messages for guest ID 1750923927890-zrzidz9fz were already processed.","timestamp":"2025-06-27T09:15:08.968Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=d8708a72dd00581774cd3d3669962afd","timestamp":"2025-06-27T09:15:08.970Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID d8708a72dd00581774cd3d3669962afd","timestamp":"2025-06-27T09:15:08.970Z"} +{"level":"info","message":"Guest messages for guest ID d8708a72dd00581774cd3d3669962afd were already processed.","timestamp":"2025-06-27T09:15:08.972Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f845253ebf432c9e990e460bbf8d6d51","timestamp":"2025-06-27T09:15:08.974Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f845253ebf432c9e990e460bbf8d6d51","timestamp":"2025-06-27T09:15:08.974Z"} +{"level":"info","message":"Guest messages for guest ID f845253ebf432c9e990e460bbf8d6d51 were already processed.","timestamp":"2025-06-27T09:15:08.976Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=fc7552c52eaee0ffc8787ad6d34a072c","timestamp":"2025-06-27T09:15:08.978Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID fc7552c52eaee0ffc8787ad6d34a072c","timestamp":"2025-06-27T09:15:08.978Z"} +{"level":"info","message":"Guest messages for guest ID fc7552c52eaee0ffc8787ad6d34a072c were already processed.","timestamp":"2025-06-27T09:15:08.979Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=75985e555769b03f5dc6e279a1155bc7","timestamp":"2025-06-27T09:15:08.982Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 75985e555769b03f5dc6e279a1155bc7","timestamp":"2025-06-27T09:15:08.982Z"} +{"level":"info","message":"Guest messages for guest ID 75985e555769b03f5dc6e279a1155bc7 were already processed.","timestamp":"2025-06-27T09:15:08.983Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750852072111-ojhw60q6y","timestamp":"2025-06-27T09:15:08.989Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750852072111-ojhw60q6y","timestamp":"2025-06-27T09:15:08.990Z"} +{"level":"info","message":"Guest messages for guest ID 1750852072111-ojhw60q6y were already processed.","timestamp":"2025-06-27T09:15:08.992Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f9b7b943a81ea4ba7eee39a6f7fc9669","timestamp":"2025-06-27T09:15:08.995Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f9b7b943a81ea4ba7eee39a6f7fc9669","timestamp":"2025-06-27T09:15:08.996Z"} +{"level":"info","message":"Guest messages for guest ID f9b7b943a81ea4ba7eee39a6f7fc9669 were already processed.","timestamp":"2025-06-27T09:15:08.997Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=fa3ab057f8e1f3ee3d5e34ef07b26059","timestamp":"2025-06-27T09:15:09.000Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID fa3ab057f8e1f3ee3d5e34ef07b26059","timestamp":"2025-06-27T09:15:09.001Z"} +{"level":"info","message":"Guest messages for guest ID fa3ab057f8e1f3ee3d5e34ef07b26059 were already processed.","timestamp":"2025-06-27T09:15:09.003Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=015dd716a2fded1fc045c72c1a60575e","timestamp":"2025-06-27T09:15:09.006Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 015dd716a2fded1fc045c72c1a60575e","timestamp":"2025-06-27T09:15:09.007Z"} +{"level":"info","message":"Guest messages for guest ID 015dd716a2fded1fc045c72c1a60575e were already processed.","timestamp":"2025-06-27T09:15:09.009Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750943651026-x1h1p2uu6","timestamp":"2025-06-27T09:15:09.011Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750943651026-x1h1p2uu6","timestamp":"2025-06-27T09:15:09.012Z"} +{"level":"info","message":"Guest messages for guest ID 1750943651026-x1h1p2uu6 were already processed.","timestamp":"2025-06-27T09:15:09.013Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750836891567-oqvkw626f","timestamp":"2025-06-27T09:15:09.015Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750836891567-oqvkw626f","timestamp":"2025-06-27T09:15:09.015Z"} +{"level":"info","message":"Guest messages for guest ID 1750836891567-oqvkw626f were already processed.","timestamp":"2025-06-27T09:15:09.016Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=9f076c84ee0fb82e662195c7008d3cdd","timestamp":"2025-06-27T09:15:09.019Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 9f076c84ee0fb82e662195c7008d3cdd","timestamp":"2025-06-27T09:15:09.019Z"} +{"level":"info","message":"Guest messages for guest ID 9f076c84ee0fb82e662195c7008d3cdd were already processed.","timestamp":"2025-06-27T09:15:09.020Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1749051277025-x5jj8ymr3","timestamp":"2025-06-27T09:15:09.022Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1749051277025-x5jj8ymr3","timestamp":"2025-06-27T09:15:09.022Z"} +{"level":"info","message":"Guest messages for guest ID 1749051277025-x5jj8ymr3 were already processed.","timestamp":"2025-06-27T09:15:09.023Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750248718038-bupg3zyvb","timestamp":"2025-06-27T09:15:09.026Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750248718038-bupg3zyvb","timestamp":"2025-06-27T09:15:09.026Z"} +{"level":"info","message":"Guest messages for guest ID 1750248718038-bupg3zyvb were already processed.","timestamp":"2025-06-27T09:15:09.027Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750335451213-yitdeo8jv","timestamp":"2025-06-27T09:15:09.029Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750335451213-yitdeo8jv","timestamp":"2025-06-27T09:15:09.029Z"} +{"level":"info","message":"Guest messages for guest ID 1750335451213-yitdeo8jv were already processed.","timestamp":"2025-06-27T09:15:09.031Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=43688588ddbdd3d97d95044707e01deb","timestamp":"2025-06-27T09:15:09.032Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 43688588ddbdd3d97d95044707e01deb","timestamp":"2025-06-27T09:15:09.033Z"} +{"level":"info","message":"Guest messages for guest ID 43688588ddbdd3d97d95044707e01deb were already processed.","timestamp":"2025-06-27T09:15:09.034Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1749047037557-ffbhn7w2e","timestamp":"2025-06-27T09:15:09.037Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1749047037557-ffbhn7w2e","timestamp":"2025-06-27T09:15:09.037Z"} +{"level":"info","message":"Guest messages for guest ID 1749047037557-ffbhn7w2e were already processed.","timestamp":"2025-06-27T09:15:09.038Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1749047450809-2v3599neb","timestamp":"2025-06-27T09:15:09.041Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1749047450809-2v3599neb","timestamp":"2025-06-27T09:15:09.041Z"} +{"level":"info","message":"Guest messages for guest ID 1749047450809-2v3599neb were already processed.","timestamp":"2025-06-27T09:15:09.043Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1749197693965-cumdt5ym3","timestamp":"2025-06-27T09:15:09.045Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1749197693965-cumdt5ym3","timestamp":"2025-06-27T09:15:09.046Z"} +{"level":"info","message":"Guest messages for guest ID 1749197693965-cumdt5ym3 were already processed.","timestamp":"2025-06-27T09:15:09.047Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=d4f09e790d0a9952bcfda6d839fb50bf","timestamp":"2025-06-27T09:15:09.049Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID d4f09e790d0a9952bcfda6d839fb50bf","timestamp":"2025-06-27T09:15:09.050Z"} +{"level":"info","message":"Guest messages for guest ID d4f09e790d0a9952bcfda6d839fb50bf were already processed.","timestamp":"2025-06-27T09:15:09.051Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1749036910052-j7dxek19b","timestamp":"2025-06-27T09:15:09.053Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1749036910052-j7dxek19b","timestamp":"2025-06-27T09:15:09.054Z"} +{"level":"info","message":"Guest messages for guest ID 1749036910052-j7dxek19b were already processed.","timestamp":"2025-06-27T09:15:09.055Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1748976356629-5bgeyaaf1","timestamp":"2025-06-27T09:15:09.058Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1748976356629-5bgeyaaf1","timestamp":"2025-06-27T09:15:09.059Z"} +{"level":"info","message":"Guest messages for guest ID 1748976356629-5bgeyaaf1 were already processed.","timestamp":"2025-06-27T09:15:09.060Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1748973405272-q3zeztpki","timestamp":"2025-06-27T09:15:09.063Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1748973405272-q3zeztpki","timestamp":"2025-06-27T09:15:09.064Z"} +{"level":"info","message":"Guest messages for guest ID 1748973405272-q3zeztpki were already processed.","timestamp":"2025-06-27T09:15:09.065Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1751015675617-b3820tu1x","timestamp":"2025-06-27T09:15:09.068Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1751015675617-b3820tu1x","timestamp":"2025-06-27T09:15:09.069Z"} +{"level":"info","message":"Guest messages for guest ID 1751015675617-b3820tu1x were already processed.","timestamp":"2025-06-27T09:15:09.070Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=999d65f7f770da796f88c8cbd3664f55","timestamp":"2025-06-27T09:15:09.073Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 999d65f7f770da796f88c8cbd3664f55","timestamp":"2025-06-27T09:15:09.073Z"} +{"level":"info","message":"Guest messages for guest ID 999d65f7f770da796f88c8cbd3664f55 were already processed.","timestamp":"2025-06-27T09:15:09.074Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f847e3846984359dd853b3164ae2dee4","timestamp":"2025-06-27T09:15:09.076Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f847e3846984359dd853b3164ae2dee4","timestamp":"2025-06-27T09:15:09.077Z"} +{"level":"info","message":"Guest messages for guest ID f847e3846984359dd853b3164ae2dee4 were already processed.","timestamp":"2025-06-27T09:15:09.078Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750422829327-pz30oiqdx","timestamp":"2025-06-27T09:15:09.080Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750422829327-pz30oiqdx","timestamp":"2025-06-27T09:15:09.080Z"} +{"level":"info","message":"Guest messages for guest ID 1750422829327-pz30oiqdx were already processed.","timestamp":"2025-06-27T09:15:09.082Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750770422364-iftjkyerp","timestamp":"2025-06-27T09:15:09.084Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750770422364-iftjkyerp","timestamp":"2025-06-27T09:15:09.084Z"} +{"level":"info","message":"Guest messages for guest ID 1750770422364-iftjkyerp were already processed.","timestamp":"2025-06-27T09:15:09.086Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0c8585859a567c3b2c67e877823f04e9","timestamp":"2025-06-27T09:15:09.089Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0c8585859a567c3b2c67e877823f04e9","timestamp":"2025-06-27T09:15:09.089Z"} +{"level":"info","message":"Guest messages for guest ID 0c8585859a567c3b2c67e877823f04e9 were already processed.","timestamp":"2025-06-27T09:15:09.090Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750770941508-5f1wol4qg","timestamp":"2025-06-27T09:15:09.093Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750770941508-5f1wol4qg","timestamp":"2025-06-27T09:15:09.093Z"} +{"level":"info","message":"Guest messages for guest ID 1750770941508-5f1wol4qg were already processed.","timestamp":"2025-06-27T09:15:09.095Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1750770963924-f361ylu3o","timestamp":"2025-06-27T09:15:09.098Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1750770963924-f361ylu3o","timestamp":"2025-06-27T09:15:09.098Z"} +{"level":"info","message":"Guest messages for guest ID 1750770963924-f361ylu3o were already processed.","timestamp":"2025-06-27T09:15:09.099Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-07-27T09:14:47.982Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"5192e3ecf64213445992e1d877635643","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","processedGuestIds":["5192e3ecf64213445992e1d877635643","1750414678688-i9z0kljkk","0a99fc1abc598f50aa7f9bb4ad0ed58f","1749199741958-wplc2viy5","1749215605031-e36tfrsg7","1749219734273-z8cjo614o","1750871992168-b7ljnr7fi","e3f276c739780f7f79e50905cb900155","468571bcf6944db390ebc215dedd3a55","1750915517060-2lf6nr65o","1750921637490-rkuee3750","836ef0c256afc6fe709014bea3d5e6ad","1750923656929-lbdstodh2","1750923703304-tf2lyglz8","7c737e9edc4b4f8df98af1cd19f6fe31","c468d847f518642666898a1c7a7d9c15","1750772552636-bxl1slj9a","1750772667419-ki0n6un0c","1748971995627-i4wduj6v0","1748971772605-2176ii4p8","a329b8732cc9083fdb55894a2d1814f7","5d3fa01a03251b27ec7c9d3683957fe1","1750416593902-e298ho4si","c669dd30c7c2f8f2bef3e71e48852bf3","cf443b86b4dcfd92f235965d83483763","1749215412677-039rqj55c","1750355588881-80dk1w9pa","1750923890061-3wcksdpjn","1750923927890-zrzidz9fz","d8708a72dd00581774cd3d3669962afd","f845253ebf432c9e990e460bbf8d6d51","fc7552c52eaee0ffc8787ad6d34a072c","75985e555769b03f5dc6e279a1155bc7","1750852072111-ojhw60q6y","f9b7b943a81ea4ba7eee39a6f7fc9669","fa3ab057f8e1f3ee3d5e34ef07b26059","015dd716a2fded1fc045c72c1a60575e","1750943651026-x1h1p2uu6","1750836891567-oqvkw626f","9f076c84ee0fb82e662195c7008d3cdd","1749051277025-x5jj8ymr3","1750248718038-bupg3zyvb","1750335451213-yitdeo8jv","43688588ddbdd3d97d95044707e01deb","1749047037557-ffbhn7w2e","1749047450809-2v3599neb","1749197693965-cumdt5ym3","d4f09e790d0a9952bcfda6d839fb50bf","1749036910052-j7dxek19b","1748976356629-5bgeyaaf1","1748973405272-q3zeztpki","1751015675617-b3820tu1x","999d65f7f770da796f88c8cbd3664f55","f847e3846984359dd853b3164ae2dee4","1750422829327-pz30oiqdx","1750770422364-iftjkyerp","0c8585859a567c3b2c67e877823f04e9","1750770941508-5f1wol4qg","1750770963924-f361ylu3o"],"timestamp":"2025-06-27T09:15:09.102Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-06-27T09:15:09.106Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:15:09.169Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:09.171Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:15:09.189Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:09.192Z"} +{"level":"info","message":"POST /api/chat/process-guest","timestamp":"2025-06-27T09:15:09.214Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1751015687797-rpcp0uwm8","timestamp":"2025-06-27T09:15:09.215Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:15:09.221Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:09.223Z"} +{"level":"info","message":"Created mapping for guest ID 1751015687797-rpcp0uwm8 to user 1","timestamp":"2025-06-27T09:15:09.226Z"} +{"level":"info","message":"No guest messages found for guest ID 1751015687797-rpcp0uwm8","timestamp":"2025-06-27T09:15:09.229Z"} +{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID 1751015687797-rpcp0uwm8","timestamp":"2025-06-27T09:15:09.233Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:09.242Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:09.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:15:09.512Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:09.515Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:15:09.530Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:09.532Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:15:09.546Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:09.548Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:15:09.562Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:09.564Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:15:09.576Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:09.580Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:15:09.598Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:09.600Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:10.092Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:15:10.092Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-06-27T09:15:10.889Z"} +{"level":"info","message":"GET /api/chat/history?offset=116&limit=30","timestamp":"2025-06-27T09:15:10.901Z"} +{"count":30,"level":"info","limit":30,"message":"Returning message history for user 1","offset":116,"timestamp":"2025-06-27T09:15:10.905Z","total":146} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:15:11.870Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-06-27T09:15:12.631Z"} +{"level":"info","message":"GET /api/chat/history?offset=116&limit=30","timestamp":"2025-06-27T09:15:12.642Z"} +{"count":30,"level":"info","limit":30,"message":"Returning message history for user 1","offset":116,"timestamp":"2025-06-27T09:15:12.646Z","total":146} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:15:34.444Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:15:34.483Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.656Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.658Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.658Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:15:39.779Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:15:39.782Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:16:10.350Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:16:10.353Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:16:17.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:16:40.576Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:16:40.579Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:16:43.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:16:43.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:16:43.135Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:17:10.806Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:17:10.811Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:17:22.958Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:17:22.995Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:17:23.033Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:17:41.031Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:17:41.034Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:17:45.403Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:17:45.445Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:17:48.575Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:17:48.575Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:17:48.575Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:18:11.258Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:18:11.261Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:18:28.309Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:18:41.123Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:18:41.126Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:18:49.511Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:18:50.795Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:19:08.619Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:19:08.622Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:19:33.837Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:19:39.209Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:19:39.211Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:19:54.911Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:19:56.180Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:20:09.433Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:20:09.435Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:20:39.191Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:21:01.756Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:21:01.800Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.943Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.943Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.944Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.944Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.944Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.944Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.945Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.945Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.945Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:21:19.979Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:21:19.982Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:21:44.639Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:22:05.782Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:22:07.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:22:20.428Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:22:20.431Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:22:50.150Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:23:11.263Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:23:12.637Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:23:20.887Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:23:20.889Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T09:23:28.801Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T09:23:28.805Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T09:23:28.806Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T09:23:28.807Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T09:23:28.807Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T09:23:28.808Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T09:23:28.857Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T09:23:28.866Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T09:23:28.903Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T09:23:28.904Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T09:23:30.096Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T09:23:30.098Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T09:23:30.098Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T09:23:30.099Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T09:23:30.099Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T09:23:30.100Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T09:23:30.137Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T09:23:30.148Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T09:23:30.180Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T09:23:30.181Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:23:38.160Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T09:23:38.160Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T09:23:42.737Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T09:23:42.741Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T09:23:42.742Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T09:23:42.743Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T09:23:42.744Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T09:23:42.744Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T09:23:42.796Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T09:23:42.806Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T09:23:42.839Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T09:23:42.840Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:23:48.084Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T09:23:48.085Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T09:23:58.091Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T09:24:02.351Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T09:24:02.353Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:24:02.931Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:24:21.347Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:24:21.350Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:25:14.912Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:25:21.791Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:25:21.794Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:25:55.997Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:25:56.001Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:26:09.510Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:26:09.513Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:26:20.334Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:26:39.668Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:26:39.670Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:27:19.962Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:27:19.965Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:27:25.753Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T09:27:29.648Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:28:20.427Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:28:20.430Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:28:24.897Z"} +{"level":"info","message":"Executing UP migration from 041_create_cloudflare_settings.sql...","timestamp":"2025-06-27T09:33:50.582Z"} +{"level":"info","message":"Migration 041_create_cloudflare_settings.sql executed successfully","timestamp":"2025-06-27T09:33:50.626Z"} +{"level":"info","message":"Function link_guest_messages.sql executed successfully","timestamp":"2025-06-27T09:33:50.643Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T09:50:47.697Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T09:50:47.700Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T09:50:47.700Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T09:50:47.701Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T09:50:47.702Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T09:50:47.703Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T09:50:47.743Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T09:50:47.754Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T09:50:47.797Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T09:50:47.797Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T09:50:48.437Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T09:50:48.439Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:50:51.794Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T09:50:52.866Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T09:50:52.868Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T09:50:52.868Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T09:50:52.869Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T09:50:52.870Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T09:50:52.870Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T09:50:52.906Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T09:50:52.918Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T09:50:52.953Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T09:50:52.954Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:50:58.182Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T09:50:58.182Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T09:51:08.188Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T09:51:08.775Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T09:51:08.778Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:51:09.452Z"} +{"level":"info","message":"GET /api/auth/nonce?address=0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-06-27T09:51:30.785Z"} +{"level":"info","message":"Nonce a9f462208784d4af2cd93d0d489868ca сохранен для адреса 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-06-27T09:51:30.794Z"} +{"level":"info","message":"POST /api/auth/verify","timestamp":"2025-06-27T09:51:33.852Z"} +{"level":"info","message":"[verify] Verifying signature for address: 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-06-27T09:51:33.853Z"} +{"level":"info","message":"[verify] Using existing authenticated user 1 for wallet 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:51:33.931Z"} +{"level":"info","message":"[AuthService] Linking identity wallet:0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b to user 1","timestamp":"2025-06-27T09:51:33.932Z"} +{"level":"info","message":"[AuthService] Identity wallet:0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b already exists for user 1","timestamp":"2025-06-27T09:51:33.938Z"} +{"level":"info","message":"[verify] Wallet 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b linked to user 1: already exists","timestamp":"2025-06-27T09:51:33.939Z"} +{"level":"info","message":"[IdentityService] Converting guest identity for user 1 to guest_user_mapping: 5192e3ecf64213445992e1d877635643","timestamp":"2025-06-27T09:51:33.939Z"} +{"level":"info","message":"Checking admin tokens for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:51:33.945Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:51:33.946Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdCe769b847a0a697239777D0B1C7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","minBalance":"100.000000000000000000","timestamp":"2025-06-27T09:51:34.732Z"} +{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-06-27T09:51:34.732Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"454852.0","contract":"0x351f59de4fedbdf7601f5592b93db3b9330c1c1d","hasTokens":true,"level":"info","message":"Token balance on polygon:","minBalance":"10.000000000000000000","timestamp":"2025-06-27T09:51:34.885Z"} +{"level":"info","message":"Found admin tokens on polygon","timestamp":"2025-06-27T09:51:34.886Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on ethereum:","minBalance":"10.000000000000000000","timestamp":"2025-06-27T09:51:34.905Z"} +{"level":"info","message":"Found admin tokens on ethereum","timestamp":"2025-06-27T09:51:34.905Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4b294265720b09ca39bfba18c7e368413c0f68eb","hasTokens":true,"level":"info","message":"Token balance on bsc:","minBalance":"10.000000000000000000","timestamp":"2025-06-27T09:51:35.133Z"} +{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-06-27T09:51:35.133Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"110.0","contract":"0xef49261169B454f191678D2aFC5E91Ad2e85dfD8","hasTokens":true,"level":"info","message":"Token balance on sepolia:","minBalance":"50.000000000000000000","timestamp":"2025-06-27T09:51:35.630Z"} +{"level":"info","message":"Found admin tokens on sepolia","timestamp":"2025-06-27T09:51:35.631Z"} +{"balances":{"arbitrum":"499999.9","bsc":"500000.0","ethereum":"1500000.0","polygon":"454852.0","sepolia":"110.0"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["arbitrum","polygon","ethereum","bsc","sepolia"],"timestamp":"2025-06-27T09:51:35.631Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:51:35.632Z"} +{"level":"info","message":"Updated user 1 role to admin based on token holdings","timestamp":"2025-06-27T09:51:35.640Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-07-27T09:14:47.982Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"5192e3ecf64213445992e1d877635643","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","processedGuestIds":["5192e3ecf64213445992e1d877635643","1750414678688-i9z0kljkk","0a99fc1abc598f50aa7f9bb4ad0ed58f","1749199741958-wplc2viy5","1749215605031-e36tfrsg7","1749219734273-z8cjo614o","1750871992168-b7ljnr7fi","e3f276c739780f7f79e50905cb900155","468571bcf6944db390ebc215dedd3a55","1750915517060-2lf6nr65o","1750921637490-rkuee3750","836ef0c256afc6fe709014bea3d5e6ad","1750923656929-lbdstodh2","1750923703304-tf2lyglz8","7c737e9edc4b4f8df98af1cd19f6fe31","c468d847f518642666898a1c7a7d9c15","1750772552636-bxl1slj9a","1750772667419-ki0n6un0c","1748971995627-i4wduj6v0","1748971772605-2176ii4p8","a329b8732cc9083fdb55894a2d1814f7","5d3fa01a03251b27ec7c9d3683957fe1","1750416593902-e298ho4si","c669dd30c7c2f8f2bef3e71e48852bf3","cf443b86b4dcfd92f235965d83483763","1749215412677-039rqj55c","1750355588881-80dk1w9pa","1750923890061-3wcksdpjn","1750923927890-zrzidz9fz","d8708a72dd00581774cd3d3669962afd","f845253ebf432c9e990e460bbf8d6d51","fc7552c52eaee0ffc8787ad6d34a072c","75985e555769b03f5dc6e279a1155bc7","1750852072111-ojhw60q6y","f9b7b943a81ea4ba7eee39a6f7fc9669","fa3ab057f8e1f3ee3d5e34ef07b26059","015dd716a2fded1fc045c72c1a60575e","1750943651026-x1h1p2uu6","1750836891567-oqvkw626f","9f076c84ee0fb82e662195c7008d3cdd","1749051277025-x5jj8ymr3","1750248718038-bupg3zyvb","1750335451213-yitdeo8jv","43688588ddbdd3d97d95044707e01deb","1749047037557-ffbhn7w2e","1749047450809-2v3599neb","1749197693965-cumdt5ym3","d4f09e790d0a9952bcfda6d839fb50bf","1749036910052-j7dxek19b","1748976356629-5bgeyaaf1","1748973405272-q3zeztpki","1751015675617-b3820tu1x","999d65f7f770da796f88c8cbd3664f55","f847e3846984359dd853b3164ae2dee4","1750422829327-pz30oiqdx","1750770422364-iftjkyerp","0c8585859a567c3b2c67e877823f04e9","1750770941508-5f1wol4qg","1750770963924-f361ylu3o"],"timestamp":"2025-06-27T09:51:35.643Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-06-27T09:51:35.648Z"} +{"level":"info","message":"[linkGuestMessages] Starting for user 1 with guestId=5192e3ecf64213445992e1d877635643, previousGuestId=undefined","timestamp":"2025-06-27T09:51:35.649Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1751015687797-rpcp0uwm8","timestamp":"2025-06-27T09:51:35.653Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1751015687797-rpcp0uwm8","timestamp":"2025-06-27T09:51:35.654Z"} +{"level":"info","message":"Guest messages for guest ID 1751015687797-rpcp0uwm8 were already processed.","timestamp":"2025-06-27T09:51:35.656Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-07-27T09:14:47.982Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"5192e3ecf64213445992e1d877635643","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","processedGuestIds":["5192e3ecf64213445992e1d877635643","1750414678688-i9z0kljkk","0a99fc1abc598f50aa7f9bb4ad0ed58f","1749199741958-wplc2viy5","1749215605031-e36tfrsg7","1749219734273-z8cjo614o","1750871992168-b7ljnr7fi","e3f276c739780f7f79e50905cb900155","468571bcf6944db390ebc215dedd3a55","1750915517060-2lf6nr65o","1750921637490-rkuee3750","836ef0c256afc6fe709014bea3d5e6ad","1750923656929-lbdstodh2","1750923703304-tf2lyglz8","7c737e9edc4b4f8df98af1cd19f6fe31","c468d847f518642666898a1c7a7d9c15","1750772552636-bxl1slj9a","1750772667419-ki0n6un0c","1748971995627-i4wduj6v0","1748971772605-2176ii4p8","a329b8732cc9083fdb55894a2d1814f7","5d3fa01a03251b27ec7c9d3683957fe1","1750416593902-e298ho4si","c669dd30c7c2f8f2bef3e71e48852bf3","cf443b86b4dcfd92f235965d83483763","1749215412677-039rqj55c","1750355588881-80dk1w9pa","1750923890061-3wcksdpjn","1750923927890-zrzidz9fz","d8708a72dd00581774cd3d3669962afd","f845253ebf432c9e990e460bbf8d6d51","fc7552c52eaee0ffc8787ad6d34a072c","75985e555769b03f5dc6e279a1155bc7","1750852072111-ojhw60q6y","f9b7b943a81ea4ba7eee39a6f7fc9669","fa3ab057f8e1f3ee3d5e34ef07b26059","015dd716a2fded1fc045c72c1a60575e","1750943651026-x1h1p2uu6","1750836891567-oqvkw626f","9f076c84ee0fb82e662195c7008d3cdd","1749051277025-x5jj8ymr3","1750248718038-bupg3zyvb","1750335451213-yitdeo8jv","43688588ddbdd3d97d95044707e01deb","1749047037557-ffbhn7w2e","1749047450809-2v3599neb","1749197693965-cumdt5ym3","d4f09e790d0a9952bcfda6d839fb50bf","1749036910052-j7dxek19b","1748976356629-5bgeyaaf1","1748973405272-q3zeztpki","1751015675617-b3820tu1x","999d65f7f770da796f88c8cbd3664f55","f847e3846984359dd853b3164ae2dee4","1750422829327-pz30oiqdx","1750770422364-iftjkyerp","0c8585859a567c3b2c67e877823f04e9","1750770941508-5f1wol4qg","1750770963924-f361ylu3o","1751015687797-rpcp0uwm8"],"timestamp":"2025-06-27T09:51:35.659Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-06-27T09:51:35.662Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:51:35.675Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:51:35.678Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:51:35.701Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:51:35.704Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:51:35.728Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:51:35.732Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:51:35.756Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:51:35.760Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:51:35.768Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:51:35.770Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:51:35.778Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:51:35.783Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:51:35.801Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:51:35.804Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:51:35.822Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:51:35.824Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:51:35.843Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:51:35.847Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:51:35.863Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:51:35.865Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:51:36.659Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T09:51:36.660Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T09:51:44.782Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T09:51:44.786Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-06-27T09:51:51.262Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-06-27T09:51:54.443Z"} +{"level":"info","message":"GET /api/chat/history?offset=116&limit=30","timestamp":"2025-06-27T09:51:54.463Z"} +{"count":30,"level":"info","limit":30,"message":"Returning message history for user 1","offset":116,"timestamp":"2025-06-27T09:51:54.472Z","total":146} +{"level":"info","message":"GET /api/dle","timestamp":"2025-06-27T09:52:03.049Z"} +{"level":"info","message":"GET /api/users/read-contacts-status","timestamp":"2025-06-27T09:52:04.631Z"} +{"level":"info","message":"GET /api/tags","timestamp":"2025-06-27T09:52:04.658Z"} +{"level":"info","message":"GET /api/users","timestamp":"2025-06-27T09:52:04.733Z"} +{"level":"info","message":"GET /api/users","timestamp":"2025-06-27T09:52:04.759Z"} +{"level":"info","message":"GET /api/messages/read-status","timestamp":"2025-06-27T09:52:04.771Z"} +{"level":"info","message":"GET /api/messages","timestamp":"2025-06-27T09:52:04.805Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:52:06.588Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:52:06.591Z"} +{"level":"info","message":"POST /api/users/mark-contact-read","timestamp":"2025-06-27T09:52:10.026Z"} +{"level":"info","message":"POST /api/messages/mark-read","timestamp":"2025-06-27T09:52:10.046Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:52:10.201Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:52:10.206Z"} +{"level":"info","message":"GET /api/users/143","timestamp":"2025-06-27T09:52:10.211Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:52:10.230Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:52:10.233Z"} +{"level":"info","message":"GET /api/messages/conversations?userId=143","timestamp":"2025-06-27T09:52:10.262Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:52:10.274Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:52:10.277Z"} +{"level":"info","message":"GET /api/messages?conversationId=26","timestamp":"2025-06-27T09:52:10.290Z"} +{"level":"info","message":"GET /api/users/143/tags","timestamp":"2025-06-27T09:52:10.336Z"} +{"level":"info","message":"GET /api/users/143","timestamp":"2025-06-27T09:52:11.766Z"} +{"level":"info","message":"DELETE /api/users/143","timestamp":"2025-06-27T09:52:13.206Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-06-27T09:52:13.250Z"} +{"level":"info","message":"GET /api/users/read-contacts-status","timestamp":"2025-06-27T09:52:14.915Z"} +{"level":"info","message":"GET /api/tags","timestamp":"2025-06-27T09:52:14.923Z"} +{"level":"info","message":"GET /api/users","timestamp":"2025-06-27T09:52:14.979Z"} +{"level":"info","message":"GET /api/users","timestamp":"2025-06-27T09:52:15.002Z"} +{"level":"info","message":"GET /api/messages/read-status","timestamp":"2025-06-27T09:52:15.009Z"} +{"level":"info","message":"GET /api/messages","timestamp":"2025-06-27T09:52:15.028Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:52:19.079Z"} +{"level":"info","message":"POST /api/users/mark-contact-read","timestamp":"2025-06-27T09:52:21.242Z"} +{"level":"info","message":"POST /api/messages/mark-read","timestamp":"2025-06-27T09:52:21.262Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T09:52:21.281Z"} +{"level":"info","message":"GET /api/users/144","timestamp":"2025-06-27T09:52:21.286Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:52:21.289Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:52:21.303Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:52:21.306Z"} +{"level":"info","message":"GET /api/messages/conversations?userId=144","timestamp":"2025-06-27T09:52:21.314Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T09:52:21.324Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T09:52:21.328Z"} +{"level":"info","message":"GET /api/messages?conversationId=27","timestamp":"2025-06-27T09:52:21.333Z"} +{"level":"info","message":"GET /api/users/144/tags","timestamp":"2025-06-27T09:52:21.352Z"} +{"level":"info","message":"GET /api/users/144","timestamp":"2025-06-27T09:52:34.437Z"} +{"level":"info","message":"DELETE /api/users/144","timestamp":"2025-06-27T09:52:35.667Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-06-27T09:52:35.704Z"} +{"level":"info","message":"GET /api/users/read-contacts-status","timestamp":"2025-06-27T09:52:38.325Z"} +{"level":"info","message":"GET /api/tags","timestamp":"2025-06-27T09:52:38.350Z"} +{"level":"info","message":"GET /api/users","timestamp":"2025-06-27T09:52:38.406Z"} +{"level":"info","message":"GET /api/users","timestamp":"2025-06-27T09:52:38.427Z"} +{"level":"info","message":"GET /api/messages/read-status","timestamp":"2025-06-27T09:52:38.434Z"} +{"level":"info","message":"GET /api/messages","timestamp":"2025-06-27T09:52:38.454Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:53:20.312Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-06-27T09:54:14.684Z"} +{"level":"info","message":"GET /api/settings/email-settings","timestamp":"2025-06-27T09:54:23.324Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:54:29.401Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:55:35.004Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:56:36.667Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:57:42.216Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:58:47.606Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T09:59:53.052Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:01:02.273Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:02:04.261Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:03:09.577Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:04:18.625Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.979Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T10:05:24.979Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.979Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.980Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.980Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.980Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.981Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.981Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.981Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.981Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.982Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.982Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.982Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.983Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.983Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.983Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T10:05:37.708Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T10:05:38.204Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T10:05:38.205Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:05:38.858Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:06:29.596Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:06:48.009Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:07:31.232Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T10:07:38.955Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:07:38.957Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:07:53.398Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:08:36.709Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:08:55.126Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:09:42.305Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:10:05.049Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:10:48.664Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:11:06.150Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:11:53.147Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:12:15.872Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.269Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.271Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.271Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.271Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.272Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.272Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.274Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.274Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.274Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.275Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:13:19.168Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:13:19.219Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:14:08.672Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:14:08.673Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:14:22.496Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:14:22.537Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:15:13.195Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:15:27.912Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:16:14.932Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:16:37.044Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:17:20.477Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:17:42.498Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:18:26.010Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:18:44.347Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:19:35.046Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:19:49.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.421Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.422Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.422Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:59.779Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:21:42.449Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:21:42.494Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:21:42.536Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:22:05.237Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:22:05.237Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:22:47.862Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:22:47.904Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:23:06.168Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:23:53.260Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:24:15.301Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:24:58.760Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:25:20.726Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:26:07.867Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:26:22.445Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.233Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.234Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.234Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.234Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.234Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.235Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.235Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.235Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.235Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:27:27.940Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:27:27.980Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:28:15.159Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:28:37.011Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:29:20.609Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.439Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.439Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.439Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.440Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.440Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:30:25.970Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:30:26.004Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:30:44.284Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-27T10:31:22.968Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:31:23.003Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:31:31.596Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-27T10:31:33.318Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:31:33.344Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-27T10:31:34.390Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:31:34.411Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:31:49.793Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T10:31:57.370Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:31:57.397Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:32:36.981Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:32:55.118Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T10:33:14.636Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:33:14.657Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T10:33:18.235Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:33:18.269Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:33:42.410Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:34:04.305Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:34:47.956Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:35:06.239Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:35:53.292Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:36:15.241Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:36:58.780Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:37:17.004Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:38:04.202Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:38:27.082Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:39:09.763Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:39:27.971Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.761Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.763Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.763Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.763Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.765Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:40:33.449Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:40:33.490Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:41:20.629Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:41:38.760Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:42:25.989Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:42:44.235Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:43:35.275Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:43:49.728Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:44:37.030Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:44:58.922Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:45:46.113Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:46:04.333Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:46:47.983Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:47:06.064Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:47:53.342Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.133Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:49:02.531Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:49:02.571Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:49:21.568Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:49:21.568Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:50:04.294Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:50:04.331Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:50:22.466Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T10:50:35.564Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:50:35.599Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T10:50:40.791Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:50:40.797Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:50:40.869Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:50:40.874Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T10:50:40.924Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T10:50:40.945Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:50:40.947Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:50:40.970Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:50:40.973Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:50:40.976Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T10:50:40.987Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T10:50:40.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:50:40.999Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:50:41.033Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:50:41.061Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:50:41.063Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T10:50:52.817Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T10:50:52.849Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:51:11.653Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:51:11.658Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:51:14.381Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:51:14.382Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:51:14.382Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:51:28.009Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:51:28.048Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:51:41.877Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:51:41.881Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T10:51:52.742Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T10:51:52.763Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T10:51:52.766Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T10:51:52.769Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T10:51:52.770Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T10:51:52.772Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T10:51:52.864Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T10:51:52.888Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T10:51:52.960Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T10:51:52.963Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T10:51:53.946Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T10:51:53.953Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T10:51:53.955Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T10:51:53.957Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T10:51:53.957Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T10:51:53.960Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T10:51:57.315Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T10:51:57.340Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T10:51:57.408Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T10:51:57.411Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T10:52:01.668Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T10:52:01.672Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:52:02.291Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T10:52:11.819Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T10:52:11.827Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T10:52:11.828Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T10:52:11.829Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T10:52:11.830Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T10:52:11.831Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T10:52:11.906Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T10:52:11.937Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T10:52:11.999Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T10:52:12.001Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:52:12.136Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:52:12.145Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T10:52:16.285Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T10:52:16.288Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:52:16.875Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:52:42.338Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:52:42.343Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:53:12.579Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:53:12.583Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:53:22.419Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:53:42.785Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:53:42.790Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:54:13.019Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:54:13.024Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T10:54:32.410Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T10:54:32.410Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:54:32.411Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:54:32.411Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:54:32.411Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T10:54:45.141Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T10:54:49.801Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T10:54:49.803Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:54:54.275Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:55:14.395Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:55:14.399Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:55:37.032Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:55:50.924Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:55:50.929Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:55:55.860Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:56:11.202Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:56:11.206Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:56:38.833Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:56:41.426Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:56:41.429Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:57:01.387Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:57:19.889Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:57:19.893Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:57:44.181Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:58:10.505Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:58:20.385Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:58:20.392Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:58:53.344Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:59:12.251Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T10:59:20.808Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T10:59:20.811Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T10:59:59.089Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:00:17.728Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:00:21.247Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:00:21.250Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.123Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T11:01:05.123Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.124Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.124Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.124Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.125Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.125Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.125Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.125Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T11:01:17.872Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:01:18.401Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:01:18.403Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:01:19.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:01:21.719Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:01:21.723Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:01:26.828Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:02:05.964Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:02:22.160Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:02:22.162Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:02:32.369Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:02:32.413Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:03:11.475Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:03:19.892Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:03:19.895Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:03:29.865Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:03:37.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:04:20.348Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:04:20.352Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:04:20.596Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:04:39.551Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:04:39.593Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.007Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.008Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.010Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.012Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.013Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.013Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.014Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.014Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.015Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.015Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:05:20.803Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:05:20.806Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:05:22.462Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:05:45.061Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:05:45.102Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:05:45.429Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:05:45.430Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:05:45.430Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T11:26:06.599Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T11:26:06.602Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T11:26:06.603Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T11:26:06.605Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T11:26:06.605Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T11:26:06.606Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T11:26:06.711Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T11:26:06.730Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T11:26:06.799Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T11:26:06.800Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:26:07.383Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:26:07.386Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T11:26:07.433Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:26:07.476Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:26:07.535Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:26:07.547Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T11:26:07.580Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T11:26:07.584Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:26:07.586Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:26:07.593Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:26:07.641Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:26:07.648Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:26:07.671Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T11:26:07.675Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T11:26:07.676Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:26:07.678Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:26:07.730Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:26:07.743Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:26:11.666Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T11:26:35.331Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:26:35.540Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:26:37.898Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:26:37.902Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-27T11:27:02.216Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:27:02.241Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T11:27:06.157Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:27:06.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:27:08.119Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:27:08.122Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:27:17.159Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:27:39.175Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:27:39.178Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:28:09.345Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:28:09.349Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:28:22.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:28:39.716Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:28:39.719Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:29:09.849Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:29:09.853Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:29:24.319Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:29:39.265Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:29:39.269Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:30:10.243Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:30:10.247Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:30:29.828Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:30:37.748Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:30:37.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:31:21.702Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:31:21.706Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:31:39.065Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:32:22.138Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:32:22.142Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:32:44.456Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T11:32:55.234Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T11:32:55.239Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T11:32:55.240Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T11:32:55.241Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T11:32:55.242Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T11:32:55.242Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T11:32:55.296Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T11:32:55.307Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T11:32:55.357Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T11:32:55.358Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:32:55.970Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:32:55.972Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:33:01.193Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T11:33:01.193Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:33:01.193Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:33:05.332Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:33:05.338Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:33:08.113Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:33:08.116Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T11:33:08.990Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:33:09.041Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T11:33:11.194Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:33:15.534Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:33:15.536Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:33:16.105Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-27T11:33:19.783Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:33:19.808Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T11:33:21.792Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:33:21.814Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:33:39.097Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:33:39.100Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:34:02.029Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:34:09.315Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:34:09.319Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T11:34:13.329Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T11:34:13.332Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T11:34:13.333Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T11:34:13.334Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T11:34:13.334Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T11:34:13.335Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T11:34:13.371Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T11:34:13.383Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T11:34:13.426Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T11:34:13.427Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:34:17.713Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:34:17.716Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:34:18.362Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:34:39.577Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:34:39.586Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T11:34:44.918Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:34:44.948Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:35:09.784Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:35:09.789Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:35:23.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:35:40.002Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:35:40.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:36:21.232Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:36:21.236Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:36:29.253Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:37:21.685Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:37:21.688Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:37:34.779Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:38:22.358Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:38:22.362Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.772Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T11:38:44.774Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.774Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.775Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.775Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.776Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.776Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T11:38:57.496Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:39:01.698Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:39:01.700Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:39:05.961Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:39:19.868Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:39:19.873Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:39:45.724Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:40:07.828Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:40:20.312Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:40:20.317Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.678Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T11:40:55.679Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.679Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.679Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.679Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.680Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T11:41:08.414Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:41:13.155Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:41:13.157Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-27T11:41:13.160Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:41:17.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:41:20.780Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:41:20.784Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:41:56.678Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T11:48:26.447Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T11:48:26.449Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T11:48:26.450Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T11:48:26.451Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T11:48:26.451Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T11:48:26.452Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T11:48:26.495Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T11:48:26.511Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T11:48:26.549Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T11:48:26.551Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:48:30.855Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:48:30.858Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:48:31.462Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T11:49:01.795Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:49:01.804Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:49:01.859Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:49:01.866Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T11:49:01.927Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:49:01.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:49:01.975Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T11:49:01.982Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:49:01.985Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T11:49:01.995Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T11:49:02.001Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:49:02.011Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:49:02.053Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:49:02.067Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:49:02.085Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:49:02.088Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T11:49:09.193Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T11:49:09.240Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:49:32.658Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:49:32.661Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:49:36.953Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:50:02.901Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:50:02.904Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:50:33.133Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:50:33.137Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:50:46.104Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:51:03.352Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:51:03.355Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:51:33.578Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:51:33.583Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.434Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T11:51:52.435Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.436Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.437Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.437Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.437Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:52:03.819Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:52:03.822Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T11:52:05.166Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:52:09.360Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:52:09.362Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:52:13.593Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:52:53.332Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:53:15.493Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:53:20.759Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:53:20.763Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:53:58.746Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:54:20.319Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:54:20.325Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:54:24.616Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:54:32.209Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:54:32.213Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:55:02.447Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:55:02.450Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:55:04.222Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:55:30.096Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:56:04.114Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:56:04.118Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.264Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T11:56:14.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T11:56:26.997Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T11:56:27.495Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T11:56:27.496Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:56:28.148Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:56:31.787Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:57:05.186Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:57:05.190Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:57:15.184Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:57:33.595Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.854Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.855Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.855Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.856Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.856Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.856Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:58:06.556Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:58:06.560Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:58:24.270Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:58:24.307Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:58:43.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:58:43.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:58:43.631Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T11:59:07.927Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T11:59:07.931Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:59:26.064Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:59:26.102Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:59:26.141Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:59:44.482Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T11:59:48.237Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:00:09.293Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:00:09.296Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:00:31.513Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-27T12:00:53.565Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:00:53.642Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.553Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.553Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.553Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.554Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.554Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.554Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:01:07.961Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:01:07.966Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:01:40.627Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:01:51.560Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:01:51.564Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:01:51.564Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:01:51.566Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:01:51.566Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:01:51.567Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:01:51.604Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:01:51.615Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:01:51.660Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:01:51.661Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:01:53.290Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:01:53.294Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:01:53.295Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:01:53.296Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:01:53.296Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:01:53.297Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:01:53.336Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:01:53.348Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:01:53.396Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:01:53.398Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:01:54.018Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:01:54.021Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:01:54.622Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:02:09.315Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:02:09.322Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:02:24.088Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:02:24.092Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:02:24.093Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:02:24.094Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:02:24.096Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:02:24.098Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:02:24.153Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:02:24.172Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:02:24.227Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:02:24.229Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:02:28.438Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:02:28.441Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:02:32.760Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:02:49.276Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:02:49.280Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:02:55.982Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:02:56.115Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:02:58.897Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:02:58.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:03:02.905Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:03:02.908Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:03:06.620Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:03:06.648Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-27T12:03:11.982Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:03:12.011Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T12:03:14.492Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:03:14.514Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-27T12:03:16.598Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:03:16.620Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:03:19.913Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:03:19.936Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:03:33.579Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:03:33.582Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:03:38.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:04:03.808Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:04:03.811Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:04:43.736Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:05:05.257Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:05:05.261Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:05:49.037Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:06:03.824Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:06:03.828Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:06:45.408Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:06:45.411Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:06:45.411Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:06:45.413Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:06:45.413Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:06:45.414Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:06:45.453Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:06:45.467Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:06:45.507Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:06:45.508Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:06:50.060Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:06:50.062Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:06:54.677Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:07:05.195Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:07:05.202Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:07:42.787Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:07:42.793Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:07:47.426Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:07:47.449Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:07:56.067Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:08:02.894Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:08:02.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:08:33.123Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:08:33.126Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:09:05.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:09:19.845Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:09:19.849Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:09:38.823Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:09:38.829Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:09:42.857Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:09:42.860Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:09:42.860Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:09:42.861Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:09:42.862Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:09:42.863Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:09:42.887Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:09:42.904Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:09:42.943Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:09:42.944Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:09:43.554Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:09:43.556Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:09:47.750Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:10:03.804Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:10:03.810Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:10:34.032Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:10:34.037Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:10:53.277Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:11:20.745Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:11:20.748Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:11:58.710Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:12:21.200Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:12:21.203Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:13:00.648Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:13:21.651Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:13:21.654Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:14:05.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:14:22.110Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:14:22.114Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:15:15.122Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:15:19.847Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:15:19.850Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:16:20.287Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:16:20.291Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:16:20.628Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:17:20.748Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:17:20.752Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:17:22.364Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:18:21.194Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:18:21.197Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:18:27.813Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:19:21.654Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:19:21.658Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:19:33.269Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:20:22.117Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:20:22.120Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:20:38.777Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:21:19.859Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:21:19.862Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:21:44.158Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:22:20.286Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:22:20.289Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:22:53.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:23:20.746Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:23:20.750Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:23:55.020Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:24:21.207Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:24:21.211Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:25:00.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:25:21.697Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:25:21.700Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:25:37.437Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:25:37.441Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:25:37.442Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:25:37.443Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:25:37.444Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:25:37.445Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:25:37.506Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:25:37.524Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:25:37.569Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:25:37.570Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:25:41.825Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:25:41.827Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:25:49.750Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T12:25:49.751Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:25:49.752Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T12:25:59.758Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:26:03.963Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:26:03.965Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:26:04.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:26:22.123Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:26:22.137Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:26:26.193Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:26:26.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:26:33.086Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:26:33.091Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:26:54.323Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:27:03.327Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:27:03.330Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:27:13.711Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:27:18.903Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:27:18.913Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T12:27:18.972Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:27:19.018Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:27:19.040Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:27:19.046Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:27:19.065Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:27:19.071Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:27:19.079Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:27:19.081Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:27:19.124Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:27:19.135Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:27:19.151Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:27:19.153Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:27:19.169Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:27:19.172Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:27:26.184Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:27:26.250Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:27:50.055Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:27:50.058Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:27:53.378Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:28:15.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:28:20.291Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:28:20.295Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:28:50.510Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:28:50.513Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:28:58.816Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:29:20.736Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:29:20.739Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:29:24.496Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:29:50.969Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:29:50.973Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:39:02.073Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:39:02.076Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:39:02.076Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:39:02.077Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:39:02.077Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:39:02.078Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:39:02.099Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:39:02.107Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:39:02.159Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:39:02.160Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:39:07.411Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T12:39:07.412Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T12:39:17.414Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:39:18.018Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:39:18.020Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:39:18.546Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:40:02.257Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:40:02.259Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:40:02.259Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:40:02.260Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:40:02.260Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:40:02.260Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:40:02.287Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:40:02.294Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:40:02.325Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:40:02.326Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:40:06.515Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:40:06.518Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:40:07.105Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:41:06.194Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:41:06.199Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:41:06.200Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:41:06.203Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:41:06.204Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:41:06.205Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:41:06.254Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:41:06.270Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:41:06.328Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:41:06.329Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:41:06.982Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:41:06.986Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:41:07.616Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:42:13.064Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:42:52.592Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:42:52.622Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T12:42:52.725Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:42:52.778Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:42:52.786Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:42:52.799Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:42:52.839Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:42:52.848Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:42:52.849Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:42:52.851Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:42:52.903Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:42:52.915Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:42:52.942Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:42:52.944Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:42:52.970Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:42:52.973Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-27T12:42:55.680Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:42:55.711Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T12:42:57.080Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:42:57.103Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-27T12:42:59.026Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:42:59.056Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:43:01.714Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:43:01.751Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:43:18.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:43:23.474Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:43:23.481Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:43:53.684Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:43:53.689Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:44:23.922Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:44:23.927Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:44:23.930Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:44:54.155Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:44:54.161Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:45:13.174Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:45:13.203Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:45:16.574Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:45:16.594Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:45:19.438Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:45:19.445Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:45:19.496Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:45:19.499Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T12:45:19.534Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:45:19.555Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:45:19.556Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:45:19.575Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:45:19.589Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:45:19.592Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:45:19.611Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:45:19.614Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:45:19.630Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:45:19.633Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:45:19.650Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:45:19.652Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:45:29.462Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:45:29.699Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:45:29.745Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:45:49.878Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:45:49.882Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T12:47:00.418Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T12:47:00.421Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T12:47:00.422Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T12:47:00.423Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T12:47:00.424Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T12:47:00.425Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T12:47:00.061Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T12:47:00.089Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T12:47:03.295Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T12:47:03.296Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:47:07.549Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:47:07.552Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:47:11.700Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:47:11.736Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:47:11.789Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T12:47:11.946Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:47:11.959Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:47:11.971Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:47:11.982Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:47:12.016Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:47:12.029Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:47:12.049Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:47:12.052Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:47:12.105Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:47:12.124Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:47:12.149Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:47:12.154Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:47:12.187Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:47:12.191Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:47:16.067Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:47:16.153Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:47:42.705Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:47:42.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:48:12.937Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:48:12.940Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:48:18.221Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T12:48:18.221Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:48:18.222Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:48:18.222Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T12:48:28.227Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:48:28.681Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:48:28.683Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:48:29.315Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:48:43.158Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:48:43.161Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:49:10.655Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:49:10.660Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:49:19.034Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:49:34.834Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:49:40.871Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:49:40.875Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:50:11.107Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:50:11.111Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.116Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T12:50:29.117Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.117Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.117Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.118Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.118Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T12:50:39.127Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:50:39.597Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:50:39.703Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T12:50:40.091Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T12:50:40.092Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-27T12:50:40.094Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:50:40.654Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:50:41.008Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:50:41.012Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:44.329Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:44.329Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:44.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:51:11.562Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:51:11.565Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:51:17.264Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:51:17.350Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:51:30.002Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:51:31.794Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:51:31.800Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T12:51:31.862Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:51:31.893Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:51:31.909Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:51:31.914Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T12:51:31.940Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:51:31.945Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T12:51:31.947Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:51:31.948Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:51:31.970Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:51:31.978Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:51:31.993Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:51:31.996Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:51:32.015Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:51:32.018Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:51:35.631Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:51:35.704Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:51:45.566Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:51:46.174Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:52:02.855Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:52:02.860Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-27T12:52:32.350Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:52:32.374Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:52:32.448Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:52:32.451Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T12:52:35.233Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:52:35.253Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-27T12:52:36.770Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:52:36.788Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T12:52:38.653Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T12:52:38.726Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:52:39.173Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-27T12:52:55.144Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:52:55.226Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.714Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.714Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.714Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.715Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.715Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.715Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:53:03.308Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:53:03.312Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:53:30.811Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:53:30.814Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:53:40.944Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-27T12:54:00.596Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:54:00.670Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:54:01.022Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:54:01.027Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:54:01.171Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:54:01.172Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:54:01.172Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:54:31.253Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:54:31.258Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:54:50.996Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:55:02.764Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:55:02.813Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:55:02.863Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:55:06.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:55:06.637Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:55:21.645Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:55:21.648Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:55:55.472Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:56:08.107Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:56:08.153Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:56:12.117Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:56:12.117Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:56:12.117Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:56:22.068Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:56:22.070Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:57:00.949Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:57:12.846Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:57:13.434Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:57:19.804Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:57:19.808Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:58:02.652Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:58:18.922Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:58:18.960Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:58:20.275Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:58:20.278Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.031Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.032Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.032Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.033Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.033Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.033Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:59:11.910Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T12:59:20.709Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T12:59:20.712Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:59:27.969Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T12:59:28.001Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:00:17.299Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T13:01:52.061Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T13:01:52.064Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T13:01:52.065Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T13:01:52.067Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T13:01:52.067Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T13:01:52.068Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T13:01:52.115Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T13:01:52.128Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T13:01:52.169Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T13:01:52.170Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:01:52.694Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:01:52.695Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:01:56.965Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:02:22.094Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:02:22.104Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:02:25.229Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:02:25.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:02:25.357Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:02:25.360Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:02:25.390Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:02:25.393Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:02:25.411Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:02:25.439Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:02:25.455Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:02:25.456Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:02:25.460Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:02:25.464Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:02:25.494Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:02:25.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:02:25.513Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:02:25.515Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:02:28.331Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:02:28.439Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:02:55.960Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:02:55.965Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:02:58.772Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T13:04:04.272Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T13:04:04.276Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T13:04:04.277Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T13:04:04.278Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T13:04:04.278Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T13:04:04.280Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T13:04:04.318Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T13:04:04.334Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T13:04:04.381Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T13:04:04.382Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:04:06.608Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:04:06.619Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:04:06.690Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:04:06.724Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:04:06.798Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:04:06.806Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:04:06.847Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:04:06.851Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:04:06.852Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:04:06.856Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:04:06.955Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:04:06.959Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:04:06.986Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:04:06.995Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:04:07.017Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:04:07.024Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:04:08.592Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:04:08.595Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:04:09.206Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-27T13:04:10.324Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:04:10.350Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T13:04:11.348Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:04:11.367Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-27T13:04:20.345Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:04:20.366Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:04:24.020Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:04:24.174Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:04:37.663Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:04:37.668Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:05:07.721Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:05:07.725Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:05:19.346Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:05:27.634Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:05:27.636Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:05:38.061Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:05:38.065Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:06:05.570Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:06:05.573Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:06:22.324Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:06:35.827Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:06:35.831Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:07:07.506Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:07:07.509Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:07:26.037Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:08:22.053Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:08:22.057Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:08:30.776Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:09:19.782Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:09:19.785Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:09:41.323Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:10:20.207Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:10:20.210Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:10:41.769Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:11:20.687Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:11:20.690Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:11:48.267Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:12:21.140Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:12:21.143Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:12:53.036Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T13:13:20.425Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T13:13:20.428Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T13:13:20.428Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T13:13:20.429Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T13:13:20.429Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T13:13:20.430Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T13:13:20.454Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T13:13:20.464Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T13:13:20.502Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T13:13:20.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:13:21.537Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:13:21.542Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:13:25.035Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:13:25.038Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:13:25.894Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T13:13:40.812Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T13:13:40.814Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T13:13:40.816Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T13:13:40.817Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T13:13:40.817Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T13:13:40.818Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T13:13:40.842Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T13:13:40.855Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T13:13:40.891Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T13:13:40.892Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:13:48.277Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:13:48.280Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T13:13:50.718Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T13:13:50.720Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T13:13:50.721Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T13:13:50.722Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T13:13:50.722Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T13:13:50.723Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T13:13:50.745Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T13:13:50.755Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T13:13:50.790Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T13:13:50.791Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:13:51.294Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:13:51.297Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:13:51.930Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:14:22.052Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:14:22.058Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:14:57.342Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:15:19.760Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:15:19.766Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:16:02.809Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:16:20.222Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:16:20.225Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:17:08.289Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:17:20.673Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:17:20.677Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:17:39.322Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:17:39.326Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:17:41.026Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:17:41.146Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:18:05.562Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:18:05.565Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:18:13.749Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:18:35.794Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:18:35.799Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T13:26:36.708Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T13:26:36.717Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T13:26:36.718Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T13:26:36.721Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T13:26:36.724Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T13:26:36.727Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T13:26:36.851Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T13:26:36.888Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T13:26:36.964Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T13:26:36.965Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:26:41.277Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:26:41.280Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T13:26:47.068Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T13:26:47.069Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:26:47.069Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T13:27:00.611Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:27:03.100Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:27:03.102Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T13:27:08.490Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T13:27:08.491Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:27:08.491Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T13:27:18.499Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:27:19.047Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:27:19.049Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:27:19.706Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:27:20.602Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:27:20.616Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:27:47.318Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:28:08.362Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:28:20.209Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:28:20.214Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:28:24.289Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:28:56.470Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:29:04.165Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:29:04.171Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:29:05.631Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:29:05.641Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:29:05.780Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:29:05.788Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:29:05.841Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:29:05.878Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:29:05.890Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:29:05.894Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:29:05.897Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:29:05.899Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:29:05.949Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:29:05.954Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:29:05.984Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:29:05.987Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:29:06.002Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:29:06.006Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:29:08.698Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:29:09.043Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:29:13.868Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:29:36.202Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:29:36.224Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:29:36.228Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:30:01.918Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:30:03.726Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:30:03.731Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:30:23.003Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:30:33.950Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:30:33.953Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:30:41.673Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:31:03.737Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:31:04.180Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:31:04.184Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:31:24.808Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:31:34.405Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:31:34.410Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:31:40.745Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:32:04.633Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:32:04.637Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:32:09.314Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:32:30.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:32:34.869Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:32:34.872Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:32:46.105Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:33:14.605Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:33:19.751Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:33:19.754Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:33:35.607Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:33:51.612Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:34:20.214Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:34:20.217Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:34:20.304Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:34:44.751Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:35:03.518Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:35:29.248Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:35:46.581Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:36:02.553Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:36:21.105Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:36:21.108Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.598Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.598Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.599Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.599Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.599Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.600Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.600Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.602Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.602Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.602Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.602Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.604Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.604Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.604Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.605Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.605Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.605Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.605Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.606Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:36:55.768Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:36:55.809Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:37:14.361Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:37:40.094Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:37:57.483Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T13:38:28.522Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T13:38:28.526Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T13:38:28.527Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T13:38:28.528Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T13:38:28.529Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T13:38:28.530Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T13:38:28.560Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T13:38:28.574Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T13:38:28.616Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T13:38:28.617Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:38:29.276Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:38:29.279Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:38:29.864Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:39:19.755Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:39:19.761Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:39:39.007Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:40:20.205Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:40:20.209Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:40:40.835Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:41:20.653Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:41:20.656Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:41:49.934Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:42:21.102Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:42:21.105Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:42:55.427Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:43:21.561Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:43:21.565Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:43:59.694Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:44:22.018Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:44:22.021Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:45:02.637Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:45:02.992Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:45:02.997Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:45:05.065Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:45:05.068Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T13:45:49.369Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T13:45:49.372Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T13:45:49.372Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T13:45:49.373Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T13:45:49.374Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T13:45:49.374Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T13:45:49.405Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T13:45:49.425Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T13:45:49.477Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T13:45:49.478Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:45:52.539Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:45:52.543Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:45:57.999Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:46:29.479Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:46:29.492Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:46:29.545Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:46:29.571Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:46:29.642Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:46:29.651Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:46:29.684Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:46:29.689Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:46:29.698Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:46:29.699Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:46:29.736Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:46:29.740Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:46:29.768Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:46:29.771Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:46:29.790Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:46:29.793Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:46:38.760Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:46:38.952Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:47:02.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:47:00.186Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:47:00.191Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:47:30.108Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:47:30.206Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:47:30.505Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:47:30.509Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:48:03.992Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:48:33.212Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:48:33.216Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:48:33.284Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:48:33.286Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:48:33.324Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:48:33.356Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:48:33.357Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:48:33.376Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:48:33.394Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:48:33.399Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:48:33.425Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:48:33.430Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:48:33.468Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:48:33.473Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:48:33.498Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:48:33.502Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-27T13:48:48.329Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:48:48.354Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T13:48:50.784Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:48:50.805Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:49:04.160Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:49:04.169Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:49:09.506Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T13:49:33.285Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T13:49:33.288Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T13:49:33.289Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T13:49:33.291Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T13:49:33.292Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T13:49:33.293Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T13:49:33.331Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T13:49:33.348Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T13:49:33.400Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T13:49:33.401Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T13:49:34.004Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T13:49:34.006Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:49:34.602Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:50:04.639Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:50:04.648Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:50:34.844Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:50:34.850Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:50:43.725Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:51:03.211Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:51:03.218Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:51:03.270Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:51:03.275Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:51:03.307Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:51:03.347Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:51:03.351Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:51:03.380Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:51:03.386Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:51:03.390Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:51:03.412Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:51:03.413Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:51:03.427Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:51:03.466Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:51:03.493Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:51:03.499Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:51:17.328Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:51:17.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:51:34.382Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:51:34.385Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:51:45.554Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:52:04.776Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:52:04.780Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:52:34.828Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:52:34.832Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:52:51.013Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:53:05.305Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:53:05.309Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:53:28.851Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:53:28.855Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:53:28.910Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:53:28.913Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:53:28.949Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:53:28.974Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:53:28.975Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:53:29.003Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:53:29.016Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:53:29.020Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:53:29.037Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:53:29.039Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:53:29.057Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:53:29.060Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:53:29.080Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:53:29.084Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:53:56.499Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:54:00.035Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:54:00.039Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:55:01.901Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:55:49.773Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:55:49.779Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:55:49.827Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:55:49.831Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T13:55:49.869Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:55:49.905Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T13:55:49.919Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:55:49.925Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:55:49.927Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T13:55:49.928Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:55:49.950Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:55:49.953Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:55:49.973Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:55:49.976Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:55:49.993Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:55:49.995Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-27T13:55:53.265Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:55:53.287Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T13:55:55.804Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:55:55.826Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-27T13:55:57.932Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:55:57.951Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:55:59.701Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:55:59.837Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:56:07.340Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:56:21.085Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:56:21.088Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:56:48.590Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:56:48.594Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:57:06.099Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:57:06.208Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:57:16.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:57:18.813Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:57:18.817Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:57:49.047Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:57:49.051Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:58:19.267Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:58:19.271Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:58:21.900Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:58:27.492Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:58:30.637Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:58:48.630Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:58:48.634Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:59:18.872Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:59:18.877Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T13:59:20.541Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T13:59:20.654Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T13:59:23.740Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T13:59:49.954Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T13:59:49.957Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:00:20.172Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:00:20.176Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:00:29.200Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:00:50.402Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:00:50.405Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:01:20.626Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:01:20.629Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:01:34.621Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:02:22.010Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:02:22.013Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:02:43.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:03:19.724Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:03:19.727Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T14:12:44.626Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T14:12:44.629Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T14:12:44.630Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T14:12:44.632Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T14:12:44.632Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T14:12:44.633Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T14:12:44.683Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T14:12:44.698Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T14:12:44.761Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T14:12:44.762Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:12:45.324Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:12:45.330Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:12:45.938Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:13:51.432Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:01.454Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T14:15:01.454Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:01.454Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:01.455Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:01.455Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:15:11.411Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:15:11.426Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T14:15:11.455Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T14:15:11.474Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:15:11.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:15:11.557Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:15:11.566Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:15:11.589Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:15:11.595Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:15:11.602Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:15:11.603Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:15:11.653Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:15:11.671Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:15:11.685Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:15:11.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:15:11.703Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:15:11.706Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:16.661Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T14:15:16.662Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T14:15:28.462Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:15:28.745Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T14:15:29.349Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:15:29.880Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:15:29.882Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:15:30.418Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:15:42.571Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:15:42.574Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:16:01.421Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:16:01.426Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:16:01.451Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:16:01.456Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:16:01.492Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:16:01.497Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:16:01.541Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:16:01.551Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T14:16:01.563Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:16:01.568Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:16:01.587Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:16:01.594Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:16:01.594Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:16:01.596Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:16:01.633Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:16:01.637Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:16:06.621Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:16:32.065Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:16:32.069Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:16:35.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:16:59.573Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:16:59.576Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T14:17:06.836Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T14:17:06.840Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T14:17:06.841Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T14:17:06.843Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T14:17:06.844Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T14:17:06.845Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T14:17:06.884Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T14:17:06.903Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T14:17:06.960Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T14:17:06.962Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:17:11.311Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:17:11.314Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:17:15.577Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:17:29.806Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:17:29.811Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T14:17:38.352Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T14:17:38.356Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T14:17:38.357Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T14:17:38.360Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T14:17:38.361Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T14:17:38.363Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T14:17:38.397Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T14:17:38.420Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T14:17:38.470Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T14:17:38.472Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:17:42.702Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:17:42.704Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:17:43.248Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:18:00.026Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:18:00.030Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:18:30.247Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:18:30.251Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:18:48.679Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:19:00.470Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:19:00.475Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:19:30.697Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:19:30.701Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:19:54.092Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:20:00.913Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:20:00.916Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:20:59.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:21:02.305Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:21:02.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:21:37.097Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:21:37.102Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T14:21:38.515Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:21:38.692Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:22:01.828Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:22:01.831Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:22:05.122Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:22:32.054Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:22:32.058Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:23:14.266Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:23:20.624Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:23:20.628Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:24:19.723Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:24:21.079Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:24:21.083Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:25:21.535Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:25:21.538Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:25:25.236Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T14:25:53.674Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T14:25:53.677Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T14:25:53.678Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T14:25:53.679Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T14:25:53.681Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T14:25:53.682Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T14:25:53.707Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T14:25:53.724Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T14:25:53.769Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T14:25:53.770Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:25:54.417Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:25:54.420Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:25:54.980Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:26:22.096Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:26:22.100Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T14:27:17.800Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T14:27:17.803Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T14:27:17.803Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T14:27:17.804Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T14:27:17.804Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T14:27:17.805Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T14:27:17.825Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T14:27:17.833Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T14:27:17.861Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T14:27:17.862Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:27:18.482Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:27:18.484Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:27:19.091Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:27:19.711Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:27:19.715Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:27:27.916Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:27:27.923Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:27:27.955Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:27:27.958Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:27:27.978Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:27:27.980Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:27:28.005Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:27:28.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:27:28.010Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:27:28.012Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:27:28.035Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:27:28.038Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:27:28.054Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T14:27:28.056Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:27:28.058Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:27:28.059Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T14:27:30.437Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:27:30.496Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:27:59.077Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:27:59.080Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:28:26.572Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:28:26.575Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:28:31.880Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T14:28:31.880Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:28:31.881Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:28:31.881Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T14:28:42.454Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T14:28:42.457Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T14:28:42.457Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T14:28:42.458Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T14:28:42.458Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T14:28:42.458Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T14:28:42.482Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T14:28:42.489Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T14:28:42.517Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T14:28:42.518Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:28:43.070Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:28:43.072Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:28:43.687Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:28:56.812Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:28:56.816Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T14:29:04.110Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T14:29:04.112Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T14:29:04.113Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T14:29:04.113Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T14:29:04.114Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T14:29:04.114Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T14:29:04.132Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T14:29:04.139Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T14:29:04.166Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T14:29:04.167Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:29:07.319Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:29:07.324Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:29:07.354Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:29:07.357Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T14:29:07.365Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:29:07.366Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:29:07.381Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:29:07.382Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:29:07.383Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:29:07.384Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:29:07.409Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:29:07.415Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:29:07.427Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:29:07.429Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:29:07.439Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:29:07.440Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:29:08.439Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:29:08.441Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T14:29:09.624Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:29:09.642Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:29:12.807Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:29:37.999Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:29:38.002Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:30:05.498Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:30:05.501Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:30:19.113Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T14:30:19.113Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:30:19.113Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:30:19.114Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T14:30:29.122Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:30:34.342Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T14:30:34.343Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:30:35.726Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:30:35.728Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T14:30:47.070Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:30:47.607Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:30:47.610Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:30:48.226Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:31:05.961Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:31:05.964Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:31:23.644Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:31:36.182Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:31:36.185Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:31:53.703Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:32:06.411Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:32:06.414Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:32:29.343Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:32:36.644Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:32:36.650Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:32:59.257Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:33:06.862Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:33:06.865Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.475Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.476Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.477Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.477Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.477Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.478Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.478Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-27T14:38:32.704Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-27T14:38:32.709Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-27T14:38:32.710Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-27T14:38:32.712Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-27T14:38:32.713Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-27T14:38:32.715Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-27T14:38:32.777Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-27T14:38:32.797Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-27T14:38:32.868Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-27T14:38:32.869Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:38:33.426Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:38:33.428Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:38:34.072Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:39:12.381Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:39:12.396Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:39:42.433Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:39:42.441Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:39:43.240Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:39:43.571Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:39:43.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:39:43.628Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:39:43.631Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-27T14:39:43.656Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:39:43.662Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:39:43.694Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-27T14:39:43.695Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:39:43.702Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:39:43.707Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:39:43.744Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:39:43.771Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:39:43.776Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:39:43.796Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:39:43.803Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-27T14:39:43.808Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T14:39:47.489Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:39:47.522Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:40:14.656Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:40:14.659Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:40:44.883Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:40:44.887Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:40:48.710Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:41:15.050Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:41:15.054Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:41:45.332Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:41:45.335Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:41:50.451Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:42:15.552Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:42:15.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:42:45.784Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:42:45.788Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:42:55.940Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:43:21.513Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:43:21.518Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:44:01.369Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:44:21.972Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:44:21.975Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.344Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-27T14:45:11.345Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.345Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.345Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.345Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.346Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.346Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.346Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.346Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:45:19.692Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:45:19.695Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-27T14:45:21.346Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:45:21.806Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:45:21.808Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:45:22.276Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:46:15.885Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:46:20.157Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:46:20.161Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:46:27.886Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:47:20.593Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:47:20.596Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:47:21.328Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:47:33.250Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:48:21.044Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:48:21.047Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:48:26.794Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:48:45.253Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:49:08.173Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:49:08.178Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:49:15.305Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:49:15.306Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T14:49:16.068Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:49:16.092Z"} +{"level":"info","message":"POST /api/cloudflare/tunnel-token","timestamp":"2025-06-27T14:49:18.238Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:49:18.334Z"} +{"level":"info","message":"POST /api/cloudflare/install","timestamp":"2025-06-27T14:49:19.900Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-27T14:49:19.924Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:49:32.592Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:49:43.508Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:49:43.513Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:49:44.295Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:50:13.744Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:50:13.748Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:50:34.113Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:50:43.977Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:50:43.980Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:50:49.765Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:51:19.686Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:51:19.690Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.102Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-27T14:51:44.102Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.102Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.105Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.105Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-27T14:51:54.108Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-27T14:51:55.074Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-27T14:51:55.076Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-27T14:51:55.078Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:52:02.043Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:52:02.043Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:52:02.043Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:52:20.155Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:52:20.159Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:52:45.001Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:53:07.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:53:07.899Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:53:07.900Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:53:20.593Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:53:20.599Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:53:50.563Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:53:50.607Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:53:50.652Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:54:09.394Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:54:09.434Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:54:21.042Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:54:21.045Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:54:59.561Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:55:14.747Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:55:14.779Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-27T14:55:21.498Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-27T14:55:21.502Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-27T14:56:01.346Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T07:07:57.323Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T07:07:57.325Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T07:07:57.326Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T07:07:57.327Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T07:07:57.328Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T07:07:57.329Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T07:07:57.382Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T07:07:57.398Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T07:07:57.479Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T07:07:57.481Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:08:00.980Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:08:00.982Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:08:02.125Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:09:11.545Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T07:09:11.546Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:09:11.547Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:09:11.548Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T07:09:21.550Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:09:26.254Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:09:26.256Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:09:31.227Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:10:12.877Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:10:32.925Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:11:21.935Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:11:42.043Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:12:27.243Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:12:43.765Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:13:29.220Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.440Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T07:13:53.441Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.441Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.444Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.444Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T07:14:06.171Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:14:07.240Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:14:07.241Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:14:12.122Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:14:34.631Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:14:54.569Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:15:00.201Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:15:00.213Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:15:00.252Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:15:00.258Z"} +{"level":"info","message":"POST /api/chat/process-guest","timestamp":"2025-06-28T07:15:00.304Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1751094899734-c2aklrk3w","timestamp":"2025-06-28T07:15:00.308Z"} +{"level":"info","message":"Created mapping for guest ID 1751094899734-c2aklrk3w to user 1","timestamp":"2025-06-28T07:15:00.336Z"} +{"level":"info","message":"No guest messages found for guest ID 1751094899734-c2aklrk3w","timestamp":"2025-06-28T07:15:00.343Z"} +{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID 1751094899734-c2aklrk3w","timestamp":"2025-06-28T07:15:00.349Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:15:00.360Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:15:00.366Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:15:00.368Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:15:00.370Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:15:00.411Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:15:00.422Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:15:00.440Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:15:00.442Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:15:00.459Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:15:00.462Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-06-28T07:15:01.751Z"} +{"level":"info","message":"GET /api/chat/history?offset=116&limit=30","timestamp":"2025-06-28T07:15:01.785Z"} +{"count":30,"level":"info","limit":30,"message":"Returning message history for user 1","offset":116,"timestamp":"2025-06-28T07:15:01.794Z","total":146} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T07:15:10.606Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:15:10.611Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.956Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.956Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.957Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.957Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.957Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:15:30.605Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:15:30.611Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:15:43.729Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:15:43.784Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:15:59.969Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:16:00.928Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:16:00.932Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:16:19.359Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:16:31.489Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:16:31.493Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:16:45.484Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:17:01.384Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:17:01.389Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:17:09.230Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:17:24.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:17:31.582Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:17:31.586Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:17:54.545Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:18:01.859Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:18:01.863Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:18:14.816Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:18:30.850Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:18:32.054Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:18:32.058Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:18:56.456Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:19:02.326Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:19:02.332Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:19:16.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:19:32.481Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:19:32.486Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:19:39.347Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:20:01.913Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:20:02.738Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:20:02.743Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.259Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.261Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.261Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.261Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:20:44.977Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:20:45.071Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:21:01.350Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:21:01.353Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:21:07.084Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:21:27.923Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:21:50.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:22:02.914Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:22:02.919Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:22:16.516Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:22:36.744Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:22:55.976Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:23:04.128Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:23:04.132Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:23:18.113Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:23:41.768Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.635Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.635Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.635Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.637Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.637Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.637Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:24:05.493Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:24:05.496Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:27.823Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:48.007Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:25:03.260Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:25:03.354Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:25:03.449Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:25:03.542Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:25:06.847Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:25:06.852Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:25:32.852Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:25:54.160Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:26:08.226Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:26:08.231Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:26:12.187Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.704Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.705Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:26:54.827Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:26:54.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:27:09.677Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:27:09.683Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:27:17.725Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:27:43.812Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:28:04.182Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:28:08.246Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:28:08.251Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.760Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.761Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.761Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.761Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.762Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:28:45.597Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:28:45.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:29:00.730Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:29:00.736Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:29:09.446Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:29:24.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:29:31.592Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:29:31.597Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:29:51.043Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:30:02.752Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:30:02.759Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:30:11.319Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:30:32.048Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:30:32.053Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:30:34.119Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.607Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.607Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.608Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.608Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.608Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.608Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.609Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:31:02.258Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:31:02.263Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:31:16.263Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:31:16.318Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:31:32.540Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:31:32.546Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:31:39.395Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:32:05.653Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:32:10.050Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:32:10.053Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:32:22.160Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:32:41.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:33:10.505Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:33:10.509Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:33:11.051Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:33:31.181Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:33:41.957Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:33:41.961Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:33:45.167Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:33:45.170Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:33:45.256Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:33:45.262Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T07:33:45.327Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:33:45.354Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:33:45.355Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:33:45.380Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:33:45.403Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:33:45.408Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:33:45.428Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:33:45.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:33:45.453Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:33:45.459Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:33:45.481Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:33:45.486Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.828Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.829Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:34:16.502Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:34:16.506Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:34:16.960Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:34:37.021Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:34:37.115Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:34:37.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:34:46.718Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:34:46.722Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:34:52.049Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:35:16.915Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:35:16.920Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:35:21.738Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:35:38.575Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:35:44.414Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:35:44.418Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:35:57.746Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:36:14.667Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:36:14.671Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:36:27.304Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:36:44.862Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:36:44.866Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:36:47.712Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:37:02.853Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:37:33.043Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:37:53.319Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:38:08.246Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:38:10.059Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:38:10.064Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.896Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:38:58.855Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:38:58.949Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:39:10.521Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:39:10.524Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:39:14.042Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:39:43.890Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:40:00.266Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:40:08.263Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:40:08.266Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:40:19.591Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:40:45.519Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:41:08.750Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:41:08.754Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.860Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.860Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.861Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.861Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.861Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.861Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.862Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:41:28.702Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:41:28.795Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:41:51.557Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:42:05.740Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:42:05.746Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:42:11.121Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:42:11.263Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:42:11.265Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:42:11.336Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:42:11.339Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T07:42:11.381Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:42:11.413Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:42:11.422Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:42:11.426Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:42:11.427Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:42:11.428Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:42:11.456Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:42:11.460Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:42:11.478Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:42:11.480Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:42:11.499Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:42:11.504Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T07:42:15.575Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T07:42:15.580Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T07:42:15.581Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T07:42:15.582Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T07:42:15.582Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T07:42:15.584Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T07:42:15.625Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T07:42:15.652Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T07:42:15.712Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T07:42:15.714Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:42:16.710Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:42:16.713Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:42:24.729Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T07:42:24.729Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:42:24.730Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T07:42:34.730Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:42:39.347Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:42:39.350Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:42:42.134Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:42:42.143Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:42:44.064Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T07:42:59.464Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T07:42:59.467Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T07:42:59.468Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T07:42:59.469Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T07:42:59.471Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T07:42:59.473Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T07:42:59.507Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T07:42:59.532Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T07:42:59.572Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T07:42:59.573Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T07:43:02.321Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:43:02.326Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:43:04.455Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:43:04.458Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:43:05.676Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:43:12.357Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:43:12.362Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:43:20.647Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:43:20.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:43:20.714Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:43:20.721Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T07:43:20.760Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:43:20.810Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:43:20.826Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:43:20.828Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:43:20.835Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:43:20.840Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:43:20.908Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:43:20.912Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:43:20.934Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:43:20.942Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:43:20.966Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:43:20.972Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:43:51.169Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:43:51.173Z"} +{"level":"info","message":"POST /api/cloudflare/auto-setup","timestamp":"2025-06-28T07:43:51.280Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:44:11.178Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:44:21.960Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:44:21.965Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:44:51.631Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:44:51.637Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:45:16.581Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:45:21.836Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:45:21.841Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:45:52.633Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:45:52.638Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:46:22.173Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:46:22.899Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:46:22.904Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:47:08.739Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:47:08.742Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.631Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T07:47:31.632Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.632Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.632Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.633Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.633Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.633Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T07:47:41.641Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:47:46.123Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:47:46.125Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:47:53.283Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:48:09.238Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:48:09.241Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:48:33.048Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:48:55.666Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:48:58.269Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T07:48:58.276Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:49:09.606Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:49:09.610Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:49:22.217Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:49:22.225Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T07:49:30.678Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:49:30.720Z"} +{"level":"info","message":"POST /api/cloudflare/auto-setup","timestamp":"2025-06-28T07:49:33.801Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.624Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T07:49:42.625Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.625Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.625Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.625Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.626Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:49:51.743Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:49:51.747Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T07:49:52.626Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:50:00.744Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:50:00.746Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T07:50:00.749Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:50:00.774Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:50:00.775Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:50:00.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:50:21.991Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:50:21.997Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:50:44.098Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:50:44.192Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:50:52.199Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:50:52.204Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:51:07.439Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:51:07.474Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:51:49.362Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:51:53.595Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:51:53.601Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T07:52:11.683Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:52:12.620Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T07:52:38.674Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T07:52:38.677Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T07:52:38.678Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T07:52:38.679Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T07:52:38.680Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T07:52:38.681Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T07:52:38.706Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T07:52:38.720Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T07:52:38.766Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T07:52:38.767Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:52:46.218Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:52:46.221Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:52:51.193Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:52:54.995Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:52:55.001Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:53:10.325Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:53:10.338Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T07:53:10.442Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:53:10.513Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:53:10.519Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:53:10.537Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:53:10.577Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:53:10.583Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:53:10.584Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:53:10.589Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:53:10.663Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:53:10.666Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:53:10.688Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:53:10.692Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:53:10.710Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:53:10.713Z"} +{"level":"info","message":"POST /api/cloudflare/auto-setup","timestamp":"2025-06-28T07:53:13.187Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:53:43.073Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:53:43.078Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:53:56.553Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T07:53:59.166Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T07:53:59.169Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T07:53:59.169Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T07:53:59.170Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T07:53:59.171Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T07:53:59.172Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T07:53:59.195Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T07:53:59.208Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T07:53:59.250Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T07:53:59.251Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:54:04.052Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:54:04.057Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:54:05.283Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:54:11.209Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:54:11.225Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:54:13.324Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:54:13.329Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:54:13.430Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:54:13.435Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T07:54:13.490Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:54:13.551Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:54:13.568Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:54:13.572Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:54:13.573Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:54:13.589Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:54:13.708Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:54:13.712Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:54:13.749Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:54:13.758Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:54:13.850Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:54:13.860Z"} +{"level":"info","message":"POST /api/cloudflare/auto-setup","timestamp":"2025-06-28T07:54:15.638Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:54:44.904Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:54:44.920Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:55:10.063Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:55:15.102Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:55:15.105Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:55:45.334Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:55:45.336Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:56:15.571Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:56:15.575Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T07:56:18.666Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T07:56:18.668Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T07:56:18.668Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T07:56:18.669Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T07:56:18.670Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T07:56:18.670Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T07:56:18.692Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T07:56:18.703Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T07:56:18.737Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T07:56:18.739Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:56:22.971Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:56:22.975Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:56:27.319Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:56:39.625Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:56:39.639Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T07:56:39.683Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T07:56:39.716Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:56:39.732Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:56:39.739Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T07:56:39.761Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:56:39.769Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:56:39.777Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T07:56:39.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:56:39.848Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:56:39.867Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:56:39.919Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:56:39.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:56:40.087Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:56:40.089Z"} +{"level":"info","message":"POST /api/cloudflare/auto-setup","timestamp":"2025-06-28T07:56:41.706Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:57:10.527Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:57:10.531Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:57:32.655Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:57:40.746Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:57:40.749Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T07:57:50.488Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T07:57:50.491Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T07:57:50.491Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T07:57:50.492Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T07:57:50.493Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T07:57:50.494Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T07:57:50.515Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T07:57:50.528Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T07:57:50.565Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T07:57:50.567Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:57:54.765Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:57:54.768Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:57:55.470Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:58:08.264Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:58:08.269Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:58:38.469Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:58:38.475Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:59:04.537Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:59:08.704Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:59:08.708Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T07:59:18.553Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T07:59:18.555Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T07:59:18.555Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T07:59:18.556Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T07:59:18.557Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T07:59:18.558Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T07:59:18.578Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T07:59:18.589Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T07:59:18.626Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T07:59:18.627Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T07:59:19.241Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T07:59:19.242Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T07:59:19.849Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T07:59:38.932Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T07:59:38.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:00:09.156Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:00:09.160Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:00:25.277Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:00:39.388Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:00:39.393Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:01:09.601Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:01:09.604Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:01:24.179Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:01:24.185Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:01:24.214Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:01:24.218Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:01:24.253Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:01:24.277Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:01:24.280Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:01:24.301Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:01:24.312Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:01:24.317Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:01:24.320Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:01:24.322Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:01:24.358Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:01:24.374Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:01:24.430Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:01:24.432Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:01:35.317Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T08:01:35.318Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:01:35.318Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:01:35.318Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:01:35.319Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T08:01:45.321Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:01:49.518Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:01:49.520Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:01:50.099Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:01:55.422Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:01:55.426Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:02:08.651Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:02:08.654Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:02:08.655Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:02:08.656Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:02:08.657Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:02:08.658Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:02:08.692Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:02:08.709Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:02:08.758Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:02:08.760Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:02:09.313Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:02:09.316Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:02:10.915Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:02:10.919Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:02:13.548Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:02:25.645Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:02:25.649Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:02:55.874Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:02:55.877Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:03:15.320Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:03:26.096Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:03:26.099Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:03:47.481Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:03:47.483Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:03:47.483Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:03:47.484Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:03:47.485Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:03:47.485Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:03:47.505Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:03:47.516Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:03:47.553Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:03:47.554Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:03:48.100Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:03:48.102Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:03:48.672Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:03:54.238Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:03:54.244Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:03:54.300Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:03:54.339Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:03:54.352Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:03:54.358Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:03:54.385Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:03:54.397Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:03:54.411Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:03:54.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:03:54.463Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:03:54.475Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:03:54.524Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:03:54.527Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:03:54.544Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:03:54.547Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T08:03:56.521Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:03:57.898Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:04:25.636Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:04:25.639Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:04:54.100Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:04:55.864Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:04:55.868Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:05:26.083Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:05:26.086Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:05:34.907Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:05:34.909Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:05:34.910Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:05:34.911Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:05:34.911Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:05:34.912Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:05:34.931Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:05:34.940Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:05:34.981Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:05:34.982Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:05:40.226Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T08:05:40.227Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:05:50.030Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:05:50.032Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:05:50.033Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:05:50.034Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:05:50.034Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:05:50.035Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:05:50.056Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:05:50.069Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:05:50.115Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:05:50.116Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:05:50.665Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:05:50.667Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:05:51.243Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:05:54.824Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:05:54.831Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:05:54.882Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:05:54.944Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:05:54.957Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:05:54.962Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:05:54.990Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:05:54.994Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:05:54.995Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:05:54.997Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:05:55.092Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:05:55.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:05:55.114Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:05:55.117Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:05:55.136Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:05:55.139Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T08:05:57.374Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:05:58.844Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:06:25.631Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:06:25.635Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:06:55.860Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:06:55.863Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:06:56.736Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:07:23.366Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:07:23.369Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:07:53.590Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:07:53.594Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:08:02.221Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:08:23.808Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:08:23.813Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:08:47.414Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:08:47.416Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:08:47.417Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:08:47.418Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:08:47.419Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:08:47.420Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:08:47.440Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:08:47.453Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:08:47.490Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:08:47.491Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:08:48.090Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:08:48.092Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:08:48.659Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:08:54.043Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:08:54.049Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:09:06.414Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:09:06.418Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:09:06.457Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:09:06.463Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:09:06.491Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:09:06.529Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:09:06.533Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:09:06.542Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:09:06.546Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:09:06.547Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:09:06.593Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:09:06.605Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:09:06.623Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:09:06.626Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:09:06.671Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:09:06.673Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T08:09:08.708Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:09:10.093Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:09:34.341Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:09:34.344Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:09:58.767Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T08:09:58.767Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:09:58.768Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:09:58.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:10:04.577Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:10:04.580Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T08:10:11.493Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:10:16.710Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T08:10:16.711Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T08:10:26.713Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:10:27.240Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:10:27.242Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:10:27.805Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:10:34.799Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:10:34.802Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:11:03.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:11:05.022Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:11:05.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:11:35.266Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:11:35.268Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:11:37.046Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:12:05.474Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:12:05.478Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.658Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.659Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.659Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.659Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.659Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:12:35.695Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:12:35.698Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:12:42.395Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:12:42.428Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:13:09.609Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:13:09.612Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:13:10.467Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:13:44.218Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:14:10.055Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:14:10.058Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:14:16.045Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:14:49.714Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:15:10.515Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:15:10.518Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:15:21.427Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:15:58.784Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:16:08.236Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:16:08.239Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:16:30.492Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:17:04.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:17:08.680Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:17:08.683Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:17:36.207Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:18:06.081Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:18:09.137Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:18:09.140Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:18:41.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:19:09.586Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:19:09.589Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:19:11.532Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:19:43.252Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:20:09.161Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:20:09.164Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:20:09.164Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:20:09.166Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:20:09.166Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:20:09.167Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:20:09.189Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:20:09.207Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:20:09.249Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:20:09.250Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:20:09.852Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:20:09.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:20:10.052Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:20:10.057Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:20:10.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:20:47.811Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:20:47.817Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:20:50.071Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:20:50.074Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:20:50.124Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:20:50.127Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:20:50.163Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:20:50.197Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:20:50.212Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:20:50.214Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:20:50.215Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:20:50.218Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:20:50.279Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:20:50.282Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:20:50.329Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:20:50.331Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:20:50.346Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:20:50.351Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T08:20:52.821Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:20:53.701Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:21:19.658Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:21:20.587Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:21:20.591Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:21:50.812Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:21:50.815Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:22:21.035Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:22:21.039Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:22:21.439Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:22:51.262Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:22:51.265Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:23:21.498Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:23:21.501Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:23:26.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:23:51.729Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:23:51.733Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:24:19.223Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:24:19.227Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:24:32.240Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:25:09.596Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:25:09.599Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:25:41.511Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:25:50.199Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:25:50.203Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:26:02.751Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:26:02.754Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:26:02.754Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:26:02.755Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:26:02.755Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:26:02.756Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:26:02.777Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:26:02.787Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:26:02.822Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:26:02.823Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:26:06.627Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:26:06.631Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:26:08.068Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T08:26:08.068Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T08:26:18.071Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:26:20.129Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:26:20.133Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:26:22.266Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:26:22.268Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:26:22.901Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:26:50.352Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:26:50.355Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:27:28.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:27:51.724Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:27:51.728Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:28:37.448Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:28:53.097Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:28:53.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:29:21.479Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:29:21.482Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:29:39.300Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:29:51.705Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:29:51.707Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:30:44.792Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:30:50.359Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:30:50.362Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:31:50.233Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:31:51.731Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:31:51.735Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:32:53.109Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:32:53.112Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:32:59.312Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:33:20.565Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:33:20.570Z"} +{"level":"info","message":"Executing UP migration from 042_create_cloudflare_settings.sql...","timestamp":"2025-06-28T08:33:34.129Z"} +{"level":"info","message":"Migration 042_create_cloudflare_settings.sql executed successfully","timestamp":"2025-06-28T08:33:34.143Z"} +{"level":"info","message":"Function link_guest_messages.sql executed successfully","timestamp":"2025-06-28T08:33:34.165Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:33:50.759Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:33:50.763Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:33:52.593Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:33:52.597Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:33:52.643Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:33:52.646Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:33:52.691Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:33:52.725Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:33:52.734Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:33:52.739Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:33:52.740Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:33:52.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:33:52.802Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:33:52.806Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:33:52.836Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:33:52.841Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:33:52.860Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:33:52.864Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:34:04.853Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:34:23.165Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:34:23.170Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:34:53.999Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:34:54.002Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:35:10.222Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:35:24.224Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:35:24.228Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:35:53.734Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:35:53.739Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:36:15.693Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:36:24.684Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:36:24.689Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:36:52.188Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:36:52.192Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:37:17.419Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:38:01.110Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:38:01.115Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:38:07.012Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:38:07.014Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:38:07.015Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:38:07.016Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:38:07.016Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:38:07.017Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:38:07.040Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:38:07.053Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:38:07.091Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:38:07.092Z"} +{"level":"info","message":"GET /api/tags","timestamp":"2025-06-28T08:38:07.728Z"} +{"level":"info","message":"GET /api/users/read-contacts-status","timestamp":"2025-06-28T08:38:07.734Z"} +{"level":"info","message":"GET /api/users","timestamp":"2025-06-28T08:38:07.772Z"} +{"level":"info","message":"GET /api/users","timestamp":"2025-06-28T08:38:07.796Z"} +{"level":"info","message":"GET /api/messages/read-status","timestamp":"2025-06-28T08:38:07.817Z"} +{"level":"info","message":"GET /api/messages","timestamp":"2025-06-28T08:38:07.841Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:38:11.334Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:38:11.337Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-06-28T08:38:12.474Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:38:15.663Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:38:19.939Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:38:19.963Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:38:22.139Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:38:22.143Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:38:41.005Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:38:41.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:38:53.076Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:38:53.080Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:38:58.700Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:38:58.702Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:38:58.702Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:38:58.703Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:38:58.704Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:38:58.704Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:38:58.726Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:38:58.738Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:38:58.783Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:38:58.784Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:39:03.069Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:39:03.073Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:39:06.935Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:39:06.937Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:39:06.938Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:39:06.938Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:39:06.939Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:39:06.939Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:39:06.959Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:39:06.972Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:39:07.016Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:39:07.017Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:39:07.587Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:39:07.589Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:39:08.197Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:39:23.340Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:39:23.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:39:52.832Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:39:52.837Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:40:13.625Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T08:40:20.760Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:40:20.784Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:40:23.036Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:40:23.040Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T08:40:27.964Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T08:40:27.987Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:40:28.824Z"} +{"level":"info","message":"POST /api/cloudflare/account-id","timestamp":"2025-06-28T08:40:34.915Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:40:34.936Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T08:40:37.341Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:40:37.673Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:40:53.289Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:40:53.293Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:23.711Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T08:41:23.711Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:23.712Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:23.712Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:23.712Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:41:24.237Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:41:24.242Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T08:41:33.715Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:38.935Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T08:41:38.936Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T08:41:51.659Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:41:52.248Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:41:52.249Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:41:54.456Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:41:54.461Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:41:56.462Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:42:24.554Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:42:24.679Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:42:24.682Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:02.937Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:02.937Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:02.937Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:02.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:43:09.582Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:43:09.585Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:34.613Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:44:03.925Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:44:03.969Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:44:04.014Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:44:10.027Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:44:10.030Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:44:39.056Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:45:10.484Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:45:10.487Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:45:12.893Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:45:45.537Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:45:45.538Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:45:45.538Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:45:45.538Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:46:08.210Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:46:08.214Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:46:14.761Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:46:14.803Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:46:46.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:47:08.661Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:47:08.665Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:47:24.707Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:47:24.708Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:47:24.708Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:47:51.959Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:47:52.005Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:48:09.109Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:48:09.112Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:48:29.244Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:48:57.348Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:49:09.562Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:49:09.565Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:49:31.026Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:50:02.630Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:50:10.020Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:50:10.023Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.091Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.093Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:51:10.481Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:51:10.484Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:51:11.942Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:51:11.985Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:51:42.000Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:52:08.201Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:52:08.204Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:52:13.653Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:52:51.134Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:53:08.663Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:53:08.667Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:53:19.094Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:53:56.549Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:54:09.109Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:54:09.112Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:54:24.557Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:54:58.297Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:55:09.564Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:55:09.567Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.594Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.594Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.594Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.595Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.595Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.595Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:56:03.896Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:56:03.942Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:56:10.024Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:56:10.028Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:56:35.736Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:56:35.740Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T08:56:38.705Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:56:39.143Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:56:40.919Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:56:52.366Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:56:52.369Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:57:13.801Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:57:13.802Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:57:13.802Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:57:23.311Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:57:23.314Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:57:44.933Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:57:44.935Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:57:44.935Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:57:44.936Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:57:44.937Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:57:44.938Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:57:44.958Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:57:44.970Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:57:45.010Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:57:45.011Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:57:45.615Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:57:45.617Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:57:46.315Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:57:52.821Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:57:52.827Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:57:55.014Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:57:55.019Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:57:55.060Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:57:55.066Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:57:55.121Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:57:55.157Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:57:55.162Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:57:55.174Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:57:55.177Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:57:55.178Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:57:55.223Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:57:55.228Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:57:55.260Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:57:55.290Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:57:55.305Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:57:55.308Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T08:57:58.604Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:58:00.961Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:58:25.592Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:58:25.596Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:58:51.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:58:55.818Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:58:55.822Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T08:59:26.903Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T08:59:26.906Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T08:59:26.907Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T08:59:26.907Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T08:59:26.908Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T08:59:26.909Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T08:59:26.928Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T08:59:26.939Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T08:59:26.975Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T08:59:26.976Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:59:32.185Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T08:59:32.185Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:59:38.562Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:59:38.571Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:59:38.600Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:59:38.617Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:59:38.624Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T08:59:38.650Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T08:59:38.655Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:59:38.660Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:59:38.685Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:59:38.691Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:59:38.717Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T08:59:38.717Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:59:38.723Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:59:38.788Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T08:59:38.805Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T08:59:38.808Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T08:59:40.940Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T08:59:42.186Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T08:59:42.707Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T08:59:42.710Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T08:59:43.370Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T08:59:43.399Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:00:09.102Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:00:09.106Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:00:34.233Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:00:34.236Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:00:34.236Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:00:34.238Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:00:34.239Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:00:34.240Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:00:34.280Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:00:34.299Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:00:34.346Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:00:34.347Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:00:34.870Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:00:34.872Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:00:39.164Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:00:39.347Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:00:39.352Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:00:46.821Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:00:46.830Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:00:46.878Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:00:46.883Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:00:46.906Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:00:46.946Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:00:46.949Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:00:46.968Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:00:46.976Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T09:00:46.985Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:00:46.997Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:00:46.998Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:00:47.049Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:00:47.063Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:00:47.114Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:00:47.117Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:00:49.444Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:00:55.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:01:17.814Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:01:17.818Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:01:40.973Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:02:10.550Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:02:10.553Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:02:10.554Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:02:10.555Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:02:10.556Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:02:10.557Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:02:10.609Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:02:10.637Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:02:10.727Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:02:10.731Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:02:11.277Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:02:11.279Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:02:11.837Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:02:18.277Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:02:18.284Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:02:29.702Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:02:29.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:02:29.752Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:02:29.757Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:02:29.791Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:02:29.794Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T09:02:29.815Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:02:29.841Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:02:29.842Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:02:29.881Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:02:29.902Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:02:29.907Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:02:29.932Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:02:29.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:02:29.960Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:02:29.963Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:02:34.632Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:02:37.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:03:00.426Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:03:00.430Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:03:21.932Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T09:03:21.933Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:03:21.933Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:03:21.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:03:30.630Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:03:30.634Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T09:03:31.933Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:03:36.174Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:03:36.176Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:03:39.493Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:04:00.863Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:04:00.867Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:04:22.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:04:31.097Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:04:31.101Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:04:48.601Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:05:01.317Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:05:01.322Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:05:31.543Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:05:31.546Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:05:31.900Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:05:54.075Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:06:01.768Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:06:01.772Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:06:33.659Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:06:55.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:07:03.152Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:07:03.155Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:07:42.831Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:08:04.515Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:08:04.519Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:08:05.060Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:08:48.317Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:09:03.157Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:09:03.161Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:09:06.852Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:09:49.619Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:09:49.622Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:09:49.622Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:09:49.623Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:09:49.624Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:09:49.624Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:09:49.644Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:09:49.654Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:09:49.692Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:09:49.693Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:09:53.981Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:09:53.983Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:09:58.272Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:10:04.529Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:10:04.534Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:11:01.393Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:11:07.149Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:11:07.155Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:12:05.568Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:12:07.266Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:12:07.270Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:13:08.634Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:13:08.639Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:13:14.562Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:13:29.910Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:13:29.912Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:13:29.913Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:13:29.914Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:13:29.915Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:13:29.916Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:13:29.938Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:13:29.947Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:13:29.985Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:13:29.987Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:13:30.565Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:13:30.567Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:13:34.910Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:13:39.729Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:13:39.732Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:13:39.732Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:13:39.733Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:13:39.734Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:13:39.735Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:13:39.756Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:13:39.769Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:13:39.811Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:13:39.812Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:13:44.059Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:13:44.062Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:13:44.671Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:13:49.233Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:13:49.239Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:13:54.299Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:13:54.308Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:13:54.346Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:13:54.355Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:13:54.407Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:13:54.448Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:13:54.450Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:13:54.485Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:13:54.491Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T09:13:54.501Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:13:54.511Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:13:54.512Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:13:54.560Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:13:54.580Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:13:54.642Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:13:54.644Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:13:57.475Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:14:03.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:14:25.592Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:14:25.595Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:14:50.128Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:14:55.816Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:14:55.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:15:26.043Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:15:26.046Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:15:56.269Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:15:56.274Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:15:59.212Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:16:26.503Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:16:26.506Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:16:50.977Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:16:50.982Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:16:50.983Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:16:50.984Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:16:50.985Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:16:50.986Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:16:51.039Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:16:51.057Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:16:51.096Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:16:51.098Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:16:51.639Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:16:51.641Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:16:56.740Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:16:56.748Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:16:56.842Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T09:16:56.843Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:16:56.843Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T09:17:06.843Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:17:07.392Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:17:07.395Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:17:08.312Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:17:08.322Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T09:17:08.371Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:17:08.403Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:17:08.418Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:17:08.423Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:17:08.445Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:17:08.449Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:17:08.451Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:17:08.455Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:17:08.510Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:17:08.514Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:17:08.564Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:17:08.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:17:08.586Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:17:08.589Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:17:10.623Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:17:12.585Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T09:17:12.585Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:17:12.585Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:17:13.192Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T09:17:25.315Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:17:25.748Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:17:25.750Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:17:26.424Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:17:38.883Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:17:38.888Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:17:57.738Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:18:09.381Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:18:09.384Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:18:09.384Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:18:09.386Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:18:09.386Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:18:09.387Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:18:09.412Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:18:09.426Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:18:09.468Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:18:09.469Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:18:13.697Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:18:13.699Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:18:14.233Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:18:27.638Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:18:27.653Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:18:27.688Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:18:27.696Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T09:18:27.700Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:18:27.706Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:18:27.736Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:18:27.736Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:18:27.739Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:18:27.751Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:18:27.795Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:18:27.811Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:18:27.874Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:18:27.876Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:18:27.900Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:18:27.903Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T09:18:30.460Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T09:18:30.484Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:18:31.444Z"} +{"level":"info","message":"POST /api/cloudflare/account-id","timestamp":"2025-06-28T09:18:37.629Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:18:37.651Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:18:40.532Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:18:43.242Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:18:58.563Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:18:58.567Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:19:19.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:19:28.780Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:19:28.783Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:19:56.282Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:19:56.286Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:20:25.207Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:20:26.512Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:20:26.515Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:20:56.722Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:20:56.725Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:21:26.963Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:21:26.966Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.300Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T09:21:35.301Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.301Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.302Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.302Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.303Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T09:21:48.033Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:21:52.151Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:21:52.152Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:21:56.460Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:21:57.178Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:21:57.181Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:22:39.739Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:22:58.179Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:22:58.551Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:22:58.554Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:23:45.245Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:23:59.927Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:23:59.930Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.280Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T09:24:08.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.281Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.281Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.281Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.281Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.282Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T09:24:18.286Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:24:18.836Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:24:18.837Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:24:25.886Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:24:31.298Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:24:31.302Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:24:31.302Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:24:31.304Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:24:31.304Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:24:31.305Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:24:31.333Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:24:31.350Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:24:31.400Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:24:31.401Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:24:32.038Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:24:32.041Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:37.229Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T09:24:37.230Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:37.230Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T09:24:47.236Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:52.450Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T09:24:52.450Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:25:01.302Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:25:01.308Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T09:25:05.157Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:25:09.310Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:25:09.311Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:25:13.607Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:25:42.684Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:25:42.684Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:25:42.685Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:26:02.661Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:26:02.667Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:26:19.984Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:27:09.189Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:27:09.192Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:27:09.194Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:27:09.196Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:27:09.196Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:27:09.198Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:27:09.226Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:27:09.243Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:27:09.296Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:27:09.297Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:27:13.540Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:27:13.543Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:27:17.721Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:28:02.689Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:28:02.697Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:28:23.254Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:29:04.056Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:29:04.060Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:29:28.748Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:30:05.426Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:30:05.430Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:30:34.207Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:31:06.796Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:31:06.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:31:30.453Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:31:30.461Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:31:31.836Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:31:31.840Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:31:31.899Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:31:31.902Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:31:31.928Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:31:31.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:31:31.960Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:31:31.968Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:31:31.988Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:31:31.989Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:31:32.035Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:31:32.048Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T09:31:32.059Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:31:32.077Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:31:32.081Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:31:32.107Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:31:39.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:32:02.666Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:32:02.671Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:32:30.155Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:32:30.157Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:32:41.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:33:00.383Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:33:00.387Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:33:30.609Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:33:30.612Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:33:50.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:34:00.842Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:34:00.847Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:34:12.718Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:34:12.720Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:34:12.720Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:34:12.721Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:34:12.722Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:34:12.722Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:34:12.741Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:34:12.754Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:34:12.792Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:34:12.793Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:34:13.370Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:34:13.372Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:34:17.716Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:34:31.075Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:34:31.081Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:35:01.295Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:35:01.301Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:35:19.459Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:36:02.662Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:36:02.666Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:36:28.562Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:36:31.986Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:36:31.989Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:37:02.204Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:37:02.207Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:37:30.420Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:38:03.580Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:38:03.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:38:30.343Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:38:30.347Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:38:35.846Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T09:38:57.129Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T09:38:57.154Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:38:58.145Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:38:59.986Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:38:59.989Z"} +{"level":"info","message":"POST /api/cloudflare/account-id","timestamp":"2025-06-28T09:39:01.717Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:39:01.744Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:39:06.522Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:39:06.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:39:30.617Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:39:30.620Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:39:44.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:40:00.844Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:40:00.847Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:40:45.627Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:40:45.632Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:40:46.647Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:40:50.516Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:40:50.535Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:41:00.899Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:41:00.904Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:41:31.514Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:41:31.518Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:41:52.160Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:42:01.742Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:42:01.750Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:42:31.976Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:42:31.980Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:42:57.590Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:43:02.200Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:43:02.203Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:43:30.652Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:43:30.654Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:43:30.655Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:43:30.656Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:43:30.656Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:43:30.657Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:43:30.675Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:43:30.687Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:43:30.724Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:43:30.725Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:43:31.287Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:43:31.289Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:43:35.628Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:43:42.029Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:43:42.031Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:43:42.032Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:43:42.033Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:43:42.034Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:43:42.035Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:43:42.057Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:43:42.067Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:43:42.104Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:43:42.104Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:43:47.304Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T09:43:47.304Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T09:43:57.312Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:43:57.776Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:43:57.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:44:03.576Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:44:03.581Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:44:05.713Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T09:44:05.714Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:44:05.714Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T09:44:15.715Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:44:20.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:44:43.545Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:44:43.550Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:44:46.101Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:44:46.104Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:44:46.150Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:44:46.156Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T09:44:46.190Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:44:46.221Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:44:46.236Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:44:46.238Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:44:46.239Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:44:46.241Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:44:46.298Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:44:46.303Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:44:46.322Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:44:46.326Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:44:46.342Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:44:46.344Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:45:11.199Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:45:16.865Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:45:16.868Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:45:47.089Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:45:47.096Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:46:16.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:46:17.318Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:46:17.322Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T09:46:40.649Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T09:46:40.673Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:46:41.834Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:46:47.233Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:46:47.237Z"} +{"level":"info","message":"POST /api/cloudflare/account-id","timestamp":"2025-06-28T09:46:48.364Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:46:48.383Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:47:02.937Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:47:04.185Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:47:17.415Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:47:17.417Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T09:47:17.419Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:47:17.757Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:47:17.761Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:47:18.075Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:47:18.112Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:47:18.149Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:47:45.263Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:47:45.267Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:48:15.491Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:48:15.495Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T09:48:27.008Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:48:27.089Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:48:27.562Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:48:27.562Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:48:27.563Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:48:27.563Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:48:49.834Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:48:49.840Z"} +{"level":"info","message":"Executing UP migration from 043_create_cloudflare_settings.sql...","timestamp":"2025-06-28T09:49:06.522Z"} +{"level":"info","message":"Migration 043_create_cloudflare_settings.sql executed successfully","timestamp":"2025-06-28T09:49:06.533Z"} +{"level":"info","message":"Function link_guest_messages.sql executed successfully","timestamp":"2025-06-28T09:49:06.544Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:49:15.944Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:49:15.948Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:49:29.024Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:49:29.065Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:49:46.168Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:49:46.171Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:50:20.857Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:50:20.862Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:50:23.990Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:50:24.851Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:50:33.813Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:50:34.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:50:46.613Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:50:46.616Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:51:16.846Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:51:16.851Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:51:43.530Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:51:43.569Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:51:47.069Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:51:47.072Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:52:48.456Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:52:48.460Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T09:52:48.845Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:52:48.917Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.402Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.402Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:53:47.092Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:53:47.097Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:53:54.484Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:53:54.526Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:53:54.841Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:53:54.842Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:53:55.135Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:53:55.136Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:53:55.183Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:53:55.186Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T09:53:55.225Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T09:53:55.242Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:53:55.245Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:53:55.252Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:53:55.261Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:53:55.266Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:53:55.270Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T09:53:55.271Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:53:55.287Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:53:55.296Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:53:55.314Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:53:55.317Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T09:53:59.144Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T09:53:59.162Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:54:00.175Z"} +{"level":"info","message":"POST /api/cloudflare/account-id","timestamp":"2025-06-28T09:54:03.942Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:54:03.964Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T09:54:17.616Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T09:54:23.520Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:54:25.510Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:54:25.513Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:54:55.764Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:54:55.768Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:54:56.224Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:54:56.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:55:23.270Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:55:23.273Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:55:53.505Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:55:53.508Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:56:01.689Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:56:01.727Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:56:23.724Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:56:23.727Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:56:53.961Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:56:53.972Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:57:06.537Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:57:07.112Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:57:24.183Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:57:24.186Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:58:08.163Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:58:08.167Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:58:16.289Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:58:16.327Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T09:59:08.612Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T09:59:08.616Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T09:59:21.618Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:59:21.709Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.164Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.164Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.165Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.165Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.165Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.166Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.166Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.166Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.167Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.167Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T09:59:40.986Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T09:59:40.989Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T09:59:40.989Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T09:59:40.990Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T09:59:40.990Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T09:59:40.991Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T09:59:41.016Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T09:59:41.027Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T09:59:41.070Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T09:59:41.071Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T09:59:45.290Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T09:59:45.292Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T09:59:45.863Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:00:09.086Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:00:09.095Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:00:51.373Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:01:09.516Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:01:09.520Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:01:56.901Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:02:09.975Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:02:09.980Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:03:02.273Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:03:10.430Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:03:10.434Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:04:07.708Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:04:08.152Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:04:08.155Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:05:08.599Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:05:08.603Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:05:19.656Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:06:09.070Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:06:09.075Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:06:25.041Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:07:09.510Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:07:09.513Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:07:30.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:08:09.964Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:08:09.967Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:08:29.532Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:09:10.423Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:09:10.427Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:09:35.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:10:08.149Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:10:08.153Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:10:40.549Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:11:08.685Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:11:08.690Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:11:45.856Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:12:09.051Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:12:09.056Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.665Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T10:12:58.665Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.666Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.666Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.666Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.666Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.667Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.667Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.667Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.670Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T10:13:08.676Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T10:13:09.200Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T10:13:09.201Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:13:09.507Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:13:09.510Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:13:13.553Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:04.149Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T10:14:04.150Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:04.150Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:04.150Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:14:09.959Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:14:09.962Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T10:14:12.886Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:14:12.889Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:14:12.936Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:14:12.938Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T10:14:12.962Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:14:12.971Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:14:12.990Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:14:12.993Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T10:14:13.008Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T10:14:13.009Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:14:13.058Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:14:13.072Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T10:14:13.077Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:14:13.095Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:14:13.098Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T10:14:13.111Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T10:14:14.150Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T10:14:15.179Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T10:14:15.181Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T10:14:15.184Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:19.346Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:19.347Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:19.347Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T10:14:25.465Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T10:14:25.488Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T10:14:26.744Z"} +{"level":"info","message":"POST /api/cloudflare/account-id","timestamp":"2025-06-28T10:14:30.052Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T10:14:30.075Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:14:43.274Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:14:43.277Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T10:14:53.692Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T10:14:56.967Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:15:02.245Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:15:02.277Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:15:14.087Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:15:14.089Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:15:25.286Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:15:25.286Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:15:25.287Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:15:44.309Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:15:44.312Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:16:07.822Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:16:07.860Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:16:07.899Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:16:14.536Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:16:14.538Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:16:26.759Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:16:26.802Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:16:30.796Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:16:30.797Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:16:30.797Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:16:44.764Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:16:44.767Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:17:12.265Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:17:12.269Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:17:19.534Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:17:36.216Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:17:36.217Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:17:36.217Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:17:42.481Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:17:42.486Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:18:25.111Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:18:25.148Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:18:25.185Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:18:41.292Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:18:41.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:18:43.856Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:18:43.860Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:19:30.452Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:19:42.471Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:19:43.057Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:19:45.224Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:19:45.227Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:20:13.628Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:20:13.632Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.910Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.910Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.910Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.911Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:20:43.838Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:20:43.841Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:20:48.592Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:20:48.632Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:20:48.671Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:52.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:52.630Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:21:41.438Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:21:45.216Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:21:45.218Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:21:57.540Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:21:57.619Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:21:58.059Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:21:58.059Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:21:58.060Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:22:40.483Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:22:46.592Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:22:46.595Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:23:03.484Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:23:03.484Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:23:03.485Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:23:28.026Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:23:28.030Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:23:42.482Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:23:42.486Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:23:45.933Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:23:45.969Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:23:46.002Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:24:04.967Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:24:05.010Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:24:12.722Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:24:12.725Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:24:51.343Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:25:09.493Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:25:09.496Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:25:10.277Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:25:10.310Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.427Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.428Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.428Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.428Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.429Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.429Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:25:44.274Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:25:44.278Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:26:04.180Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:26:13.618Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:26:13.621Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:26:20.401Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:26:20.401Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:26:43.847Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:26:43.852Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:27:02.437Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:27:02.471Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:27:02.506Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:27:02.539Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:27:21.180Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:27:21.211Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:27:45.230Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:27:45.233Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:28:14.243Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:28:30.402Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:28:30.438Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:28:46.587Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:28:46.591Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:29:19.690Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:29:24.783Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:29:24.787Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:29:32.211Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:29:32.250Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.278Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.280Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:29:42.476Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:29:42.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:30:12.712Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:30:12.715Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:30:18.679Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:30:41.195Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:30:41.277Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:30:41.718Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:30:41.718Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:30:41.719Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:31:01.075Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:31:01.079Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T10:31:06.325Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:31:06.327Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:31:06.379Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:31:06.382Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T10:31:06.427Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:31:06.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:31:06.448Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:31:06.451Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T10:31:06.458Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T10:31:06.462Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T10:31:06.463Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T10:31:06.465Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:31:06.481Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:31:06.486Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:31:06.504Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:31:06.509Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:31:23.989Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:31:36.969Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:31:36.972Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:31:43.090Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:31:43.127Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:31:47.139Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:31:47.140Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:31:47.140Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:32:07.196Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:32:07.200Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:32:29.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:32:37.420Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:32:37.424Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:32:52.205Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:32:52.243Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:32:52.655Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:32:52.656Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:32:52.656Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:33:07.648Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:33:07.651Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:33:35.032Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:33:35.151Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:33:35.154Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:33:57.540Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:33:57.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:33:58.057Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:33:58.058Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:33:58.058Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:34:05.377Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:34:05.380Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:34:35.596Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:34:35.600Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:34:40.504Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:35:02.950Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:35:03.035Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:35:03.566Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:35:03.566Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:35:03.567Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:35:05.576Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:35:05.579Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T10:35:07.983Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T10:35:08.006Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T10:35:09.229Z"} +{"level":"info","message":"POST /api/cloudflare/account-id","timestamp":"2025-06-28T10:35:14.249Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T10:35:14.269Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T10:35:30.852Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T10:35:34.203Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:35:35.791Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:35:35.794Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:35:53.301Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:36:06.281Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:36:06.284Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:36:09.040Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:36:09.040Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:36:36.518Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:36:36.521Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:36:51.525Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:36:51.563Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:36:51.601Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:36:51.639Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:37:06.736Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:37:06.739Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:37:10.368Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:37:10.406Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:38:03.244Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:38:08.103Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:38:08.107Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:38:19.338Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:38:19.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.935Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:39:08.771Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:39:09.486Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:39:09.489Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:39:25.388Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:39:25.388Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:39:25.389Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:40:07.910Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:40:07.951Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:40:07.992Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:40:08.122Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:40:08.125Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:40:26.707Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:40:26.744Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:40:30.843Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:40:30.843Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:40:30.844Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:41:08.583Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:41:08.586Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:41:19.678Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:41:35.688Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:41:35.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:41:36.314Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:41:36.314Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:41:36.314Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:42:09.033Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:42:09.036Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:42:18.644Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:42:37.646Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:42:37.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:43:09.491Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:43:09.494Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T10:43:46.542Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T10:43:46.549Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T10:43:46.551Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T10:43:46.552Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T10:43:46.553Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T10:43:46.554Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T10:43:46.609Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T10:43:46.633Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T10:43:46.727Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T10:43:46.730Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T10:43:51.010Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T10:43:51.012Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:43:55.288Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:44:09.957Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:44:09.964Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:45:01.667Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T10:45:01.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:45:01.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:45:01.669Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:45:10.396Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:45:10.401Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T10:45:14.399Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:45:19.605Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T10:45:19.606Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T10:45:29.609Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T10:45:30.149Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T10:45:30.150Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:45:30.773Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:46:07.133Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:46:07.133Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:46:07.134Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:46:08.121Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:46:08.126Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:46:36.196Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:46:36.228Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:47:08.062Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:47:08.640Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:47:08.647Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:47:46.283Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:47:46.283Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:47:46.284Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:48:09.032Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:48:09.036Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:48:17.073Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:48:17.105Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:48:50.785Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:48:57.038Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:48:57.046Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T10:48:58.485Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:48:58.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:48:58.524Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:48:58.527Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T10:48:58.551Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:48:58.564Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:48:58.585Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:48:58.589Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T10:48:58.596Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T10:48:58.597Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:48:58.641Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:48:58.654Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T10:48:58.656Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:48:58.674Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:48:58.678Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T10:48:58.689Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:49:18.837Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:49:29.628Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:49:29.633Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:49:57.119Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:49:57.123Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:49:57.143Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:49:57.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:49:57.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:49:57.145Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:50:24.358Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:50:24.390Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:50:27.358Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:50:27.361Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:50:57.572Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:50:57.576Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:50:58.081Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:51:27.805Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:51:27.810Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:51:34.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:51:34.404Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:51:34.404Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:51:58.044Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:51:58.047Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:52:03.576Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:52:03.617Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:52:28.259Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:52:28.261Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:52:35.215Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:52:58.481Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:52:58.484Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:53:13.566Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:53:13.567Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:53:13.567Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:53:28.711Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:53:28.714Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:53:40.759Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:53:40.802Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:54:09.016Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:54:09.020Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:54:14.405Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:54:49.904Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:55:09.472Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:55:09.476Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:55:19.958Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:55:51.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:56:09.922Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:56:09.927Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:56:28.994Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.721Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:57:10.385Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:57:10.389Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:57:30.819Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:57:30.856Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:58:02.539Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:58:08.121Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:58:08.125Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:58:36.267Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:59:08.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T10:59:08.561Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T10:59:08.564Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T10:59:41.696Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:00:09.023Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:00:09.029Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:00:13.391Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:00:47.212Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:01:18.451Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:01:18.458Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:01:18.459Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:01:18.460Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:01:18.461Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:01:18.462Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:01:18.507Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:01:18.524Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:01:18.594Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:01:18.595Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:01:22.882Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:01:22.885Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:01:30.811Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T11:01:30.811Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:01:30.812Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T11:01:40.814Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:01:41.394Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:01:41.396Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:01:42.068Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:02:09.956Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:02:09.962Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:02:35.362Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:02:47.521Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:03:10.404Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:03:10.408Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.765Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T11:03:41.766Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.766Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.766Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.767Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.767Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T11:03:51.775Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:03:56.463Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:03:56.465Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T11:03:56.466Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:56.986Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:56.987Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:56.987Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:04:08.118Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:04:08.122Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:05:06.810Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:05:06.825Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:05:06.826Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:05:06.828Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:05:06.829Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:05:06.830Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:05:06.908Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:05:06.933Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:05:07.012Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:05:07.014Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:05:08.598Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:05:08.605Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:05:11.333Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:05:11.335Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:05:18.332Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:06:02.368Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:06:02.375Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T11:06:04.357Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:06:04.367Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:06:04.404Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:06:04.408Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T11:06:04.443Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:06:04.446Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:06:04.500Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:06:04.509Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T11:06:04.513Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T11:06:04.514Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:06:04.564Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:06:04.577Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T11:06:04.601Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:06:04.612Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:06:04.616Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T11:06:04.654Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:06:17.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:06:35.582Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:06:35.585Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:07:05.829Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:07:05.833Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:07:22.913Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:07:36.030Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:07:36.032Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:08:06.250Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:08:06.254Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:08:34.700Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:08:36.480Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:08:36.484Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:09:06.712Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:09:06.715Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:09:34.208Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:09:34.211Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:09:40.149Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:10:04.430Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:10:04.434Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:10:34.662Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:10:34.667Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:10:45.623Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:11:08.563Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:11:08.569Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.008Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T11:11:52.008Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.010Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.010Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.010Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T11:12:02.010Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:12:02.577Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:12:02.578Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:12:03.187Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:12:09.004Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:12:09.007Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:12:50.132Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:13:09.466Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:13:09.471Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:13:12.326Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:14:02.632Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:14:09.901Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:14:09.905Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:14:13.953Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:15:00.982Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:15:10.360Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:15:10.364Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:15:19.345Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:16:06.381Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:16:08.089Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:16:08.093Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:16:24.968Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:17:08.531Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:17:08.534Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:17:11.834Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:17:30.295Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:18:08.996Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:18:09.001Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:18:17.316Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.379Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T11:18:40.380Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.380Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.380Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.380Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.381Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.381Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.382Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.382Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.382Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.383Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.383Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.383Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.383Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.384Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T11:18:50.385Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:18:50.914Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:18:50.915Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:18:51.559Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:19:09.450Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:19:09.454Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:19:30.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:19:30.093Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:19:30.093Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:19:41.328Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:19:41.370Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:20:03.398Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:20:09.905Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:20:09.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:20:35.523Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:20:35.524Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:20:35.524Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:20:50.445Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:20:50.483Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:21:08.763Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:21:10.344Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:21:10.347Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:21:40.902Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:21:40.903Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:21:40.903Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:21:52.131Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:21:52.171Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:22:07.807Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:22:08.125Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:22:08.129Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:22:46.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:22:46.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:22:46.317Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:23:01.221Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:23:01.260Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:23:08.532Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:23:08.535Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:23:19.635Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:23:50.833Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:07.520Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:07.521Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:07.521Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:07.521Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:24:08.975Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:24:08.978Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:26.008Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:24:49.897Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:24:49.930Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:24:49.967Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:25:11.759Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:25:11.761Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:25:11.761Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:25:11.762Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:25:11.762Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:25:11.763Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:25:11.780Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:25:11.787Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:25:11.813Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:25:11.814Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:25:16.095Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:25:16.097Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:25:16.692Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:26:09.910Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:26:09.915Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:26:22.236Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:27:10.198Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:27:10.201Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:27:10.201Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:27:10.202Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:27:10.202Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:27:10.203Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:27:10.222Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:27:10.229Z"} +{"ip":"::ffff:172.18.0.1","level":"error","message":"Error: Cannot use a pool after calling end on the pool","method":"GET","stack":"Error: Cannot use a pool after calling end on the pool\n at /app/node_modules/pg-pool/index.js:45:11\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async PGStore._asyncQuery (/app/node_modules/connect-pg-simple/index.js:322:21)","timestamp":"2025-06-28T11:27:10.339Z","url":"/api/auth/identities"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:27:10.438Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:27:10.439Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:27:11.106Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:27:11.107Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:27:11.746Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:28:08.082Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:28:08.086Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:28:17.237Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:29:08.518Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:29:08.521Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:29:22.573Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:30:08.968Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:30:08.971Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:30:31.655Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:31:09.416Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:31:09.419Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:31:37.201Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:32:09.905Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:32:09.908Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:32:42.665Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:33:10.328Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:33:10.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:33:33.431Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:33:33.435Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:33:44.382Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:34:04.384Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:34:04.387Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:34:34.639Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:34:34.644Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:34:53.477Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:35:08.542Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:35:08.544Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:35:55.062Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:36:08.965Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:36:08.967Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:37:04.221Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:37:09.471Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:37:09.474Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:38:06.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:38:09.843Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:38:09.845Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:39:10.308Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:39:10.313Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T11:39:11.594Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:39:11.597Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:39:11.655Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:39:11.660Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T11:39:11.681Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:39:11.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:39:11.712Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:39:11.715Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T11:39:11.724Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T11:39:11.727Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:39:11.771Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:39:11.783Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T11:39:11.787Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:39:11.805Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:39:11.812Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T11:39:11.824Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:39:15.108Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T11:39:17.859Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T11:39:19.506Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:39:42.362Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:39:42.365Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:40:12.585Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:40:12.589Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:40:20.503Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:41:59.622Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:41:59.624Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:41:59.625Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:41:59.625Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:41:59.626Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:41:59.626Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:41:59.644Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:41:59.651Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:41:59.681Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:41:59.682Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:42:00.272Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:42:00.274Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:42:00.876Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:42:10.766Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:42:10.770Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:42:40.991Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:42:40.995Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:43:06.346Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:43:42.350Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:43:42.353Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:44:15.490Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:44:15.492Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:44:15.492Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:44:15.493Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:44:15.493Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:44:15.494Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:44:15.509Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:44:15.515Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:44:15.539Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:44:15.540Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:44:20.761Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T11:44:20.761Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T11:44:33.484Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:44:37.637Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:44:37.639Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:44:38.294Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:44:43.731Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:44:43.735Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:45:02.786Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:45:02.788Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:45:02.789Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:45:02.790Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:45:02.790Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:45:02.791Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:45:02.810Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:45:02.819Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:45:02.846Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:45:02.847Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:45:09.784Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:45:09.785Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:45:10.430Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:45:45.106Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:45:45.110Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:46:19.417Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:46:46.465Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:46:46.468Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:48:46.246Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:48:46.248Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:48:46.249Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:48:46.249Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:48:46.249Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:48:46.250Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:48:46.266Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:48:46.273Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:48:46.297Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:48:46.297Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:48:46.481Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:48:46.485Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:48:46.818Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:48:46.820Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:48:47.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:49:47.842Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:49:47.845Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:49:56.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:50:49.215Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:50:49.218Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:51:02.908Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T11:51:02.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:51:02.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:51:02.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:51:02.910Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T11:51:15.647Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:51:16.127Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:51:16.129Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:51:20.413Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:51:50.585Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:51:50.589Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:52:36.733Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:52:36.736Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:52:36.736Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:52:36.737Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:52:36.737Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:52:36.738Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:52:36.756Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:52:36.766Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:52:36.802Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:52:36.803Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:52:41.078Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:52:41.081Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:52:48.140Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:52:51.970Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:52:51.974Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:53:53.333Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:53:53.337Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:53:53.532Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:54:36.405Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:54:36.407Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:54:36.408Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:54:36.409Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:54:36.409Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:54:36.410Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:54:36.436Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:54:36.448Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:54:36.485Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:54:36.486Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:54:41.720Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T11:54:41.721Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T11:54:51.728Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:54:51.990Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:54:51.996Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:54:58.621Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:54:58.625Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T11:55:00.547Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:55:00.550Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:55:00.606Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:55:00.616Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T11:55:00.638Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:55:00.648Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T11:55:00.679Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T11:55:00.680Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:55:00.732Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:55:00.738Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T11:55:00.745Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:55:00.768Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:55:00.771Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T11:55:00.789Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:55:00.807Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:55:00.812Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:55:02.868Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:55:31.353Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:55:31.356Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:56:01.572Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:56:01.576Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:56:08.356Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:56:29.081Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:56:29.084Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:56:59.299Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:56:59.302Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:57:10.128Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:57:29.520Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:57:29.526Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T11:57:44.850Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T11:57:46.405Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:57:59.769Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:57:59.772Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:58:19.255Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:58:29.675Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:58:29.679Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T11:59:00.201Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T11:59:00.206Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:59:24.650Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T11:59:39.453Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T11:59:39.456Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T11:59:39.456Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T11:59:39.457Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T11:59:39.458Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T11:59:39.459Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T11:59:39.482Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T11:59:39.494Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T11:59:39.533Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T11:59:39.534Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T11:59:43.786Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T11:59:43.790Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T11:59:44.463Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:00:08.919Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:00:08.926Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T12:00:57.128Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T12:00:57.129Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:00:57.129Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:00:57.130Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T12:01:07.137Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:01:09.353Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:01:09.358Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T12:01:11.368Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T12:01:11.369Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:01:11.936Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:02.574Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T12:02:02.575Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:02.575Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:02.576Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:02:09.826Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:02:09.829Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T12:02:12.576Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T12:02:13.120Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T12:02:13.122Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:02:17.271Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:02:17.360Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:18.316Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:18.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:18.317Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:03:06.995Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:03:10.253Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:03:10.257Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:03:19.203Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:03:26.401Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:04:07.997Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:04:08.001Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:04:12.518Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:04:24.496Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:04:31.949Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:05:08.470Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:05:08.474Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:05:11.610Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:05:29.951Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:05:33.684Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:06:08.895Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:06:08.899Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:06:16.911Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:06:35.428Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:06:39.169Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:07:06.600Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:07:06.604Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T12:07:07.737Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:07:07.739Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:07:07.807Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:07:07.810Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T12:07:07.829Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:07:07.831Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:07:07.855Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:07:07.858Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T12:07:07.870Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T12:07:07.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:07:07.933Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:07:07.939Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T12:07:07.946Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:07:07.971Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:07:07.976Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T12:07:07.994Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T12:07:09.513Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T12:07:09.539Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T12:07:11.044Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T12:07:17.254Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T12:07:18.698Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:07:22.333Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:07:38.647Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:07:38.651Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:07:40.774Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.065Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.067Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.067Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.067Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.069Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:08:08.875Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:08:08.878Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:08:27.835Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:08:27.877Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:08:39.119Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:08:39.122Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:08:46.269Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:08:54.560Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:08:54.560Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:08:54.560Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:09:09.327Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:09:09.333Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:09:33.246Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:09:33.282Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:09:39.549Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:09:39.552Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:09:55.180Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:09:55.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:09:56.213Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:09:56.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:09:56.214Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:10:07.044Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:10:07.047Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:10:38.633Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:11:00.661Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:11:00.737Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:11:01.682Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:11:01.682Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:11:01.683Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:11:08.457Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:11:08.461Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:11:50.397Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:12:02.489Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:12:06.071Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:12:08.848Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:12:08.852Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:12:55.724Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:13:09.377Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:13:09.380Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:13:11.453Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:13:11.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.504Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:14:02.028Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T12:14:09.755Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T12:14:09.759Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:14:16.748Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:14:16.837Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:14:17.747Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:14:17.748Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T12:15:00.045Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T15:21:46.908Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T15:21:46.912Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T15:21:46.912Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T15:21:46.914Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T15:21:46.914Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T15:21:46.915Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T15:21:46.964Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T15:21:46.979Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T15:21:47.045Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T15:21:47.046Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T15:21:47.608Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T15:21:47.610Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:21:48.173Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:22:10.296Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:22:10.310Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:22:53.072Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:23:07.873Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:23:07.878Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:23:58.189Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:24:08.517Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:24:08.521Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:25:06.970Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:25:08.833Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:25:08.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:26:09.366Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:26:09.369Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:26:12.054Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:27:09.782Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:27:09.786Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:27:13.409Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:28:10.084Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:28:10.089Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.982Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T15:28:22.983Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.983Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.984Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.984Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.985Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.985Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.985Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.986Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T15:28:32.986Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T15:28:33.599Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T15:28:33.600Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:41.121Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T15:28:41.121Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:41.122Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T15:28:51.123Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T15:28:51.644Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T15:28:51.645Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:28:52.247Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:29:07.742Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:29:07.747Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T15:29:27.959Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:29:27.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:29:27.960Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:29:39.236Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:29:39.274Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:29:57.231Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:30:08.187Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:30:08.193Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:30:28.335Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:30:50.027Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.721Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:31:08.610Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:31:08.613Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:31:33.219Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:31:33.258Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:56.013Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:56.014Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:32:09.067Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:32:09.071Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:32:11.146Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:32:11.183Z"} +{"level":"error","message":"IMAP connection error during check: This socket has been ended by the other party","timestamp":"2025-06-28T15:32:21.018Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:32:37.976Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:32:53.824Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:33:09.488Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:33:09.493Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:33:11.691Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:33:42.676Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:34:04.679Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:34:09.986Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:34:09.990Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:34:16.508Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:34:50.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.907Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.909Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:35:10.062Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:35:10.066Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:35:21.031Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:35:21.070Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:35:52.156Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:36:08.232Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:36:08.236Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:36:14.859Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:36:14.860Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:36:14.860Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:36:26.034Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:36:26.076Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:37:00.464Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:37:08.518Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:37:08.522Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:37:12.444Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:37:34.078Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:38:04.690Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:38:08.816Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:38:08.819Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.654Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.655Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.655Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.656Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.656Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:39.331Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:39:05.651Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:39:05.697Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:39:05.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:39:09.239Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:39:09.243Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:39:27.225Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:39:43.819Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:39:43.819Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:39:43.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:40:09.557Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:40:09.561Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:40:13.661Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:40:13.702Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:40:31.795Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:40:47.627Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:41:09.745Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:41:09.748Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:41:18.158Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:41:36.188Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:41:48.075Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:42:10.047Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:42:10.051Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.444Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:42:34.784Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:42:34.828Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:42:52.499Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:43:08.137Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:43:08.141Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:43:27.920Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:43:27.920Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:43:27.921Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:43:39.098Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:43:39.132Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:43:57.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:44:07.676Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:44:07.680Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:44:29.086Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:44:44.874Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:45:06.727Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:45:08.769Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:45:08.773Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:45:37.566Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:45:49.705Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:46:09.093Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:46:09.097Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:46:11.583Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:46:42.663Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:47:01.124Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:47:09.307Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:47:09.311Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:47:16.896Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:47:48.040Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:48:07.002Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:48:09.884Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:48:09.887Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:48:53.793Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:48:53.833Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:49:07.297Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:49:07.300Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:49:12.805Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:49:28.264Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:49:59.792Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:50:07.922Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:50:07.926Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:50:12.154Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:50:38.447Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:51:02.410Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:51:08.475Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:51:08.482Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T15:51:11.029Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:51:11.031Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:51:11.085Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:51:11.088Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T15:51:11.111Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:51:11.117Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T15:51:11.141Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T15:51:11.143Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:51:11.186Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T15:51:11.197Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:51:11.200Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:51:11.215Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:51:11.219Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T15:51:11.231Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:51:11.244Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:51:11.247Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:51:18.354Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:51:36.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:51:42.309Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:51:42.311Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T15:51:50.967Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:52:12.736Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:52:12.738Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.151Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.153Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.153Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:32.149Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:52:42.803Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:52:42.809Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:52:43.198Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:52:43.234Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:52:43.271Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:53:13.265Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:53:13.269Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:53:18.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:53:38.348Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:53:38.350Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:53:38.350Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:53:43.508Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:53:43.512Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:53:49.314Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:53:49.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:54:13.889Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:54:13.892Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:54:21.064Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:54:37.057Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:54:55.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:55:02.512Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:55:02.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:55:11.155Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:55:11.159Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:55:27.244Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:55:41.527Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:55:41.532Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:55:50.029Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:56:11.827Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:56:11.831Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:38.162Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:56:49.599Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:56:49.640Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:56:49.681Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:57:08.703Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:57:08.708Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:57:11.886Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:57:44.595Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:57:44.596Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:57:44.596Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:57:55.930Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:57:55.967Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:58:09.455Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:58:09.459Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:58:18.318Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T15:58:43.671Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:58:46.294Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:59:02.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T15:59:09.963Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T15:59:09.968Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:59:20.883Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T15:59:56.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:00:07.413Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:00:07.416Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:00:15.441Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:00:27.311Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.625Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.626Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.626Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.626Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.627Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.627Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.627Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.628Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.628Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:01:08.140Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:01:08.144Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:01:14.905Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:01:14.937Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:01:37.271Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:02:08.666Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:02:08.669Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:02:08.989Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:02:21.385Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:02:40.198Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:03:09.397Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:03:09.400Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:03:11.872Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:03:34.545Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:03:50.143Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:04:09.908Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:04:09.913Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:04:18.320Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:04:41.032Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:04:56.787Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:05:07.291Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:05:07.294Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:05:24.730Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:05:47.425Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.061Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.064Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:06:07.813Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:06:07.817Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:35.829Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:54.965Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:07:08.572Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:07:08.578Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:07:10.626Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:07:42.286Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:07:53.798Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:07:53.835Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:07:53.874Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:07:53.911Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:07:53.948Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:07:53.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:08:09.106Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:08:09.109Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:08:12.430Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:08:47.868Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:09:00.139Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:09:09.811Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:09:09.814Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:09:22.617Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:09:54.190Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:10:06.684Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:10:07.115Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:10:07.118Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:10:25.448Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:10:57.128Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:11:07.737Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:11:07.740Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:11:13.090Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:11:31.966Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:12:03.714Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:12:08.507Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:12:08.511Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:12:19.621Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T16:20:13.074Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T16:20:13.077Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T16:20:13.078Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T16:20:13.079Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T16:20:13.080Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T16:20:13.081Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T16:20:13.129Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T16:20:13.140Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T16:20:13.189Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T16:20:13.190Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T16:20:13.807Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T16:20:13.809Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:20:18.123Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:21:07.568Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:21:07.577Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:21:24.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:22:08.323Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:22:08.326Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:22:31.170Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:23:08.854Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:23:08.857Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:23:37.494Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:24:09.593Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:24:09.596Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T16:24:50.280Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T16:24:50.282Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T16:24:50.283Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T16:24:50.284Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T16:24:50.284Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T16:24:50.285Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T16:24:50.311Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T16:24:50.327Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T16:24:50.370Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T16:24:50.371Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T16:24:54.530Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T16:24:54.533Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:24:55.129Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:25:10.171Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:25:10.175Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:26:05.179Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:26:07.494Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:26:07.500Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:27:08.190Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:27:08.302Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:27:08.306Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:28:08.818Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:28:08.822Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:28:14.728Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:29:09.601Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:29:09.605Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:29:21.215Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:30:10.114Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:30:10.118Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:30:31.361Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T16:30:55.759Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:31:07.530Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:31:07.534Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:31:37.859Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.443Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T16:32:45.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.444Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.444Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.445Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.445Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.445Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.445Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T16:32:58.761Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T16:32:59.227Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T16:32:59.229Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:32:59.830Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:33:08.852Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:33:08.855Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:33:50.985Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:34:06.184Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:34:09.397Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:34:09.400Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:34:53.884Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:35:10.043Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:35:10.047Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:35:12.884Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:36:04.030Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:36:07.506Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:36:07.510Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T16:36:08.523Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:36:22.879Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:37:06.927Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:37:08.088Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:37:08.092Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:37:25.870Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:38:08.871Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:38:08.875Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:38:16.979Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:38:32.121Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:39:09.312Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:39:09.316Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:39:23.452Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:39:42.559Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T16:39:48.257Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:40:10.008Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:40:10.012Z"} +{"level":"info","message":"POST /api/cloudflare/create-tunnel","timestamp":"2025-06-28T16:40:10.941Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T16:40:25.772Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:40:30.038Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:40:48.959Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:40:54.228Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:40:54.233Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T16:40:54.772Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:40:54.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:40:54.835Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:40:54.839Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T16:40:54.869Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:40:54.874Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:40:54.897Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:40:54.899Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:40:54.919Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:40:54.924Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T16:40:54.928Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T16:40:54.932Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:40:54.980Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:40:54.987Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T16:40:55.067Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T16:40:55.071Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T16:41:20.313Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T16:41:20.345Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T16:41:21.317Z"} +{"level":"info","message":"POST /api/cloudflare/account-id","timestamp":"2025-06-28T16:41:25.068Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T16:41:25.086Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:41:25.245Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:41:25.252Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T16:41:26.985Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T16:41:27.672Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.589Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T16:41:37.590Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.590Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.590Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.590Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.594Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T16:41:50.829Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T16:41:55.421Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T16:41:55.422Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T16:41:55.423Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:41:56.016Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:56.023Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:56.024Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:56.024Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:41:56.382Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:41:56.385Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T16:42:01.349Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:42:26.645Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:42:26.648Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T16:42:31.593Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:42:39.465Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:42:56.906Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:42:56.911Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:43:02.854Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:43:02.855Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:43:02.855Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:43:27.217Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:43:27.221Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:43:49.552Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:43:49.586Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:43:49.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:43:54.274Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:43:54.277Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:44:09.464Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:44:09.465Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:44:09.465Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:44:56.011Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:44:56.042Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:44:56.074Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:45:09.953Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:45:09.957Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:45:11.345Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:45:19.069Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:45:58.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:46:07.289Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:46:07.292Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.419Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.420Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.420Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.420Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.420Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.421Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T16:47:07.884Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T16:47:07.888Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:47:09.014Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:47:09.055Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T16:47:09.095Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T20:17:04.391Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T20:17:04.393Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T20:17:04.393Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T20:17:04.395Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T20:17:04.395Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T20:17:04.396Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T20:17:04.442Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T20:17:04.466Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T20:17:04.565Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T20:17:04.567Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T20:17:05.626Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T20:17:05.628Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:17:10.480Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:18:13.406Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:19:15.971Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:20:25.113Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:21:26.292Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:22:32.520Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:23:37.351Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.324Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T20:24:50.324Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.325Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.326Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.326Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.327Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.327Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.327Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.328Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.328Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T20:25:00.327Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T20:25:05.137Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T20:25:05.139Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:25:06.323Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T20:25:12.891Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:25:52.409Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:26:15.443Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T20:26:52.268Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:26:54.481Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:27:17.225Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.629Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T20:28:06.629Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.631Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T20:28:16.638Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T20:28:17.673Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T20:28:17.675Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:22.959Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:22.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:22.960Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:28:22.972Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:28:23.055Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T20:28:48.469Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:29:12.026Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:29:24.298Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:29:24.343Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:29:28.241Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:30:14.336Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:30:33.246Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T20:30:33.396Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.025Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.026Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.027Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.028Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.028Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:31:16.096Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:31:35.409Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:31:42.770Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:32:21.634Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:32:40.808Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:32:48.130Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:33:30.586Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:33:50.273Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:33:50.385Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.415Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.415Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.415Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.416Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.416Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.416Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T20:33:54.703Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:34:35.824Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:34:51.755Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:34:59.534Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:34:59.535Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:34:59.535Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T20:34:59.577Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:35:41.397Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:35:41.490Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:36:01.019Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:36:01.154Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:36:01.200Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:36:01.200Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:36:01.201Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:36:43.005Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T20:36:52.041Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:37:02.400Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:37:06.496Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:37:48.907Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:38:07.978Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:38:15.613Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T20:38:28.209Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:38:58.030Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:39:17.441Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:39:17.492Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.670Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:40:03.282Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:40:18.867Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:40:26.783Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:40:26.784Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:40:26.784Z"} +{"level":"info","message":"HEAD /","timestamp":"2025-06-28T20:40:39.959Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:41:05.383Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:41:05.420Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:41:23.995Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:41:28.360Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:42:14.360Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:42:33.090Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:42:33.224Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.019Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:43:22.894Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:43:38.916Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T20:43:39.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:43:39.513Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:43:39.513Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:44:28.531Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:44:44.231Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T20:44:44.463Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:44:44.956Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:44:44.957Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:45:27.121Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:45:50.113Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:45:50.201Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:45:50.322Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:45:50.322Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:45:50.322Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:46:39.230Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:46:55.841Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:46:55.841Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:47:38.077Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:47:38.173Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:47:38.265Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:47:38.359Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:47:57.099Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:48:00.762Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:48:46.467Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:49:02.705Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:49:10.059Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:49:48.938Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:50:08.183Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:50:15.317Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:50:58.114Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.646Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.646Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.647Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.647Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.648Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.649Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.649Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.650Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.650Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.651Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.651Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.651Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:51:59.908Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:52:00.041Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:52:00.093Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:52:22.566Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:52:22.641Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:52:22.996Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:52:22.997Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:52:22.997Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:53:05.346Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:53:27.955Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T20:53:28.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:53:28.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:53:28.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:53:28.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:54:17.466Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:54:30.056Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:54:30.262Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:54:37.747Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:54:37.748Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:55:19.958Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:55:19.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:55:39.354Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:55:39.354Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:55:39.354Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:56:21.923Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:56:22.017Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:56:22.111Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:56:40.965Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:56:48.202Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:57:26.997Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:57:46.117Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:57:50.073Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:58:36.126Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:58:51.487Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:58:54.869Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T20:59:37.310Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.335Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.335Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.336Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.336Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.336Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.336Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.337Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.337Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.337Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.337Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.338Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.338Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:00:43.767Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:00:43.861Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:00:43.913Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:01:02.846Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:01:06.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:01:51.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:01:51.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:01:51.961Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:01:51.961Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:02:08.187Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:02:08.282Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:02:15.912Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:02:15.913Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:02:54.441Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:02:54.536Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:03:13.612Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:03:17.268Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:04:06.590Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:04:06.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:04:06.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:04:06.592Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:04:19.119Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:04:19.231Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:04:26.458Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:05:04.826Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:05:24.656Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:05:28.316Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:06:10.768Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:06:30.101Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:06:37.422Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:07:19.474Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:07:38.980Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:07:39.167Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.570Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.571Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.571Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.571Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.573Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:08:25.490Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:08:40.865Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:08:48.185Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T21:09:26.005Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:09:26.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:09:26.066Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:09:26.074Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T21:09:26.102Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:09:26.106Z"} +{"level":"info","message":"POST /api/chat/process-guest","timestamp":"2025-06-28T21:09:26.149Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1751144964588-61tteih7k","timestamp":"2025-06-28T21:09:26.156Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:09:26.172Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:09:26.176Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T21:09:26.185Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-06-28T21:09:26.187Z"} +{"level":"info","message":"Created mapping for guest ID 1751144964588-61tteih7k to user 1","timestamp":"2025-06-28T21:09:26.189Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:09:26.198Z"} +{"level":"info","message":"No guest messages found for guest ID 1751144964588-61tteih7k","timestamp":"2025-06-28T21:09:26.200Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:09:26.201Z"} +{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID 1751144964588-61tteih7k","timestamp":"2025-06-28T21:09:26.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:09:26.267Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:09:26.273Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:09:27.257Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-06-28T21:09:27.683Z"} +{"level":"info","message":"GET /api/chat/history?offset=116&limit=30","timestamp":"2025-06-28T21:09:27.732Z"} +{"count":30,"level":"info","limit":30,"message":"Returning message history for user 1","offset":116,"timestamp":"2025-06-28T21:09:27.749Z","total":146} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T21:09:36.712Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T21:09:36.736Z"} +{"level":"info","message":"POST /api/cloudflare/token","timestamp":"2025-06-28T21:09:40.378Z"} +{"level":"info","message":"POST /api/cloudflare/accounts","timestamp":"2025-06-28T21:09:40.402Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T21:09:41.374Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:09:49.799Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:09:49.987Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.577Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"info","message":"POST /api/cloudflare/domain","timestamp":"2025-06-28T21:09:51.782Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T21:09:52.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:09:56.431Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:09:56.435Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:10:26.879Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:10:26.883Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:10:31.712Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:10:55.231Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:10:55.419Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:10:56.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:10:56.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:10:56.011Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:10:57.132Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:10:57.137Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:11:27.342Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:11:27.345Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:11:41.118Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:11:57.490Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:11:57.587Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:11:57.609Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:11:57.613Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:12:04.811Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:12:27.817Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:12:27.822Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:12:46.699Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:12:46.700Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:12:46.700Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:12:58.016Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:12:58.021Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:13:02.875Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:13:02.969Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:13:10.196Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:13:52.452Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:13:59.399Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:13:59.402Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:14:08.621Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:14:15.397Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:14:54.419Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:14:58.019Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:14:58.025Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:15:59.303Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:15:59.355Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:15:59.403Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:15:59.463Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:15:59.469Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:16:23.127Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:16:23.128Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:16:23.129Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:17:00.801Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:17:00.808Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:17:05.220Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:17:05.312Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:17:05.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:17:27.376Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:17:27.381Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:17:28.050Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:17:28.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:17:28.735Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:17:28.735Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:17:28.735Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:17:58.906Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:17:58.910Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:18:11.646Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:18:27.797Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:18:27.800Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:18:30.068Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:18:33.562Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:18:58.025Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:18:58.041Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:19:16.274Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.703Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.704Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.704Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.705Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:19:59.399Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:19:59.402Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:20:21.801Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:20:21.894Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:20:21.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:20:29.605Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:20:29.610Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:20:44.554Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:20:44.742Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:20:45.146Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:20:45.146Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:20:45.147Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:20:56.230Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:20:56.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:21:26.455Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:21:26.460Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:21:30.234Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:21:50.546Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:21:50.547Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:21:50.547Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:21:56.686Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:21:56.690Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:22:32.597Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:22:32.691Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:22:32.755Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:22:56.000Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:22:56.001Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:22:56.001Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:22:58.045Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:22:58.049Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:23:41.939Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:23:59.404Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:23:59.408Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:24:01.352Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:24:01.353Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:24:50.378Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:24:50.473Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:24:50.566Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:24:50.659Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:24:50.756Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:24:50.849Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:25:00.750Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:25:00.755Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:25:05.956Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:25:06.122Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:25:06.832Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:25:06.833Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:25:06.833Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:25:52.626Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:26:02.154Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:26:02.158Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:26:12.407Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:26:12.408Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:26:12.411Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:26:54.970Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:26:55.065Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:26:55.348Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:27:03.531Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:27:03.538Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:27:13.769Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:27:21.188Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:28:02.147Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:28:02.151Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:28:03.394Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:28:22.639Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:28:22.745Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.362Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.362Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.362Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.362Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.363Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.363Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:29:03.732Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:29:03.737Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:29:08.770Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:29:24.743Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:29:32.196Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:30:04.907Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:30:04.914Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:30:14.403Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:30:33.962Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:30:34.054Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.083Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.085Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:31:05.442Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:31:05.452Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:31:19.881Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:31:39.606Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:31:39.607Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:31:39.607Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:32:05.949Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:32:05.957Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:32:24.865Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:32:44.207Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:32:44.398Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:32:45.053Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:32:45.054Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:33:06.305Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:33:06.313Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:33:26.957Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:33:46.689Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:33:50.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:34:06.851Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:34:06.858Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:34:32.406Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:34:51.922Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:34:58.887Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:35:04.583Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:35:04.590Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:35:41.557Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:35:57.088Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:36:04.638Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:36:05.004Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:36:05.011Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:36:46.918Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:37:05.463Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:37:05.474Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.003Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.004Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.004Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.005Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.005Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.012Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.012Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.012Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:37:52.005Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:37:52.051Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:37:52.095Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:38:05.816Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:38:05.820Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:38:10.007Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:38:16.453Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:38:16.453Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:38:16.453Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:38:53.734Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:38:53.776Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:39:06.279Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:39:06.282Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:39:16.779Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:39:16.817Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:39:17.728Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:39:17.728Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:39:17.728Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:39:59.068Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:40:06.719Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:40:06.722Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:40:23.177Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:40:23.177Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:40:23.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:41:04.449Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:41:04.453Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:41:04.594Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:41:04.632Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:41:04.671Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:41:23.956Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:41:27.628Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:42:04.900Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:42:04.903Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:42:09.925Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:42:33.028Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:42:33.106Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.093Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.093Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.093Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:43:05.364Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:43:05.367Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:43:15.456Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:43:38.489Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:43:38.564Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:43:39.562Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:43:39.562Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:43:39.562Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:44:05.816Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:44:05.820Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:44:25.489Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:44:40.488Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:44:40.530Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:44:48.622Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:44:48.622Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:45:06.273Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:45:06.277Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:45:26.366Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:45:26.410Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:45:49.445Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:45:49.477Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:45:50.502Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:45:50.502Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:45:50.502Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:46:03.180Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:46:06.724Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:46:31.877Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:46:54.837Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:46:54.923Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:46:55.946Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:46:55.946Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:46:55.947Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:47:04.485Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:47:04.489Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:47:40.940Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:48:00.311Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:48:00.341Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:48:01.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:48:01.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:48:01.414Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:48:04.910Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:48:04.915Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:48:42.717Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:49:02.199Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:49:05.357Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:49:05.361Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:49:05.871Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:49:52.740Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:49:52.741Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:49:52.741Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:49:52.741Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:50:05.804Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:50:05.808Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:50:07.771Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:50:07.811Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:50:11.294Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:50:58.224Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:50:58.225Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:50:58.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:51:06.257Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:51:06.261Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:51:13.166Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:51:13.200Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:51:20.518Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:52:02.746Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-06-28T21:52:03.181Z"} +{"level":"info","message":"[IdentityService] Found 3 identities for user 1","timestamp":"2025-06-28T21:52:03.186Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.229Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.230Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.230Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.230Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.230Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T21:53:38.606Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T21:53:38.611Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T21:53:38.613Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T21:53:38.615Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T21:53:38.615Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T21:53:38.616Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T21:53:38.697Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T21:53:38.715Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T21:53:38.784Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T21:53:38.786Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T21:53:44.084Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T21:53:44.085Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T21:53:54.094Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T21:53:55.232Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T21:53:55.236Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:53:55.969Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T21:55:04.019Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 3)...","timestamp":"2025-06-28T21:55:04.020Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:55:04.020Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:55:04.021Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 3","timestamp":"2025-06-28T21:55:14.026Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T21:55:19.257Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T21:55:38.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:56:04.013Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T21:57:03.684Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T21:57:03.686Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T21:57:03.687Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:57:04.292Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:57:04.332Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:58:09.725Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:58:09.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:58:13.832Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:58:13.832Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:58:13.832Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:58:13.833Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:59:15.243Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T21:59:15.282Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:59:19.293Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:59:19.293Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:00:24.231Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:00:24.261Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:01:29.847Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:01:29.895Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:02:35.274Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:02:35.312Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T22:03:40.620Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T22:03:40.717Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.191Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.191Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.192Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.192Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.192Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.192Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.193Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.193Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:04:42.490Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:04:42.527Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:04:46.610Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:04:46.610Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:05:47.945Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:05:47.986Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:05:52.095Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:05:52.095Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:06:53.430Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:06:53.471Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:06:57.576Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:06:57.577Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T22:07:03.579Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:07:55.328Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:07:55.367Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:07:59.510Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:07:59.511Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:09:04.262Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:09:04.297Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:09:08.455Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:09:08.456Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:10:09.756Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:10:09.794Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:10:13.924Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:10:13.924Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T22:11:18.728Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T22:11:18.809Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:11:19.395Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:11:19.396Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:12:20.735Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:12:20.779Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:12:24.847Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:12:24.848Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:13:29.642Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:13:29.673Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:13:30.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:13:30.318Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:14:31.556Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:14:31.594Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:14:35.789Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:14:35.790Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:15:40.731Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:15:40.773Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:15:41.249Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:15:41.249Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:16:46.190Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:16:46.233Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:16:46.673Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:16:46.674Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:17:44.370Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:17:44.404Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:17:48.675Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:17:48.675Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:18:50.512Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:18:50.555Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:18:54.728Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:18:54.729Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:19:56.036Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:19:56.079Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:20:00.240Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:20:00.241Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:21:05.094Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:21:05.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:21:05.725Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:21:05.726Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:22:06.877Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:22:06.915Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:22:11.171Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:22:11.172Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:23:12.257Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:23:12.290Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:23:16.660Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:23:16.661Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:24:17.778Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:24:17.821Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:24:22.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:24:22.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:25:32.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:25:32.936Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:25:55.027Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:26:22.819Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:26:32.547Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:26:32.592Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:26:32.637Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:26:32.683Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:26:32.996Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:26:32.997Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:27:34.070Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:27:34.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:27:38.470Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:27:38.473Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:28:43.253Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:28:43.290Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:28:43.934Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:28:43.934Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:29:49.405Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:29:49.405Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:30:16.913Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:30:54.189Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:30:54.232Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:30:54.272Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:30:54.315Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:30:54.767Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:30:54.767Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:31:59.545Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:31:59.580Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:32:00.270Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:32:00.270Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:33:01.483Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:33:01.527Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:33:05.751Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:33:05.751Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:34:11.240Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:34:11.240Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:34:38.757Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:35:04.053Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:35:16.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:35:16.705Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:35:44.203Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:36:09.484Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:36:22.157Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:36:22.158Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:36:49.658Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:37:23.329Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:37:23.364Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:37:23.400Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:37:23.437Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:37:23.472Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:37:23.508Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:37:23.543Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:37:23.582Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:37:27.606Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:37:27.607Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:37:55.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:38:33.022Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:38:33.022Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:39:00.586Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:39:25.864Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:39:38.497Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:39:38.497Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:40:06.022Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:40:31.297Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:40:43.964Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:40:43.965Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:41:11.497Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:41:36.751Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:41:49.419Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:41:49.419Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:42:16.948Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:42:42.202Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.384Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.423Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.461Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.499Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.536Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.573Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.611Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.648Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.685Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:42:54.722Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:42:54.882Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:42:54.882Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:43:22.397Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:44:00.318Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:44:00.318Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:44:27.864Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:44:53.110Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:45:05.780Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:45:05.781Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:45:33.328Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:45:58.553Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:46:11.251Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:46:11.251Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:46:38.781Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:47:04.028Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:47:16.709Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:47:16.710Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:47:44.225Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:48:09.475Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:48:22.147Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:48:22.147Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:48:49.695Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:49:14.932Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:49:27.574Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:49:27.574Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:49:55.145Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:50:20.384Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:32.723Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:32.762Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:32.799Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:32.837Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:32.877Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:32.915Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:32.955Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:32.993Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:33.032Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:33.071Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:50:33.074Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:50:33.075Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:33.110Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:33.148Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:33.186Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:50:33.224Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:51:00.588Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:51:34.075Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:51:34.116Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:51:38.535Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:51:38.536Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:52:06.048Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:52:39.512Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:52:39.549Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:52:43.999Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:52:44.000Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T22:52:51.411Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:53:11.497Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:53:48.699Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:53:48.742Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:53:49.453Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:53:49.454Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:54:16.962Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:54:50.381Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:54:50.419Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:54:54.916Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:54:54.917Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:55:22.428Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:55:55.849Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:55:55.881Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:56:00.373Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:56:00.373Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:56:27.878Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T22:57:02.478Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:57:05.833Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:57:05.834Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:57:33.355Z"} +{"level":"info","message":"GET /","timestamp":"2025-06-28T22:57:54.582Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:58:06.835Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:58:06.874Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:58:06.910Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:58:06.946Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:58:11.267Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:58:11.268Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:58:38.792Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:59:15.908Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T22:59:15.945Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:59:16.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:59:16.721Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:59:44.265Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:00:17.712Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:00:17.753Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:00:22.171Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:00:22.172Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:00:49.735Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:01:23.150Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:01:23.191Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:01:27.652Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:01:27.652Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:01:55.196Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:02:28.566Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:02:28.602Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:02:33.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:02:33.145Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T23:02:51.997Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T23:02:52.004Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:03:00.658Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T23:03:25.807Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:03:34.055Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:03:34.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:03:38.549Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:03:38.550Z"} +{"level":"info","message":"GET /api/cloudflare/status","timestamp":"2025-06-28T23:03:59.714Z"} +{"level":"info","message":"GET /api/cloudflare/settings","timestamp":"2025-06-28T23:03:59.719Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:04:06.113Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:04:39.570Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:04:39.615Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:04:44.075Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:04:44.076Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:05:11.586Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-06-28T23:05:42.587Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-06-28T23:05:42.590Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-06-28T23:05:42.591Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-06-28T23:05:42.592Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-06-28T23:05:42.593Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-06-28T23:05:42.594Z"} +{"level":"info","message":"Ethers version: 6.13.5","timestamp":"2025-06-28T23:05:42.621Z"} +{"level":"info","message":"[EmailBot] start() called","timestamp":"2025-06-28T23:05:42.634Z"} +{"connTimeout":30000,"host":"mail.hostland.ru","keepalive":{"forceNoop":true,"idleInterval":300000,"interval":10000},"level":"info","message":"[EmailBot] IMAP config:","password":"***","port":993,"timestamp":"2025-06-28T23:05:42.676Z","tls":true,"tlsOptions":{"rejectUnauthorized":false},"user":"info@hb3-accelerator.com"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 1","timestamp":"2025-06-28T23:05:42.678Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T23:05:43.223Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T23:05:43.225Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:05:47.498Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-06-28T23:06:36.952Z"} +{"cookie":{"expires":"2025-07-28T23:06:36.917Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"29ccf17cc7633e6351fad613bc5d4e59","level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-06-28T23:06:36.955Z"} +{"level":"info","message":"Session saved successfully","timestamp":"2025-06-28T23:06:36.968Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T23:06:53.889Z"} +{"level":"warn","message":"[EmailBot] IMAP reconnecting in 10 seconds (attempt 2)...","timestamp":"2025-06-28T23:06:53.889Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:06:53.890Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:06:53.890Z"} +{"level":"info","message":"[EmailBot] IMAP connect attempt 2","timestamp":"2025-06-28T23:07:03.900Z"} +{"level":"info","message":"[EmailBot] IMAP connection ready","timestamp":"2025-06-28T23:07:08.045Z"} +{"level":"info","message":"[EmailBot] Email bot started and IMAP connection initiated","timestamp":"2025-06-28T23:07:08.047Z"} +{"level":"info","message":"No new messages found","timestamp":"2025-06-28T23:07:08.705Z"} diff --git a/backend/logs/error.log b/backend/logs/error.log index c230bda..3107390 100644 --- a/backend/logs/error.log +++ b/backend/logs/error.log @@ -233,3 +233,1522 @@ {"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-26T17:33:40.146Z"} {"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-26T17:33:40.146Z"} {"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-26T17:33:40.146Z"} +{"level":"error","message":"Unhandled Rejection: Cannot use a pool after calling end on the pool","stack":"Error: Cannot use a pool after calling end on the pool\n at /app/node_modules/pg-pool/index.js:45:11\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async /app/app.js:101:20","timestamp":"2025-06-27T08:22:43.778Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T08:22:52.667Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T08:24:21.045Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:24:21.046Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:24:21.046Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.340Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.340Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.341Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.341Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.341Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.342Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:27:35.342Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.081Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.081Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.082Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.083Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.083Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.088Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.088Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.089Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.089Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.091Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.091Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:38:59.091Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.856Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.856Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.857Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.857Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.858Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.858Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.858Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:43:20.859Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.449Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.450Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.451Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.451Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:46:08.452Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T08:53:40.087Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:53:40.089Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T08:53:40.089Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.213Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:00:04.215Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'cbargs')","stack":"TypeError: Cannot read properties of undefined (reading 'cbargs')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1253:20)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T09:00:19.304Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.765Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:01:29.765Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-27T09:01:57.077Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:02:13.935Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-27T09:02:25.405Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:02:33.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:02:33.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:03:44.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:03:44.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:03:44.423Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-27T09:04:05.611Z"} +{"level":"error","message":"IMAP connection error during check: This socket has been ended by the other party","timestamp":"2025-06-27T09:04:39.815Z"} +{"level":"error","message":"IMAP connection error during check: This socket has been ended by the other party","timestamp":"2025-06-27T09:04:39.816Z"} +{"level":"error","message":"IMAP connection error during check: This socket has been ended by the other party","timestamp":"2025-06-27T09:04:39.816Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.954Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.954Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.955Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.955Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.955Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:06:53.955Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:07:59.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:07:59.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:07:59.425Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:09:04.895Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:09:04.896Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:09:04.896Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.781Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.782Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.782Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.782Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.782Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:11:15.783Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:12:21.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:12:21.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:12:21.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.656Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.658Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:15:37.658Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:16:43.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:16:43.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:16:43.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:17:48.575Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:17:48.575Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:17:48.575Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.943Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.943Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.944Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.944Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.944Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.944Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.945Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.945Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T09:21:04.945Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:23:38.160Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:23:48.084Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T09:50:58.182Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.979Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.979Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.980Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.980Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.980Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.981Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.981Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.981Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.981Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.982Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.982Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.982Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.983Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.983Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:05:24.983Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.269Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.271Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.271Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.271Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.272Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.272Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.273Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.274Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.274Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.274Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:13:03.275Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:14:08.672Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:14:08.673Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.421Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.422Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.422Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.423Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:41.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:20:59.779Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:22:05.237Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:22:05.237Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.233Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.234Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.234Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.234Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.234Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.235Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.235Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.235Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:27:14.235Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.439Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.439Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.439Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.440Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:29:43.440Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.761Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.763Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.763Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.763Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.764Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:40:19.765Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.133Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.135Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:48:16.136Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:49:21.568Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:49:21.568Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:51:14.381Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:51:14.382Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:51:14.382Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T10:54:32.410Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:54:32.411Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:54:32.411Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T10:54:32.411Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.123Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.124Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.124Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.124Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.125Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.125Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.125Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.125Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:01:05.126Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.007Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.008Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.010Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.012Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.013Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.013Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.014Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.014Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.015Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:04:40.015Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:05:45.429Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:05:45.430Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:05:45.430Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:33:01.193Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:33:01.193Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.772Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.774Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.775Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.775Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.776Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:38:44.776Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.678Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.679Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.679Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.679Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:40:55.680Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-27T11:41:13.160Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.434Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.436Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.437Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.437Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:51:52.437Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.264Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:56:14.266Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.854Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.855Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.855Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.856Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.856Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:57:41.856Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:58:43.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:58:43.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T11:58:43.631Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-27T12:00:53.565Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:00:53.642Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.553Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.553Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.553Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.554Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.554Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:00:54.554Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:25:49.750Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:25:49.752Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:39:07.411Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:48:18.221Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:48:18.222Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:48:18.222Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.116Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.117Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.117Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.118Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:29.118Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-27T12:50:40.094Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:44.329Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:44.329Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:50:44.330Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:51:45.566Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-27T12:52:55.144Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:52:55.226Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.714Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.714Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.714Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.715Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.715Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:52:55.715Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-27T12:54:00.596Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:54:00.670Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:54:01.171Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:54:01.172Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:54:01.172Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:54:50.996Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:55:06.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:55:06.637Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:56:12.117Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:56:12.117Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:56:12.117Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-27T12:57:12.846Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.031Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.032Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.032Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.033Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.033Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T12:58:23.033Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T13:26:47.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:26:47.069Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T13:27:08.490Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:27:08.491Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.598Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.598Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.599Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.599Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.599Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.600Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.600Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.602Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.602Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.602Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.602Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.603Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.604Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.604Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.604Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.605Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.605Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.605Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.605Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T13:36:35.606Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:01.454Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:01.454Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:01.455Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:01.455Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:15:16.661Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:28:31.880Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:28:31.881Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:28:31.881Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:30:19.113Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:30:19.113Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:30:19.114Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:30:34.342Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.475Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.476Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.477Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.477Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.477Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.478Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:33:35.478Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.344Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.345Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.345Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.345Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.346Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.346Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.346Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:45:11.346Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.102Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.102Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.103Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.105Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:51:44.105Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-27T14:51:55.078Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-27T14:52:02.043Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:52:02.043Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:52:02.043Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:53:07.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:53:07.899Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-27T14:53:07.900Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:09:11.545Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:09:11.547Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:09:11.548Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.440Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.441Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.444Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:13:53.444Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.956Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.956Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.957Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.957Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:15:17.957Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.259Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.260Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.261Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.261Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:20:26.261Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.635Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.635Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.635Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.636Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.637Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.637Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:01.637Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:27.823Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:24:48.007Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.704Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:26:38.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.760Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.761Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.761Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.761Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:28:23.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.607Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.607Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.608Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.608Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.608Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.608Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:31:00.609Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.828Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.829Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:33:50.830Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:34:16.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.896Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.897Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:38:38.898Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.860Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.860Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.861Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.861Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.861Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.861Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:41:09.862Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:42:24.729Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:42:24.730Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.632Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.632Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.633Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.633Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:47:31.633Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.624Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.625Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.625Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.625Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:49:42.626Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T07:50:00.749Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T07:50:00.774Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:50:00.775Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T07:50:00.775Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T07:52:11.683Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:01:35.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:01:35.318Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:01:35.318Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:01:35.319Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:05:40.226Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:09:58.767Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:09:58.768Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:09:58.768Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:10:16.710Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.658Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.659Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.659Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.659Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:12:09.659Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:26:08.068Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:23.711Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:23.712Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:23.712Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:23.712Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:41:38.935Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:02.937Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:02.937Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:02.937Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:02.937Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:43:34.613Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:45:45.537Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:45:45.538Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:45:45.538Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:45:45.538Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:47:24.707Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:47:24.708Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:47:24.708Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.091Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:50:41.093Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.594Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.594Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.594Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.595Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.595Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:55:34.595Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:57:13.801Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:57:13.802Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T08:57:13.802Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T08:59:32.185Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:03:21.932Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:03:21.933Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:03:21.933Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:16:56.842Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:16:56.843Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:17:12.585Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:17:12.585Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.300Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.301Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.302Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.302Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:21:35.303Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.281Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.281Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.281Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.281Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:08.282Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:37.229Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:37.230Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:24:52.450Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:25:42.684Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:25:42.684Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:25:42.685Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:26:19.984Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:43:47.304Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:44:05.713Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:44:05.714Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T09:44:20.921Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:45:11.199Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:46:16.645Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T09:47:17.419Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T09:48:27.008Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:48:27.089Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:48:27.562Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:48:27.562Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:48:27.563Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:48:27.563Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:50:33.813Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T09:52:48.845Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:52:48.917Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.402Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.402Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:52:49.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:53:54.841Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:53:54.842Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:57:06.537Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T09:59:21.618Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T09:59:21.709Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.164Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.164Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.165Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.165Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.165Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.166Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.166Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.166Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.167Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T09:59:22.167Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.665Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.666Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.666Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.666Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.666Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.667Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.667Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.667Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:12:58.670Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:04.149Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:04.150Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:04.150Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T10:14:15.184Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:19.346Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:19.347Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:14:19.347Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:15:25.286Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:15:25.286Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:15:25.287Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:16:30.796Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:16:30.797Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:16:30.797Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:17:36.216Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:17:36.217Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:17:36.217Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:19:42.471Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.910Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.910Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.910Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:36.911Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:52.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:20:52.630Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:21:57.540Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:21:57.619Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:21:58.059Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:21:58.059Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:21:58.060Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:23:03.484Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:23:03.484Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:23:03.485Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.427Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.428Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.428Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.428Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.429Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:25:14.429Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:26:04.180Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:26:20.401Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:26:20.401Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.278Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.279Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.280Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:29:36.280Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:30:41.195Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:30:41.277Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:30:41.718Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:30:41.718Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:30:41.719Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:31:47.139Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:31:47.140Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:31:47.140Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:32:52.655Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:32:52.656Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:32:52.656Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:33:58.057Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:33:58.058Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:33:58.058Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:35:02.950Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:35:03.035Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:35:03.566Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:35:03.566Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:35:03.567Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:35:53.301Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:36:09.040Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:36:09.040Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:38:19.338Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:38:19.424Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.935Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:38:19.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:39:25.388Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:39:25.388Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:39:25.389Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:40:30.843Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:40:30.843Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:40:30.844Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T10:41:35.688Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T10:41:35.762Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:41:36.314Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:41:36.314Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:41:36.314Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:45:01.667Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:45:01.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:45:01.669Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:45:19.605Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T10:46:07.133Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:46:07.133Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:46:07.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:47:46.283Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:47:46.283Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:47:46.284Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:49:57.143Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:49:57.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:49:57.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:49:57.145Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:51:34.403Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:51:34.404Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:51:34.404Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:53:13.566Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:53:13.567Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:53:13.567Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T10:57:01.721Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:01:30.811Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:01:30.812Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.765Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.766Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.766Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.767Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:41.767Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T11:03:56.466Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:56.986Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:56.987Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:03:56.987Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.008Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.009Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.010Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.010Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:11:52.010Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.379Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.380Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.380Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.380Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.381Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.381Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.382Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.382Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.382Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.383Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.383Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.383Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.383Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:18:40.384Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:19:30.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:19:30.093Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:19:30.093Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:20:35.523Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:20:35.524Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:20:35.524Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:21:40.902Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:21:40.903Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:21:40.903Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:22:46.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:22:46.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:22:46.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:07.520Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:07.521Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:07.521Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:07.521Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:24:26.008Z"} +{"ip":"::ffff:172.18.0.1","level":"error","message":"Error: Cannot use a pool after calling end on the pool","method":"GET","stack":"Error: Cannot use a pool after calling end on the pool\n at /app/node_modules/pg-pool/index.js:45:11\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async PGStore._asyncQuery (/app/node_modules/connect-pg-simple/index.js:322:21)","timestamp":"2025-06-28T11:27:10.339Z","url":"/api/auth/identities"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:44:20.761Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:51:02.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:51:02.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:51:02.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T11:51:02.910Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T11:54:41.720Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T12:00:57.128Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:00:57.129Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:00:57.130Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:02.574Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:02.575Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:02.576Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:02:17.271Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:02:17.360Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:18.316Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:18.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:02:18.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.065Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.066Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.067Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.067Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.067Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.068Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:07:49.069Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:08:54.560Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:08:54.560Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:08:54.560Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:09:55.180Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:09:55.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:09:56.213Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:09:56.214Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:09:56.214Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:11:00.661Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:11:00.737Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:11:01.682Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:11:01.682Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:11:01.683Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:13:11.453Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:13:11.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.504Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:13:12.505Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:14:02.028Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T12:14:16.748Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T12:14:16.837Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:14:17.747Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T12:14:17.748Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.982Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.983Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.984Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.984Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.985Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.985Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.985Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:22.986Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:41.121Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:28:41.122Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T15:29:27.959Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:29:27.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:29:27.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.720Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:06.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:56.013Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:31:56.014Z"} +{"level":"error","message":"IMAP connection error during check: This socket has been ended by the other party","timestamp":"2025-06-28T15:32:21.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.907Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.908Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:35:09.909Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:36:14.859Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:36:14.860Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:36:14.860Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.654Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.655Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.655Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.656Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.656Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:23.657Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:38:39.331Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:39:43.819Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:39:43.819Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:39:43.819Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.442Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:42:23.444Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:43:27.920Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:43:27.920Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:43:27.921Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.543Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:48:23.544Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T15:51:50.967Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.151Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.152Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.153Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:13.153Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:52:32.149Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:53:38.348Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:53:38.350Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:53:38.350Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:06.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:56:38.162Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:57:44.595Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:57:44.596Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T15:57:44.596Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T15:58:43.671Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.625Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.626Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.626Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.626Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.627Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.627Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.627Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.628Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:01:03.628Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.061Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.062Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.063Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:04.064Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:35.829Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:06:54.965Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:07:10.626Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:07:42.286Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.443Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.444Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.444Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.445Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.445Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.445Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:32:45.445Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.589Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.590Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.590Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.590Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.592Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.593Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:37.594Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T16:41:55.423Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:56.023Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:56.024Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:41:56.024Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:43:02.854Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:43:02.855Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:43:02.855Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:44:09.464Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:44:09.465Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:44:09.465Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.419Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.420Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.420Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.420Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.420Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T16:46:22.421Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.324Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.325Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.326Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.326Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.327Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.327Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.327Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.328Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:24:50.328Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.629Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:06.631Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:22.959Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:22.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:28:22.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:29:12.026Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:30:33.246Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T20:30:33.396Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.025Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.026Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.027Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.028Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:30:34.028Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.415Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.415Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.415Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.416Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.416Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:33:50.416Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:34:59.534Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:34:59.535Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:34:59.535Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:36:01.200Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:36:01.200Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:36:01.201Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.668Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.669Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:39:17.670Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:40:26.783Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:40:26.784Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:40:26.784Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:42:33.090Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.018Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:42:34.019Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:43:22.894Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:43:38.916Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T20:43:39.104Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:43:39.513Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:43:39.513Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:44:28.531Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:44:44.231Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T20:44:44.463Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:44:44.956Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:44:44.957Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:45:50.322Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:45:50.322Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:45:50.322Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:46:39.230Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:46:55.841Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:46:55.841Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.646Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.646Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.647Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.647Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.648Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.649Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.649Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.650Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.650Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.651Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.651Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:51:17.651Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:52:22.996Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:52:22.997Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:52:22.997Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T20:53:27.955Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T20:53:28.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:53:28.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:53:28.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:53:28.601Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:54:17.466Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:54:37.747Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:54:37.748Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:55:39.354Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:55:39.354Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T20:55:39.354Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.335Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.335Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.336Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.336Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.336Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.336Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.337Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.337Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.337Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.337Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.338Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:00:01.338Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:01:51.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:01:51.960Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:01:51.961Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:01:51.961Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:02:15.912Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:02:15.913Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:04:06.590Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:04:06.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:04:06.591Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:04:06.592Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:07:38.980Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:07:39.167Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.570Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.571Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.571Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.571Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.572Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.573Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:07:39.573Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:09:49.799Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:09:49.987Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.577Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:09:50.578Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:10:55.231Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:10:55.419Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:10:56.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:10:56.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:10:56.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:11:41.118Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:12:46.699Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:12:46.700Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:12:46.700Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.630Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:15:17.631Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:16:23.127Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:16:23.128Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:16:23.129Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:17:28.050Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:17:28.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:17:28.735Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:17:28.735Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:17:28.735Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.703Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.704Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.704Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:19:39.705Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:20:44.554Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:20:44.742Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:20:45.146Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:20:45.146Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:20:45.147Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:21:50.546Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:21:50.547Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:21:50.547Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:22:56.000Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:22:56.001Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:22:56.001Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:23:41.939Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:24:01.352Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:24:01.353Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:25:05.956Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:25:06.122Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:25:06.832Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:25:06.833Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:25:06.833Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:26:12.407Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:26:12.408Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:26:12.411Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:28:22.639Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:28:22.745Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.362Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.362Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.362Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.362Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.363Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:28:23.363Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.083Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.084Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:30:34.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:31:39.606Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:31:39.607Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:31:39.607Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:32:24.865Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:32:44.207Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:32:44.398Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:32:45.053Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:32:45.054Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.003Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.004Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.004Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.005Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.005Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.011Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.012Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.012Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:37:07.012Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:38:16.453Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:38:16.453Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:38:16.453Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:39:17.728Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:39:17.728Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:39:17.728Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:40:23.177Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:40:23.177Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:40:23.177Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:42:33.028Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:42:33.106Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.092Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.093Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.093Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:42:34.093Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:43:38.489Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:43:38.564Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:43:39.562Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:43:39.562Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:43:39.562Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:44:25.489Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:44:48.622Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:44:48.622Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:45:50.502Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:45:50.502Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:45:50.502Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T21:46:54.837Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T21:46:54.923Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:46:55.946Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:46:55.946Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:46:55.947Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:48:01.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:48:01.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:48:01.414Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:49:52.740Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:49:52.741Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:49:52.741Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:49:52.741Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:50:58.224Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:50:58.225Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:50:58.225Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.229Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.230Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.230Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.230Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:52:23.230Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T21:53:44.084Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T21:55:04.019Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:55:04.020Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:55:04.021Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T21:55:19.257Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:56:04.013Z"} +{"level":"error","message":"Uncaught Exception: Not authenticated","stack":"Error: Not authenticated\n at Connection.openBox (/app/node_modules/imap/lib/Connection.js:409:11)\n at Connection. (/app/services/emailBot.js:105:19)\n at Object.onceWrapper (node:events:638:28)\n at Connection.emit (node:events:536:35)\n at Connection. (/app/node_modules/imap/lib/Connection.js:1623:12)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)","timestamp":"2025-06-28T21:57:03.687Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:58:13.832Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:58:13.832Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:58:13.832Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:58:13.833Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:59:19.293Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T21:59:19.293Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T22:03:40.620Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T22:03:40.717Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.191Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.191Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.192Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.192Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.192Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.192Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.193Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:03:41.193Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:04:46.610Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:04:46.610Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:05:52.095Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:05:52.095Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:06:57.576Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:06:57.577Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:07:59.510Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:07:59.511Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:09:08.455Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:09:08.456Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:10:13.924Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:10:13.924Z"} +{"level":"error","message":"Uncaught Exception: Cannot set properties of undefined (setting 'name')","stack":"TypeError: Cannot set properties of undefined (setting 'name')\n at Connection. (/app/node_modules/imap/lib/Connection.js:431:22)\n at Connection._resTagged (/app/node_modules/imap/lib/Connection.js:1535:22)\n at Parser. (/app/node_modules/imap/lib/Connection.js:194:10)\n at Parser.emit (node:events:524:28)\n at Parser._resTagged (/app/node_modules/imap/lib/Parser.js:175:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:139:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)","timestamp":"2025-06-28T22:11:18.728Z"} +{"level":"error","message":"Uncaught Exception: Cannot read properties of undefined (reading 'type')","stack":"TypeError: Cannot read properties of undefined (reading 'type')\n at Connection._resUntagged (/app/node_modules/imap/lib/Connection.js:1265:52)\n at Parser. (/app/node_modules/imap/lib/Connection.js:191:10)\n at Parser.emit (node:events:524:28)\n at Parser._resUntagged (/app/node_modules/imap/lib/Parser.js:271:10)\n at Parser._parse (/app/node_modules/imap/lib/Parser.js:137:16)\n at Parser._tryread (/app/node_modules/imap/lib/Parser.js:82:15)\n at Parser._cbReadable (/app/node_modules/imap/lib/Parser.js:53:12)\n at TLSSocket.emit (node:events:524:28)\n at emitReadable_ (node:internal/streams/readable:834:12)\n at process.processTicksAndRejections (node:internal/process/task_queues:81:21)","timestamp":"2025-06-28T22:11:18.809Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:11:19.395Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:11:19.396Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:12:24.847Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:12:24.848Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:13:30.317Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:13:30.318Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:14:35.789Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:14:35.790Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:15:41.249Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:15:41.249Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:16:46.673Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:16:46.674Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:17:48.675Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:17:48.675Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:18:54.728Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:18:54.729Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:20:00.240Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:20:00.241Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:21:05.725Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:21:05.726Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:22:11.171Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:22:11.172Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:23:16.660Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:23:16.661Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:24:22.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:24:22.085Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:25:32.936Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:25:32.936Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:25:55.027Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:26:22.819Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:26:32.996Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:26:32.997Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:27:38.470Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:27:38.473Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:28:43.934Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:28:43.934Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:29:49.405Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:29:49.405Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:30:16.913Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:30:54.767Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:30:54.767Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:32:00.270Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:32:00.270Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:33:05.751Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:33:05.751Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:34:11.240Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:34:11.240Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:34:38.757Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:35:04.053Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:35:16.705Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:35:16.705Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:35:44.203Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:36:09.484Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:36:22.157Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:36:22.158Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:36:49.658Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:37:27.606Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:37:27.607Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:37:55.134Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:38:33.022Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:38:33.022Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:39:00.586Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:39:25.864Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:39:38.497Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:39:38.497Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:40:06.022Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:40:31.297Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:40:43.964Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:40:43.965Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:41:11.497Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:41:36.751Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:41:49.419Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:41:49.419Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:42:16.948Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:42:42.202Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:42:54.882Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:42:54.882Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:43:22.397Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:44:00.318Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:44:00.318Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:44:27.864Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:44:53.110Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:45:05.780Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:45:05.781Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:45:33.328Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:45:58.553Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:46:11.251Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:46:11.251Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:46:38.781Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:47:04.028Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:47:16.709Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:47:16.710Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:47:44.225Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:48:09.475Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:48:22.147Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:48:22.147Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:48:49.695Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:49:14.932Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:49:27.574Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:49:27.574Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:49:55.145Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T22:50:20.384Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:50:33.074Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:50:33.075Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:51:00.588Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:51:38.535Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:51:38.536Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:52:06.048Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:52:43.999Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:52:44.000Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:53:11.497Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:53:49.453Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:53:49.454Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:54:16.962Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:54:54.916Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:54:54.917Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:55:22.428Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:56:00.373Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:56:00.373Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:56:27.878Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:57:05.833Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:57:05.834Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:57:33.355Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:58:11.267Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:58:11.268Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:58:38.792Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:59:16.721Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T22:59:16.721Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T22:59:44.265Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:00:22.171Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:00:22.172Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:00:49.735Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:01:27.652Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:01:27.652Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:01:55.196Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:02:33.144Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:02:33.145Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:03:00.658Z"} +{"code":"EPIPE","level":"error","message":"Uncaught Exception: This socket has been ended by the other party","source":"socket","stack":"Error: This socket has been ended by the other party\n at genericNodeError (node:internal/errors:984:15)\n at wrappedFn (node:internal/errors:538:14)\n at Socket.writeAfterFIN [as write] (node:net:566:14)\n at JSStreamSocket.doWrite (node:internal/js_stream_socket:199:19)\n at JSStream.onwrite (node:internal/js_stream_socket:35:57)\n at Socket._final (node:net:537:28)\n at prefinish (node:internal/streams/writable:916:14)\n at finishMaybe (node:internal/streams/writable:930:5)\n at Writable.end (node:internal/streams/writable:845:5)\n at Socket.end (node:net:728:31)","timestamp":"2025-06-28T23:03:25.807Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:03:38.549Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:03:38.550Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:04:06.113Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:04:44.075Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:04:44.076Z"} +{"level":"error","message":"Uncaught Exception: Timed out while connecting to server","source":"timeout","stack":"Error: Timed out while connecting to server\n at Timeout._onTimeout (/app/node_modules/imap/lib/Connection.js:280:15)\n at listOnTimeout (node:internal/timers:581:17)\n at process.processTimers (node:internal/timers:519:7)","timestamp":"2025-06-28T23:05:11.586Z"} +{"level":"error","message":"[EmailBot] IMAP connection error: Timed out while authenticating with server","timestamp":"2025-06-28T23:06:53.889Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:06:53.890Z"} +{"level":"error","message":"IMAP connection error during check: Timed out while authenticating with server","timestamp":"2025-06-28T23:06:53.890Z"} diff --git a/backend/package.json b/backend/package.json index 51e0a68..94522c4 100644 --- a/backend/package.json +++ b/backend/package.json @@ -31,6 +31,7 @@ "@openzeppelin/contracts": "5.2.0", "archiver": "^7.0.1", "axios": "^1.8.4", + "cloudflare": "^4.4.1", "connect-pg-simple": "^10.0.0", "cookie": "^1.0.2", "cors": "^2.8.5", diff --git a/backend/routes/cloudflare.js b/backend/routes/cloudflare.js new file mode 100644 index 0000000..0ab0ae2 --- /dev/null +++ b/backend/routes/cloudflare.js @@ -0,0 +1,323 @@ +const express = require('express'); +const router = express.Router(); +let Cloudflare; +try { + Cloudflare = require('cloudflare'); +} catch (e) { + Cloudflare = null; +} +const db = require('../db'); +const fs = require('fs'); +const path = require('path'); +const { exec } = require('child_process'); +const dockerComposePath = path.join(__dirname, '../../docker-compose.cloudflared.yml'); +const { addCloudflaredToCompose } = require('../utils/cloudflaredCompose'); +const { writeCloudflaredEnv } = require('../cloudflaredEnv'); +const axios = require('axios'); +const credentialsDir = '/home/alex/DApp-for-Business/.cloudflared'; +const tunnelName = 'hb3-accelerator'; // или из настроек + +// --- Вспомогательные функции --- +async function getSettings() { + const { rows } = await db.query('SELECT * FROM cloudflare_settings ORDER BY id DESC LIMIT 1'); + return rows[0] || {}; +} +async function upsertSettings(fields) { + const current = await getSettings(); + if (current.id) { + const updates = []; + const values = []; + let idx = 1; + for (const [k, v] of Object.entries(fields)) { + updates.push(`${k} = $${idx}`); + values.push(v); + idx++; + } + values.push(current.id); + await db.query(`UPDATE cloudflare_settings SET ${updates.join(', ')}, updated_at = NOW() WHERE id = $${idx}`, values); + } else { + const keys = Object.keys(fields); + const values = Object.values(fields); + await db.query(`INSERT INTO cloudflare_settings (${keys.join(',')}) VALUES (${keys.map((_,i)=>`$${i+1}`).join(',')})` , values); + } +} +function generateDockerCompose(tunnelToken) { + return `version: '3.8' +services: + cloudflared: + image: cloudflare/cloudflared:latest + command: tunnel --no-autoupdate run + environment: + - TUNNEL_TOKEN=${tunnelToken} + restart: unless-stopped +`; +} +function runDockerCompose() { + return new Promise((resolve, reject) => { + exec(`docker-compose -f ${dockerComposePath} up -d cloudflared`, (err, stdout, stderr) => { + if (err) return reject(stderr || err.message); + resolve(stdout); + }); + }); +} +function checkCloudflaredStatus() { + return new Promise((resolve) => { + exec('docker ps --filter "name=cloudflared" --format "{{.Status}}"', (err, stdout) => { + if (err) return resolve('not_installed'); + if (stdout.trim()) return resolve('running'); + resolve('not_running'); + }); + }); +} + +// --- API --- +// Получить все настройки +router.get('/settings', async (req, res) => { + try { + const settings = await getSettings(); + res.json({ success: true, settings }); + } catch (e) { + res.json({ success: false, message: 'Ошибка получения настроек: ' + e.message }); + } +}); +// Сохранить API Token +router.post('/token', async (req, res) => { + const { token } = req.body; + if (!token) return res.status(400).json({ success: false, message: 'Token required' }); + try { + await upsertSettings({ api_token: token }); + res.json({ success: true, message: 'API Token сохранён!' }); + } catch (e) { + res.json({ success: false, message: 'Ошибка сохранения токена: ' + e.message }); + } +}); +// Получить список аккаунтов пользователя по API Token +router.post('/accounts', async (req, res) => { + const { api_token } = req.body; + if (!api_token) return res.status(400).json({ success: false, message: 'Token required' }); + try { + const resp = await axios.get('https://api.cloudflare.com/client/v4/accounts', { + headers: { Authorization: `Bearer ${api_token}` } + }); + res.json({ success: true, accounts: resp.data.result }); + } catch (e) { + res.json({ success: false, message: 'Ошибка Cloudflare API: ' + e.message }); + } +}); +// Сохранить выбранный account_id +router.post('/account-id', async (req, res) => { + const { account_id } = req.body; + if (!account_id) return res.status(400).json({ success: false, message: 'Account ID required' }); + try { + await upsertSettings({ account_id }); + res.json({ success: true, message: 'Account ID сохранён!' }); + } catch (e) { + res.json({ success: false, message: 'Ошибка сохранения Account ID: ' + e.message }); + } +}); +// Новый /domain: полный цикл автоматизации через Cloudflare API +router.post('/domain', async (req, res) => { + const steps = []; + try { + // 1. Сохраняем домен, если он пришёл с фронта + const { domain: domainFromBody } = req.body; + if (domainFromBody) { + await upsertSettings({ domain: domainFromBody }); + } + // 2. Получаем актуальные настройки + const settings = await getSettings(); + const { api_token, domain, account_id, tunnel_id, tunnel_token } = settings; + if (!api_token || !domain || !account_id) { + return res.json({ success: false, error: 'Не все параметры Cloudflare заданы (api_token, domain, account_id)' }); + } + let tunnelId = tunnel_id; + let tunnelToken = tunnel_token; + // 1. Создание туннеля через Cloudflare API (только если нет tunnel_id) + if (!tunnelId || !tunnelToken) { + try { + const tunnelName = `dapp-tunnel-${domain}`; + const tunnelResp = await axios.post( + `https://api.cloudflare.com/client/v4/accounts/${account_id}/cfd_tunnel`, + { name: tunnelName }, + { headers: { Authorization: `Bearer ${api_token}` } } + ); + tunnelId = tunnelResp.data.result.id; + tunnelToken = tunnelResp.data.result.token; + console.log('[Cloudflare] Получен tunnelId:', tunnelId, 'tunnelToken:', tunnelToken); + // Сохраняем tunnel_id и tunnel_token в базу + await upsertSettings({ tunnel_id: tunnelId, tunnel_token: tunnelToken, api_token, account_id, domain }); + steps.push({ step: 'create_tunnel', status: 'ok', message: 'Туннель создан через Cloudflare API и все параметры сохранены.' }); + } catch (e) { + steps.push({ step: 'create_tunnel', status: 'error', message: 'Ошибка создания туннеля: ' + e.message }); + return res.json({ success: false, steps, error: e.message }); + } + } else { + steps.push({ step: 'use_existing_tunnel', status: 'ok', message: 'Используется существующий туннель.' }); + } + // 2. Сохранение tunnel_token в cloudflared.env + try { + writeCloudflaredEnv({ tunnelToken, domain }); + steps.push({ step: 'save_token', status: 'ok', message: 'TUNNEL_TOKEN сохранён в cloudflared.env.' }); + } catch (e) { + steps.push({ step: 'save_token', status: 'error', message: 'Ошибка сохранения tunnel_token: ' + e.message }); + return res.json({ success: false, steps, error: e.message }); + } + // 3. Создание маршрута (ingress) через Cloudflare API + try { + await axios.put( + `https://api.cloudflare.com/client/v4/accounts/${account_id}/cfd_tunnel/${tunnelId}/configurations`, + { + config: { + ingress: [ + { hostname: domain, service: 'http://dapp-frontend:5173' }, + { service: 'http_status:404' } + ] + } + }, + { headers: { Authorization: `Bearer ${api_token}` } } + ); + steps.push({ step: 'create_route', status: 'ok', message: 'Маршрут для домена создан.' }); + } catch (e) { + let errorMsg = e.message; + if (e.response && e.response.data) { + errorMsg += ' | ' + JSON.stringify(e.response.data); + } + steps.push({ step: 'create_route', status: 'error', message: 'Ошибка создания маршрута: ' + errorMsg }); + return res.json({ success: false, steps, error: errorMsg }); + } + // 4. Перезапуск cloudflared через cloudflared-agent + try { + await axios.post('http://cloudflared-agent:9000/cloudflared/restart'); + steps.push({ step: 'restart_cloudflared', status: 'ok', message: 'cloudflared перезапущен.' }); + } catch (e) { + steps.push({ step: 'restart_cloudflared', status: 'error', message: 'Ошибка перезапуска cloudflared: ' + e.message }); + return res.json({ success: false, steps, error: e.message }); + } + // 5. Возврат app_url + res.json({ + success: true, + app_url: `https://${domain}`, + message: 'Туннель и маршрут успешно созданы. Ваше приложение доступно по ссылке.', + steps + }); + } catch (e) { + steps.push({ step: 'fatal', status: 'error', message: e.message }); + res.json({ success: false, steps, error: e.message }); + } +}); +// Проверить домен через Cloudflare API (опционально) +router.post('/check-domain', async (req, res) => { + if (!Cloudflare) return res.json({ success: false, message: 'Cloudflare не доступен на сервере' }); + const { api_token, domain } = req.body; + if (!api_token || !domain) return res.status(400).json({ success: false, message: 'Token и domain обязательны' }); + try { + const cf = new Cloudflare({ apiToken: api_token }); + const zones = await cf.zones.browse(); + const found = zones.result.find(z => z.name === domain); + if (!found) return res.status(400).json({ success: false, message: 'Домен не найден в Cloudflare аккаунте' }); + res.json({ success: true, message: 'Домен найден в Cloudflare аккаунте' }); + } catch (e) { + res.json({ success: false, message: 'Ошибка Cloudflare API: ' + e.message }); + } +}); +// Установить Cloudflared в Docker (добавить в compose и запустить) +router.post('/install', async (req, res) => { + console.log('[CloudflareInstall] Запрос на установку cloudflared'); + const settings = await getSettings(); + console.log('[CloudflareInstall] Текущие настройки:', settings); + if (!settings.tunnel_token) { + console.warn('[CloudflareInstall] Нет tunnel_token, установка невозможна'); + return res.status(400).json({ success: false, message: 'Сначала сохраните Tunnel Token' }); + } + try { + console.log('[CloudflareInstall] Запись cloudflared.env...'); + writeCloudflaredEnv({ tunnelToken: settings.tunnel_token, domain: settings.domain }); + console.log('[CloudflareInstall] Перезапуск cloudflared через docker compose...'); + exec('docker-compose up -d cloudflared', (err, stdout, stderr) => { + if (err) { + console.error('[CloudflareInstall] Ошибка docker compose:', stderr || err.message); + return res.json({ success: false, message: 'Ошибка docker compose: ' + (stderr || err.message) }); + } + console.log('[CloudflareInstall] Cloudflared перезапущен:', stdout); + res.json({ success: true, message: 'Cloudflared переменные обновлены и контейнер перезапущен!' }); + }); + } catch (e) { + console.error('[CloudflareInstall] Ошибка:', e); + res.json({ success: false, message: 'Ошибка: ' + (e.message || e) }); + } +}); +// Получить статус Cloudflared, домена и туннеля +router.get('/status', async (req, res) => { + const status = await checkCloudflaredStatus(); + const settings = await getSettings(); + let domainStatus = 'not_configured'; + let domainMsg = 'Cloudflare не настроен'; + let tunnelStatus = 'not_configured'; + let tunnelMsg = 'Cloudflare не настроен'; + if (!Cloudflare) { + return res.json({ + success: true, + status, + domainStatus: 'not_available', + domainMsg: 'Пакет cloudflare не установлен', + tunnelStatus: 'not_available', + tunnelMsg: 'Пакет cloudflare не установлен', + message: 'Cloudflare не доступен на сервере' + }); + } + if (settings.api_token && settings.domain) { + try { + const cf = new Cloudflare({ apiToken: settings.api_token }); + const zonesResp = await cf.zones.list(); + const zones = zonesResp.result; + const found = zones.find(z => z.name === settings.domain); + if (found) { + domainStatus = 'ok'; + domainMsg = 'Домен найден в Cloudflare аккаунте'; + } else { + domainStatus = 'not_found'; + domainMsg = 'Домен не найден в Cloudflare аккаунте'; + } + } catch (e) { + domainStatus = 'error'; + domainMsg = 'Ошибка Cloudflare API: ' + e.message; + } + } + if (settings.api_token && settings.tunnel_token && Cloudflare) { + try { + const cf = new Cloudflare({ apiToken: settings.api_token }); + const zonesResp = await cf.zones.list(); + const zones = zonesResp.result; + const zone = zones.find(z => settings.domain.endsWith(z.name)); + if (!zone) throw new Error('Зона для домена не найдена в Cloudflare'); + const accountId = zone.account.id; + const tunnelsResp = await axios.get( + `https://api.cloudflare.com/client/v4/accounts/${accountId}/cfd_tunnel`, + { headers: { Authorization: `Bearer ${settings.api_token}` } } + ); + const tunnels = tunnelsResp.data.result; + const foundTunnel = tunnels.find(t => settings.tunnel_token.includes(t.id)); + if (foundTunnel) { + tunnelStatus = foundTunnel.status || 'active'; + tunnelMsg = `Туннель найден: ${foundTunnel.name || foundTunnel.id}, статус: ${foundTunnel.status}`; + } else { + tunnelStatus = 'not_found'; + tunnelMsg = 'Туннель не найден в Cloudflare аккаунте'; + } + } catch (e) { + tunnelStatus = 'error'; + tunnelMsg = 'Ошибка Cloudflare API (туннель): ' + e.message; + } + } + res.json({ + success: true, + status, + domainStatus, + domainMsg, + tunnelStatus, + tunnelMsg, + message: `Cloudflared статус: ${status}, домен: ${domainStatus}, туннель: ${tunnelStatus}` + }); +}); + +module.exports = router; \ No newline at end of file diff --git a/backend/utils/cloudflaredCompose.js b/backend/utils/cloudflaredCompose.js new file mode 100644 index 0000000..a3612a8 --- /dev/null +++ b/backend/utils/cloudflaredCompose.js @@ -0,0 +1,38 @@ +const fs = require('fs'); +const path = require('path'); +const yaml = require('js-yaml'); + +const composePath = '/docker-compose.yml'; + +function addCloudflaredToCompose(tunnelToken) { + console.log('[cloudflaredCompose] process.cwd():', process.cwd()); + console.log('[cloudflaredCompose] __dirname:', __dirname); + console.log('[cloudflaredCompose] Ожидаемый путь к compose:', composePath); + if (!fs.existsSync(composePath)) { + console.error('[cloudflaredCompose] Файл не найден:', composePath); + throw new Error('docker-compose.yml не найден по пути: ' + composePath); + } + let doc; + try { + doc = yaml.load(fs.readFileSync(composePath, 'utf8')); + } catch (e) { + console.error('[cloudflaredCompose] Ошибка чтения compose:', e); + throw e; + } + doc.services = doc.services || {}; + doc.services.cloudflared = { + image: 'cloudflare/cloudflared:latest', + command: 'tunnel --no-autoupdate run', + environment: [`TUNNEL_TOKEN=${tunnelToken}`], + restart: 'unless-stopped' + }; + try { + fs.writeFileSync(composePath, yaml.dump(doc), 'utf8'); + console.log('[cloudflaredCompose] cloudflared добавлен в compose:', composePath); + } catch (e) { + console.error('[cloudflaredCompose] Ошибка записи compose:', e); + throw e; + } +} + +module.exports = { addCloudflaredToCompose }; \ No newline at end of file diff --git a/backend/yarn.lock b/backend/yarn.lock index 76d8d44..b81c799 100644 --- a/backend/yarn.lock +++ b/backend/yarn.lock @@ -2047,6 +2047,19 @@ cliui@^8.0.1: strip-ansi "^6.0.1" wrap-ansi "^7.0.0" +cloudflare@^4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/cloudflare/-/cloudflare-4.4.1.tgz#a3a395b2eed46e6b2e5175a62cc962267cef3981" + integrity sha512-wrtQ9WMflnfRcmdQZf/XfVVkeucgwzzYeqFDfgbNdADTaexsPwrtt3etzUvPGvVUeEk9kOPfNkl8MSzObxrIsg== + dependencies: + "@types/node" "^18.11.18" + "@types/node-fetch" "^2.6.4" + abort-controller "^3.0.0" + agentkeepalive "^4.2.1" + form-data-encoder "1.7.2" + formdata-node "^4.3.2" + node-fetch "^2.6.7" + color-convert@^1.9.0, color-convert@^1.9.3: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" diff --git a/cloudflared-agent.js b/cloudflared-agent.js new file mode 100644 index 0000000..811e83a --- /dev/null +++ b/cloudflared-agent.js @@ -0,0 +1,17 @@ +const express = require('express'); +const { exec } = require('child_process'); +const app = express(); +app.use(express.json()); + +app.post('/cloudflared/restart', (req, res) => { + exec('docker-compose up -d cloudflared', (err, stdout, stderr) => { + if (err) { + return res.status(500).json({ success: false, message: stderr || err.message }); + } + res.json({ success: true, message: 'cloudflared перезапущен', output: stdout }); + }); +}); + +app.listen(9000, '0.0.0.0', () => { + console.log('Cloudflared agent listening on 0.0.0.0:9000'); +}); \ No newline at end of file diff --git a/cloudflared-linux-amd64.deb b/cloudflared-linux-amd64.deb new file mode 100644 index 0000000..e6dc494 Binary files /dev/null and b/cloudflared-linux-amd64.deb differ diff --git a/cloudflared.env b/cloudflared.env new file mode 100644 index 0000000..d641c1f --- /dev/null +++ b/cloudflared.env @@ -0,0 +1,2 @@ +TUNNEL_TOKEN=eyJhIjoiYTY3ODYxMDcyYTE0NGNkZDc0NmU5YzliZGQ4NDc2ZmUiLCJ0IjoiZmYwMDVkMTUtZjc4OC00NDI2LTg1NjAtNWRlZjI0MmEyYTE0IiwicyI6Ik5tVTFNakkzWXpJdE5XWTFOUzAwT1RCaExXSTFOamN0TWpnMU1EQTRaak5sTmpJeSJ9 +DOMAIN=dapp.hb3-accelerator.com diff --git a/docker-compose.yml b/docker-compose.yml index ba8dc06..85da063 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -# version: '3.8' - services: postgres: image: postgres:16-alpine @@ -13,13 +11,14 @@ services: POSTGRES_USER: ${DB_USER:-dapp_user} POSTGRES_PASSWORD: ${DB_PASSWORD:-dapp_password} ports: - - "5432:5432" + - '5432:5432' healthcheck: - test: ["CMD-SHELL", "pg_isready -U ${DB_USER:-dapp_user} -d ${DB_NAME:-dapp_db}"] + test: + - CMD-SHELL + - pg_isready -U ${DB_USER:-dapp_user} -d ${DB_NAME:-dapp_db} interval: 5s timeout: 5s retries: 5 - ollama: image: ollama/ollama:latest container_name: dapp-ollama @@ -27,9 +26,8 @@ services: volumes: - ollama_data:/root/.ollama ports: - - "11434:11434" + - '11434:11434' command: serve - backend: build: context: ./backend @@ -44,6 +42,8 @@ services: volumes: - ./backend:/app - ./frontend/dist:/app/frontend_dist:ro + - ./cloudflared.env:/cloudflared.env + - /var/run/docker.sock:/var/run/docker.sock environment: - NODE_ENV=${NODE_ENV:-development} - PORT=${PORT:-8000} @@ -52,18 +52,16 @@ services: - DB_NAME=${DB_NAME:-dapp_db} - DB_USER=${DB_USER:-dapp_user} - DB_PASSWORD=${DB_PASSWORD:-dapp_password} - - DATABASE_URL=postgresql://${DB_USER:-dapp_user}:${DB_PASSWORD:-dapp_password}@postgres:5432/${DB_NAME:-dapp_db} + - >- + DATABASE_URL=postgresql://${DB_USER:-dapp_user}:${DB_PASSWORD:-dapp_password}@postgres:5432/${DB_NAME:-dapp_db} - OLLAMA_BASE_URL=http://ollama:11434 - OLLAMA_MODEL=${OLLAMA_MODEL:-qwen2.5:7b} - OLLAMA_EMBEDDINGS_MODEL=${OLLAMA_EMBEDDINGS_MODEL:-qwen2.5:7b} - FRONTEND_URL=http://localhost:5173 ports: - - "8000:8000" + - '8000:8000' extra_hosts: - - "host.docker.internal:host-gateway" - # command: sh -c "yarn run dev" # Временно комментируем эту строку - # command: nodemon server.js # Запускаем через nodemon - + - host.docker.internal:host-gateway frontend: build: context: ./frontend @@ -76,9 +74,8 @@ services: - ./frontend:/app - frontend_node_modules:/app/node_modules ports: - - "5173:5173" + - '5173:5173' command: yarn run dev -- --host 0.0.0.0 - ollama-setup: image: curlimages/curl:latest container_name: dapp-ollama-setup @@ -95,9 +92,42 @@ services: curl -X POST http://ollama:11434/api/pull -d '{\"name\":\"${OLLAMA_MODEL:-qwen2.5:7b}\"}' -H 'Content-Type: application/json' echo 'Done!' " - + cloudflared: + build: + context: . + dockerfile: Dockerfile.cloudflared + restart: unless-stopped + volumes: + - ./start-cloudflared.sh:/start-cloudflared.sh + - ./cloudflared.env:/cloudflared.env + - ./.cloudflared:/etc/cloudflared + depends_on: + - backend + dns: + - 1.1.1.1 + - 8.8.8.8 + healthcheck: + test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:39693/metrics", "||", "exit", "1"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 60s + environment: + - TUNNEL_METRICS=0.0.0.0:39693 + cloudflared-agent: + build: + context: . + dockerfile: Dockerfile.agent + container_name: dapp-cloudflared-agent + restart: unless-stopped + volumes: + - /var/run/docker.sock:/var/run/docker.sock + ports: + - "9000:9000" + depends_on: + - cloudflared volumes: - postgres_data: - ollama_data: - backend_node_modules: - frontend_node_modules: \ No newline at end of file + postgres_data: null + ollama_data: null + backend_node_modules: null + frontend_node_modules: null diff --git a/frontend/nginx.conf b/frontend/nginx.conf deleted file mode 100644 index d5c0c7c..0000000 --- a/frontend/nginx.conf +++ /dev/null @@ -1,28 +0,0 @@ -server { - listen 80; - server_name localhost; - - root /usr/share/nginx/html; - index index.html; - - # Поддержка SPA (Single Page Application) - location / { - try_files $uri $uri/ /index.html; - } - - # Настройка кеширования для статических файлов - location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ { - expires 30d; - add_header Cache-Control "public, no-transform"; - } - - # Настройка для API запросов на бэкенд - location /api/ { - proxy_pass http://backend:8000/; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection 'upgrade'; - proxy_set_header Host $host; - proxy_cache_bypass $http_upgrade; - } -} \ No newline at end of file diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js index 8f1f0a4..6c497a2 100644 --- a/frontend/src/router/index.js +++ b/frontend/src/router/index.js @@ -4,7 +4,8 @@ import HomeView from '../views/HomeView.vue'; const SettingsAiView = () => import('../views/settings/AiSettingsView.vue'); const SettingsBlockchainView = () => import('../views/settings/BlockchainSettingsView.vue'); const SettingsSecurityView = () => import('../views/settings/SecuritySettingsView.vue'); -const SettingsInterfaceView = () => import('../views/settings/InterfaceSettingsView.vue'); +const SettingsInterfaceView = () => import('../views/settings/Interface/InterfaceSettingsView.vue'); +const SettingsInterfaceCloudflareDetailsView = () => import('../views/settings/Interface/CloudflareDetailsView.vue'); import axios from 'axios'; import { setToStorage } from '../utils/storage.js'; @@ -52,6 +53,11 @@ const routes = [ name: 'settings-interface', component: SettingsInterfaceView, }, + { + path: 'interface/cloudflare-details', + name: 'settings-interface-cloudflare-details', + component: SettingsInterfaceCloudflareDetailsView, + }, { path: 'telegram', name: 'settings-telegram', diff --git a/frontend/src/views/settings/Interface/CloudflareDetailsView.vue b/frontend/src/views/settings/Interface/CloudflareDetailsView.vue new file mode 100644 index 0000000..e5bdc85 --- /dev/null +++ b/frontend/src/views/settings/Interface/CloudflareDetailsView.vue @@ -0,0 +1,307 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/views/settings/Interface/InterfaceSettingsView.vue b/frontend/src/views/settings/Interface/InterfaceSettingsView.vue new file mode 100644 index 0000000..0eb5da4 --- /dev/null +++ b/frontend/src/views/settings/Interface/InterfaceSettingsView.vue @@ -0,0 +1,71 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/views/settings/InterfaceSettingsView.vue b/frontend/src/views/settings/InterfaceSettingsView.vue deleted file mode 100644 index b3983b5..0000000 --- a/frontend/src/views/settings/InterfaceSettingsView.vue +++ /dev/null @@ -1,114 +0,0 @@ - - - - - \ No newline at end of file diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 68ad2d1..e1c49cc 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -39,6 +39,7 @@ export default defineConfig({ server: { port: 5173, host: '0.0.0.0', + allowedHosts: ['dapp-frontend', 'localhost', '127.0.0.1', 'hb3-accelerator.com', 'dapp.hb3-accelerator.com'], proxy: { '/api': { target: 'http://dapp-backend:8000', diff --git a/start-cloudflared.sh b/start-cloudflared.sh new file mode 100755 index 0000000..2337058 --- /dev/null +++ b/start-cloudflared.sh @@ -0,0 +1,84 @@ +#!/bin/bash + +echo "==== Содержимое /cloudflared.env ====" +cat /cloudflared.env || echo "Файл не найден" +echo "====" + +# Получаем токен из переменной окружения или из файла +if [ -z "$TUNNEL_TOKEN" ] && [ -f /cloudflared.env ]; then + . /cloudflared.env +fi + +echo "TUNNEL_TOKEN=[$TUNNEL_TOKEN]" + +# Функция для проверки сети +check_network() { + echo "Проверка сетевого соединения..." + for addr in 1.1.1.1 8.8.8.8; do + if ping -c 1 -W 5 "$addr" > /dev/null 2>&1; then + echo "✓ Сеть доступна ($addr)" + return 0 + fi + done + echo "✗ Сетевые проблемы" + return 1 +} + +# Функция для проверки доступности backend +check_backend() { + echo "Проверка доступности backend..." + if curl -s --connect-timeout 5 http://backend:8000 >/dev/null 2>&1; then + echo "✓ Backend доступен" + return 0 + else + echo "✗ Backend недоступен" + return 1 + fi +} + +# Проверяем сеть перед запуском +echo "=== Проверка подключений ===" +check_network +check_backend + +# Проверяем наличие конфигурационного файла +echo "=== Проверка конфигурации ===" +if [ -f "/etc/cloudflared/config.yml" ]; then + echo "✓ Конфигурационный файл найден" + cat /etc/cloudflared/config.yml +else + echo "✗ Конфигурационный файл не найден" +fi + +if [ -f "/etc/cloudflared/a765a217-5312-48f8-9bb7-5a7ef56602b8.json" ]; then + echo "✓ Credentials файл найден" +else + echo "✗ Credentials файл не найден" +fi + +# Проверим доступность frontend +echo "=== Проверка frontend ===" +if curl -s --connect-timeout 5 http://dapp-frontend:5173 >/dev/null 2>&1; then + echo "✓ Frontend доступен" +else + echo "✗ Frontend недоступен, fallback на backend" +fi + +# Запускаем cloudflared с токеном вместо конфигурационного файла +echo "=== Запуск cloudflared с токеном ===" +echo "Используем токен туннеля: ${TUNNEL_TOKEN:0:20}..." +exec cloudflared tunnel \ + --no-autoupdate \ + --edge-ip-version 4 \ + --protocol http2 \ + --retries 20 \ + --grace-period 60s \ + --loglevel info \ + --metrics 0.0.0.0:39693 \ + --proxy-connect-timeout 90s \ + --proxy-tls-timeout 90s \ + --proxy-tcp-keepalive 15s \ + --proxy-keepalive-timeout 120s \ + --proxy-keepalive-connections 10 \ + --proxy-no-happy-eyeballs \ + run --token "$TUNNEL_TOKEN" \ No newline at end of file diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index fb57ccd..0000000 --- a/yarn.lock +++ /dev/null @@ -1,4 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - -