Activities of "maliming"

hi

What's your UI type?

  1. MVC
  2. BLAZOR WASM
  3. BALZOR SERVER
  4. ANGULAR

hi

You can custom theAccountAppServiceor AccountEmailer services to disable sending the mails.

hi

[Dependency(ServiceLifetime.Transient, ReplaceServices = true)]
public class MyEmailSender : EmailSenderBase, ITransientDependency
{

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/Smtp/SmtpEmailSender.cs#L13

If you using MailKit. https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.MailKit/Volo/Abp/MailKit/MailKitSmtpEmailSender.cs#L16

ok, We will fix and release the 5.3 patch version asap.

hi

You can feedback it on https://github.com/abpframework/abp/issues/new

hi

Add MyMultiTenantConnectionStringResolver to your CMVPoint.IdentityService.MongoDB project, I will fix this in 5.3 patch version.

using System;
using System.Threading.Tasks;
using Microsoft.Extensions.Options;
using Volo.Abp.Data;
using Volo.Abp.DependencyInjection;
using Volo.Abp.MultiTenancy;

namespace CMVPoint.IdentityService.MongoDb;

[Dependency(ReplaceServices = true)]
public class MyMultiTenantConnectionStringResolver : MultiTenantConnectionStringResolver
{
    public MyMultiTenantConnectionStringResolver(
        IOptionsMonitor<AbpDbConnectionOptions> options,
        ICurrentTenant currentTenant,
        IServiceProvider serviceProvider)
        : base(options, currentTenant, serviceProvider)
    {
    }

    public override Task<string> ResolveAsync(string connectionStringName = null)
    {
        if (connectionStringName == "Volo.Abp.Identity.MongoDB.IdentityProMongoDbContext")
        {
            return base.ResolveAsync("AbpIdentity");
        }
        return base.ResolveAsync(connectionStringName);
    }

    public override string Resolve(string connectionStringName = null)
    {
        if (connectionStringName == "Volo.Abp.Identity.MongoDB.IdentityProMongoDbContext")
        {
            return base.Resolve("AbpIdentity");
        }

        return base.Resolve(connectionStringName);
    }
}

ok, I will check.

hi

Can you share the source code with me? liming.ma@volosoft.com

HI

We will discuss, Thanks.

hi

What are the migration steps for LDAP in 5.3.x Is LDAP Integration here to stay in future ABP versions?

The LDAP feature moved to the Identity module after 5.3, It's just that the namespace has changed a bit. It is still available. https://docs.abp.io/en/commercial/latest/modules/identity/ldap

If you get issues you can share your code and logs.

Any plans to keep the IDS support option? Any plans for Commercial IDS support?

I will ask the team about this.

Showing 8861 to 8870 of 11539 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.