Roundcube Community Forum

Release Support => Release Discussion => Topic started by: leandronf on November 26, 2012, 02:54:13 PM

Title: username different from email
Post by: leandronf on November 26, 2012, 02:54:13 PM
My ISP has a different login.

The login is username=domain.com
The email [email protected]

I could not set up correctly.

Could someone help me?
Title: Re: username different from email
Post by: SKaero on November 26, 2012, 05:57:27 PM
If thats the imap login then you should be able to login in with in, what problem are you running into?
Title: Re: username different from email
Post by: leandronf on November 27, 2012, 06:33:20 AM
How can I configure the options in main.inc.php

I even can log in, but can not send email.

The form is generated username for SMTP, creates the wrong username.

I changed the information for a fictitious domain, but has been tested with an existing domain.
Domain: rc.com
imap: mbox.rc.com
smtp: smtp.rc.com
Login: leandro=rc.com
email: [email protected]

My setup is:
$rcmail_config ['default_host'] = 'mbox.rc.com';
$rcmail_config ['smtp_server'] = 'smtp.rc.com';
$rcmail_config ['smtp_user'] = '%u';
$rcmail_config ['smtp_pass'] = '%p';
$rcmail_config ['username_domain'] = 'rc.com';
$rcmail_config ['mail_domain'] = 'rc.com';

The identity is generated [email protected]
This would not be the biggest problem, I fix for [email protected].

The problem is the time to send, I get the following error message:
Erro SMTP (553): Failed to add recipient "[email protected]" (5.7.1 <[email protected]>: Sender address rejected: not owned by user [email protected]).
Title: Re: username different from email
Post by: SKaero on November 28, 2012, 03:44:10 AM
Set username_domain to be empty that should fix the problem with the domain being added at the end of the username.
Title: Re: username different from email
Post by: leandronf on November 28, 2012, 07:03:03 AM
Thanks, it worked. Inattention in a little detail.