Smtp sending problem with Roundcube

Discussion in 'ISPConfig 3 Priority Support' started by gscaglia, Sep 4, 2023.

  1. gscaglia

    gscaglia Member HowtoForge Supporter

    Hi,
    after upgrading to Debian 12 and ISPConfig 3.2.11 sending email from Roundcube web interface I get this error on both synchronized servers:
    Code:
    SMTP error (530): Failed to set the sender "[email protected]" (5.7.0 Must issue a STARTTLS command first)
    
    What can it be?

    Thanks a lot
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    gscaglia likes this.
  3. gscaglia

    gscaglia Member HowtoForge Supporter

    Hi Till,
    my Rouncube setup went back to the Perfect server for Debian 10 and I didn't know there was one for Debian 12.

    Before the configuration was this:
    Code:
    $config['default_host'] = 'localhost';
    $config['smtp_server'] = 'localhost';
    $config['smtp_port'] = 25;
    Now I added this and it works
    Code:
    $config['smtp_host'] = 'localhost:25';
    So the result is this:
    Code:
    $config['default_host'] = 'localhost';
    $config['smtp_host'] = 'localhost:25';
    $config['smtp_server'] = 'localhost';
    $config['smtp_port'] = 25;
    That's okay, or do you think it's better to remove the other smtp references and leave only these:
    Code:
    $config['default_host'] = 'localhost';
    $config['smtp_host'] = 'localhost:25';
    Thanks a lot
     
  4. till

    till Super Moderator Staff Member ISPConfig Developer

    I guess you can leave it like that if it works now.
     

Share This Page