লাইভ লগ পরিবর্তন

দেখ আমরা কী বিল্ডিং করছি, বাস্তব সময়ে। প্ল্যাটফর্মের সকল বৈশিষ্ট্য, সংশোধন এবং উন্নতি।.

17,896
মোট ফলাফল
4,600
IMAP-র বৈশিষ্ট্য
4,522
গণনা করো
32
প্রজেক্ট
প্রজেক্ট সহযোগে ফিল্টার করা হবে
সকল প্রজেক্ট17,896AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService364InitializerService299KBService74KlusterServices542MCPGatewayService43MediaService460RAGService61SecurityService1,519TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,565kamo-login318kamo-marketing584kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,320kamo-signer-monorepo50kamolos102
ধরন অনুসারে ফিল্টার করা হবে
সকল ধরনBuild24CI522Chore670Docs226Feature4,600Fix4,522Other6,781Performance136Refactor274Revert23Style48Test69Upgrade1
December 4, 2025
Featurekamo-internal

Add validation for required fields in lead imports

- Mark email, firstName, and lastName as required fields in leadFields.ts - Add validation in handleStartImport to check all required fields are mapped - Add va...

snadjafinia·9mo ago
OtherKlusterServices

Try sql_host, sql_user, sql_password, sql_db instead of connect or args

Based on error suggesting passdb_sql_args - maybe SQL settings use sql_ prefix - Named sections: passdb sql { and userdb sql { - driver = sql with sql_driver = ...

snadjafinia·9mo ago
OtherKlusterServices

Use args parameter with named sections - external SQL config file

Based on examples found: Dovecot 2.4 allows args with named sections - Named sections: passdb sql { and userdb sql { - driver = sql - args = **************** (r...

snadjafinia·9mo ago
FeatureSecurityService

Refactor LeadImportController to use LeadService.createLead

- Replace manual field mapping with LeadService.createLead for consistency - Add mapRowDataToCreateLeadRequest to convert import mappings to CreateLeadRequest -...

snadjafinia·9mo ago
Featurekamo-internal

Add dynamic field mapping for lead imports based on market configuration

- Update leadFields.ts to include mortgage fields and getAllSystemFields function - Add MORTGAGE_FIELDS array with all LeadClaimMortgage fields - Update LeadMan...

snadjafinia·9mo ago
FixKlusterServices

Use driver=sql with sql_driver=mysql and inline connect

Based on official Dovecot 2.4 examples found online: - Named sections: passdb sql { and userdb sql { - driver = sql (not driver = mysql) - sql_driver = mysql (s...

snadjafinia·9mo ago
FixKlusterServices

Use driver=mysql (not driver=sql) with inline connect in Dovecot 2.4

Based on official Dovecot 2.4 examples: - Named sections: passdb sql { and userdb sql { - Use driver = mysql (not driver = sql) - Inline connect, default_pass_s...

snadjafinia·9mo ago
OtherKlusterServices

Try using args parameter with named sections in Dovecot 2.4

- Use 'passdb sql {' and 'userdb sql {' (named sections required) - Use 'driver = sql' with 'args = **************** - Maybe args works with named sections even...

snadjafinia·9mo ago
OtherKlusterServices

Add names to passdb/userdb sections (required in Dovecot 2.4)

- Use 'passdb sql {' and 'userdb sql {' with named sections - Keep SQL settings inline (no args parameter) - Both requirements: named sections AND inline SQL se...

snadjafinia·9mo ago
OtherKlusterServices

Remove duplicate driver line - use driver=mysql directly

snadjafinia·9mo ago
FixKlusterServices

Dovecot 2.4 requires SQL settings inline, not args parameter

- Dovecot 2.4 removed 'args' parameter for passdb/userdb - SQL connection settings must be specified directly in passdb/userdb blocks - Put driver=mysql, connec...

snadjafinia·9mo ago
OtherKlusterServices

Fix Dovecot 2.4 passdb/userdb - must have names (passdb sql, userdb sql)

- Dovecot 2.4 requires named passdb/userdb sections - Changed from 'passdb {' to 'passdb sql {' - Changed from 'userdb {' to 'userdb sql {'

snadjafinia·9mo ago
Featurekamo-internal

Remove all mock data and make leads system production-ready

- Remove all mock data generation from leadsApi.ts (mockStore, ensureMock, faker.js) - Remove withMock wrapper function and all fallback logic - Remove generate...

snadjafinia·9mo ago
OtherKlusterServices

Fix passdb syntax - use separate auth-sql.conf.ext file

- Create auth-sql.conf.ext with proper passdb/userdb blocks - Include it in 10-auth.conf instead of inline blocks - This fixes 'passdb { } is missing section na...

snadjafinia·9mo ago
OtherKlusterServices

Fix Dovecot config - use proper config files (10-mail.conf, 10-auth.conf, 10-master.conf)

- Override mail_location in 10-mail.conf (where it belongs) - Configure SQL auth in 10-auth.conf - Configure services in 10-master.conf - This matches Dovecot's...

snadjafinia·9mo ago
FeatureSecurityService

Add LeadController with CRUD endpoints and market config

- Add LeadController with GET, POST, PUT, DELETE endpoints - Add endpoint to get market configuration for a lead - Fix LeadImportController to use saveLead meth...

snadjafinia·9mo ago
Featurekamo-shared-library

বাজার ভিত্তিক কেন্দ্র এবং স্বনির্ধারিত উপাত্ত ভিত্তিক উপাত্ত যোগ করুন

- ForkD এর ক্ষেত্রে AddSory ক্ষেত্র যোগ করুন - স্বনির্বাচিত ফর্মের জন্য JSONB পার্টিশন নির্মাণ করুন - এগিয়ে যাও CorkremaDRIOPCory - লকডরিকDO মাঠ এবং স্বনির্ধার...

snadjafinia·9mo ago
OtherKlusterServices

Create main dovecot.conf file that includes conf.d directory

snadjafinia·9mo ago
OtherKlusterServices

Create conf.d directory before writing config files

snadjafinia·9mo ago
OtherKlusterServices

Use Dovecot default configs with custom overrides

- Copy default Dovecot configs first - Add custom config in conf.d/99-custom.conf - This ensures all required settings are present - Fixes 'mail_location: Unkno...

snadjafinia·9mo ago
OtherKlusterServices

Remove plaintext auth - Dovecot defaults to secure

- Removed auth_allow_plaintext setting - Dovecot will require encryption for authentication by default - All requirements verified: ✅ K1M1 only deployment (...

snadjafinia·9mo ago
OtherKlusterServices

Use Dovecot 2.4 with proper configuration

- Use Alpine latest (has Dovecot 2.4) - Add dovecot_config_version = 2.4 as FIRST setting (required) - Fix Dovecot SQL user_query to include mail location - Ver...

snadjafinia·9mo ago
OtherKlusterServices

Add dict block as first setting for Dovecot config

snadjafinia·9mo ago
OtherKlusterServices

Add config version comment to Dovecot config

snadjafinia·9mo ago
OtherKlusterServices

WORKING SOLUTION: Alpine-based Dovecot with MySQL backend

- Use Alpine Linux base image with Dovecot installed from packages - Dovecot config created inline - no Docker image restrictions - Full control over configurat...

snadjafinia·9mo ago
OtherKlusterServices

Add initial accounts to postfix-accounts.cf for docker-mailserver

- docker-mailserver requires at least one account in postfix-accounts.cf - Added sage@, support@, sysadmin@kamocrm.com with hashed passwords - Password hash gen...

snadjafinia·9mo ago
OtherKlusterServices

Replace separate Postfix/Dovecot with docker-mailserver integrated solution

- Deploy docker-mailserver **************** - Integrated Postfix + Dovecot in single proven container - Configure MySQL backend for virtual mailboxes/domains/al...

snadjafinia·9mo ago
OtherKlusterServices

Try older Dovecot Alpine image to avoid strict config requirements

- Switch from dovecot/dovecot:latest to dovecot/dovecot:2.3.21-alpine - Older version may not have strict dovecot_config_version requirement - Keeps all databas...

snadjafinia·9mo ago
OtherKlusterServices

Dovecot config iteration - simplified further

- Removed problematic includes and dict blocks - Simplified to minimal configuration - Note: The official dovecot/dovecot image has strict config requirements

snadjafinia·9mo ago
Otherkamo-analytics

fix getRevenue case-insensitivity bug

Francis Cao·9mo ago
OtherKlusterServices

Simplify Dovecot config - remove problematic version include

- Remove dovecot-version include that was causing errors - Use simpler configuration with just protocols and protocol includes - Restarted Roundcube pod to trig...

snadjafinia·9mo ago
OtherKlusterServices

Fix Dovecot version requirement and create roundcubemail database

- Dovecot: Add dovecot-version.conf.ext include (required as first setting) - MySQL Job: CREATE DATABASE roundcubemail before granting permissions - Fixes 'The ...

snadjafinia·9mo ago
OtherKlusterServices

Simplify Dovecot config and fix MySQL permissions job

- Dovecot: Use single complete dovecot.conf instead of conf.d fragments - Dovecot: Simplified configuration with minimal working setup - MySQL Job: Use root cre...

snadjafinia·9mo ago
OtherKlusterServices

Fix Dovecot configuration and add permissions job to CI/CD

- Dovecot: Move passdb/userdb config directly into 10-auth.conf - Dovecot: Remove problematic auth-sql.conf.ext include - CI/CD: Add mysql-permissions-job.yaml ...

snadjafinia·9mo ago
OtherKlusterServices

Fix Dovecot auth syntax and Roundcube database permissions

- Dovecot: Fix auth-sql.conf.ext syntax - passdb/userdb need section names - MySQL: Grant ALL PRIVILEGES on roundcubemail database to kamo user - Add mysql-perm...

snadjafinia·9mo ago
OtherKlusterServices

Fix Dovecot and Postfix configurations to resolve CrashLoopBackOff

- Dovecot: Use conf.d structure with official Dovecot image defaults - Dovecot: Split config into individual files (10-auth, 10-mail, 10-master, 10-ssl) - Postf...

snadjafinia·9mo ago
OtherKlusterServices

Trigger deployment after WireGuard fix

snadjafinia·9mo ago
OtherKlusterServices

Fix kubeconfig setup in CI/CD to use Tailscale IPs directly

- Replace sed commands with kubectl config set-cluster for reliable connection - Use 100.64.1.1 for K1M1 and 100.64.2.1 for K2M1 directly - Fixes 'dial tcp 100....

snadjafinia·9mo ago
OtherKlusterServices

পোস্টMas, Dvott, রাউন্ডকিউব এবং মাইএসকিউএল এর সঙ্গে সম্পূর্ণ মেইল পরিকাঠামো যোগ করুন

- DIP মেইল সার্ভার (আমার SQL, পোস্ট, Dvott, রাউন্ডকিউব) শুধুমাত্র K1M1 - ট্রাফেস্কের মাধ্যমে HTTPS কে কনফিগার করুন। - মাইSQL ডাটাবেসের মধ্যে ভার্চুয়াল মেইলবক্স...

snadjafinia·9mo ago
Otherkamo-analytics

Bump jws from 3.2.2 to 3.2.3

Bumps **************** from 3.2.2 to 3.2.3. - [Release **************** - **************** - **************** --- updated-dependencies: - dependency-name: jws ...

dependabot[bot]·9mo ago
Otherkamo-analytics

Merge branch 'dev' into boards

# Conflicts: # pnpm-lock.yaml

Mike Cao·9mo ago
Otherkamo-analytics

Fix formatting for Docker compose instructions

Mike Cao·9mo ago
Otherkamo-analytics

Merge pull request #3832 from analytics-software/dev

v3.0.2

Mike Cao·9mo ago

যেমন তুমি জাহাজ দেখেছ?

প্রত্যেকটা আপডেট স্বয়ংক্রিয়ভাবে আপনার কর্মক্ষেত্র স্বয়ংক্রিয়ভাবে. সপ্তাহের পর সপ্তাহের মধ্যে মুক্ত হয়ে তা দেখতে শুরু করুন।.

চিরকালের জন্য মুক্তকরণ আরম্ভ করা হবেপ্রদর্শন সংক্রান্ত পছন্দ