Roundcube Community Forum

 

Read Multiple account, how i can?

Started by no_stress, December 23, 2009, 08:01:20 AM

Previous topic - Next topic

no_stress

Hi and sorry for my english, i'm italian
I need to see all my account simultaneously (like outlook express).
How i can do it?
I must install some plugin? can you help me please?
Can you give me some guide for do this?

no_stress

in another post is write:

"Check accounts plugin from myroundcube bundle (see footer). It is able to switch between multiple IMAP accounts within one session. But it is not able to drag/drop or move messages between different accounts."

Someone can give me the link for download?

SKaero

You can't be login on more then one account at one time, however you can use
Rosali's account plugin (http://code.google.com/p/myroundcube/) to be able to switch accounts from the inbox.

no_stress


SKaero

Download the plugin collection from myroundcube - Project Hosting on Google Code then follow the directions in the README. Make sure that you also install the settings plugin.

no_stress

Quote from: skaero;24170Download the plugin collection from myroundcube - Project Hosting on Google Code then follow the directions in the README. Make sure that you also install the settings plugin.

i dowload the zip file, inside are many directory... witch one is good for me? Accounts?

SKaero

accounts in the accounts plugin, you will also need the settings plugin witch is the settings directory.

no_stress

ok
this is the source of config.php file, how i must change for put for example 2 email accounts?


/*accounts plugin */

// navigation config (requires plugin settings @website myroundcube - Project Hosting on Google Code)
$rcmail_config['settingsnav'][] = array('part' => '', 'locale' => 'settings.accounts', 'href' => './?_task=settings&_action=plugin.accounts&_framed=1', 'onclick' => '', 'descr' => 'accounts');

/* database table name */
$rcmail_config['db_table_accounts'] = 'accounts';

/* allowed hosts ::: array() = all */
$rcmail_config['accounts_hosts'] = array(
  "My Host" => "localhost",
  "Mail4Us" => "pop.roland-liebl.de",
  "Google Mail" => "ssl://imap.gmail.com:993",
  "Freenet" => "mx.freenet.de"
);

/* always use default smtp server */
$rcmail_config['accounts_smtp_default'] = TRUE;

SKaero

Add the mail server to the $rcmail_config['accounts_hosts'], you will setup the accounts in the RoundCube settings.

no_stress

i add the sql file for create account table, but i don't understand how i must change this file.
Now if i go in my webmail i have all page white...

on my root/config/main.inc.php i overwrite
$rcmail_config['plugins'] = array();
with
$rcmail_config['plugins'] = array('settings','accounts')
is ok?

no_stress

Quote from: skaero;24178Add the mail server to the $rcmail_config['accounts_hosts'], you will setup the accounts in the RoundCube settings.

ok, but i must delete this?

/* allowed hosts ::: array() = all */
$rcmail_config['accounts_hosts'] = array(
"My Host" => "localhost",
"Mail4Us" => "pop.roland-liebl.de",
"Google Mail" => "ssl://imap.gmail.com:993",
"Freenet" => "mx.freenet.de"
);


for example, if i want
[email protected]
and
[email protected]

i must edit in

/* allowed hosts ::: array() = all */
$rcmail_config['accounts_hosts'] = array(
"Info" => "[email protected]",
"No_stress" => "[email protected]"
);

so?

SKaero

No its for the mail server so it would be something like:

$rcmail_config['accounts_hosts'] = array(
"My mail server" => "mail.mydomain.com"
);

You would setup the email address in the setting panel in RoundCube.

no_stress

Quote from: skaero;24182No its for the mail server so it would be something like:

$rcmail_config['accounts_hosts'] = array(
"My mail server" => "mail.mydomain.com"
);

You would setup the email address in the setting panel in RoundCube.

ok, i put my mail server domain, but in the setting panel i don't understand where i must put all the account email to controll.

last question: in this webmail go another person, he has 1 account address, he don't must see my account, is a problem?

no_stress

in read me file is write:

"Once configured, you should have "Remote IMAP Accounts" menu item under the "Account Administration" listing in Settings"

i don't have this Remote Imap Accounts, why? :(

SKaero

Have you adding the plugins the the main.inc.php?