Hey everyone,
In the main.inc.php file you have this.
// Path to a virtuser table file to resolve user names and e-mail addresses $rcmail_config['virtuser_file'] = '';
Now my web-host requires that I login with something different then my @domain-name.com address. So i'm guessing the above config line will handle this.
My question is... what does the mysql table have to look like? Such as tables names and the format that data is inserted into them.
And I guess i would just put the table name like $rcmail_config['virtuser_file'] = 'vusers'; Correct?
Thanks, ~ROB~
Hi Rob
It's not a database table that has to be entered for this parameter. You can specify the path to a file that is used by either Sendmail or Postfix mail server to resolve users for incoming messages. This will be a simple text file with pairs of e-mail address and user name on each line.
If you have a database table with your user mapping, you should take a look at the following patch: http://lists.roundcube.net/mail-archive/roundcube.dev/2006/02/123/
Regards, Thomas
Robbie wrote:
Hey everyone,
In the main.inc.php file you have this.
// Path to a virtuser table file to resolve user names and e-mail addresses $rcmail_config['virtuser_file'] = '';
Now my web-host requires that I login with something different then my @domain-name.com address. So i'm guessing the above config line will handle this.
My question is... what does the mysql table have to look like? Such as tables names and the format that data is inserted into them.
And I guess i would just put the table name like $rcmail_config['virtuser_file'] = 'vusers'; Correct?
Thanks, ~ROB~