Tag: SMTP

  • Roundcube – SMTP authentication is required Hatası

    Roundcube – SMTP authentication is required Hatası

    roundcube-smtp-authentication-is-required

    Roundcube webmail arayüzünde ;

    SMTP Hatası (530) : “xxx@xxx.com” alıcısı eklenemedi (SMTP authentication is required

    Hatası almanız durumunda Roundcube webmail sisteminin bulunduğu ;

    config\main.inc.php

    Dosyasını herhangi bir editör ile açıp ;

    $rcmail_config[‘smtp_user’] = ‘ ‘;
    $rcmail_config[‘smtp_pass’] = ‘ ‘;
    $rcmail_config[‘smtp_auth_type’] = ‘ ‘;

    Satırlarını ;

    $rcmail_config[‘smtp_user’] = ‘%u’;
    $rcmail_config[‘smtp_pass’] = ‘%p’;
    $rcmail_config[‘smtp_auth_type’] = ‘LOGIN’;

    Şeklinde değiştirmeniz durumunda muhtemel olarak sıkıntı çözümlenmiş olacaktır.

    İyi çalışmalar dilerim.