Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: no_stress on December 23, 2009, 08:01:20 AM

Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 08:01:20 AM
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?
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 08:25:04 AM
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?
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 08:27:33 AM
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.
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 08:32:33 AM
ok, how i can install this?
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 08:41:08 AM
Download the plugin collection from myroundcube - Project Hosting on Google Code (http://code.google.com/p/myroundcube/) then follow the directions in the README. Make sure that you also install the settings plugin.
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 08:43:41 AM
Quote from: skaero;24170
Download the plugin collection from myroundcube - Project Hosting on Google Code (http://code.google.com/p/myroundcube/) 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?
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 08:47:55 AM
accounts in the accounts plugin, you will also need the settings plugin witch is the settings directory.
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 08:49:38 AM
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 (http://myroundcube.googlecode.com))
$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;
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 08:57:58 AM
Add the mail server to the $rcmail_config['accounts_hosts'], you will setup the accounts in the RoundCube settings.
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 08:59:28 AM
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?
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 09:01:32 AM
Quote from: skaero;24178
Add 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
info@mydomain.com
and
no_stress@mydomain.com

i must edit in

/* allowed hosts ::: array() = all */
$rcmail_config['accounts_hosts'] = array(
"Info" => "info@mydomain.com",
"No_stress" => "no_stress@mydomain.com"
);

so?
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 09:06:27 AM
No its for the mail server so it would be something like:
Code: [Select]

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

You would setup the email address in the setting panel in RoundCube.
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 09:33:03 AM
Quote from: skaero;24182
No its for the mail server so it would be something like:
Code: [Select]

$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?
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 09:42:45 AM
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? :(
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 09:56:56 AM
Have you adding the plugins the the main.inc.php?
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 10:00:27 AM
Quote from: skaero;24185
Have you adding the plugins the the main.inc.php?


this one?
$rcmail_config['plugins'] = array('settings','accounts');
?

yes i add
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 10:06:21 AM
Did you run the sql file?
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 10:48:49 AM
yes i  copy and paste the sql file on my phpmyadmin, now i have the account table... but i can't manage other account
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 12:01:14 PM
what i must do?
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 12:35:08 PM
maybe the problem is in the config file?
i edit so:

$rcmail_config['accounts_hosts'] = array(
  "My mail server" => "info@mydomain.it"
);
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 01:18:46 PM
No, It would show up in setting even if the config was wrong, did you also setup the settings plugin?
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 02:58:59 PM
Quote from: skaero;24194
did you also setup the settings plugin?

no, where?
you say i must upload the folder called SETTINGS in the plugin directory?
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 03:09:21 PM
In the same folder you downloaded that had the account plugin there is another folder called settings, follow the directions in the README file.
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 03:13:59 PM
Quote from: skaero;24198
In the same folder you downloaded that had the account plugin there is another folder called settings, follow the directions in the README file.


yes ok, i install it and now i have in menu the account administrator.

Now if i put:
account name: Roberto
login id: info@mydomain.it
password: my password
confirm password: my password
in imap host i have only 1 imap, i think here is the error.

How must be the imap host?
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 03:17:09 PM
he say: impossible to connect to imap server....

how can i know my imap server?
Title: Read Multiple account, how i can?
Post by: no_stress on December 23, 2009, 03:28:09 PM
ok now is all ok

thank you for your help :)

last question: i can use only 1 imap server for all my account?
witch the different if i user more imap account?
Title: Read Multiple account, how i can?
Post by: SKaero on December 23, 2009, 05:46:12 PM
Yes you can use one imap server for all of the accounts. You can add more imap server so you can get email on different servers, for example you could also have a gmail account in RoundCube.
Title: Read Multiple account, how i can?
Post by: no_stress on December 24, 2009, 03:52:01 AM
Quote from: skaero;24202
Yes you can use one imap server for all of the accounts. You can add more imap server so you can get email on different servers, for example you could also have a gmail account in RoundCube.


yes i have this problem for only one email because is not on my server, i have an account with email.it, for example myname@email.it, in the page of configuration is write i must use imapmail.email.it but don't go.
This is the link:
Assistenza email.it - Configurazioni, tutorial e contatti tecnici (http://assistenza.email.it/configurazioni_account.php)

How can i do?
Now i have so:

$rcmail_config['accounts_hosts'] = array(
"My domain" => "www.mydomain.it",
"Email.it" => "imapmail.email.it"
);
Title: Read Multiple account, how i can?
Post by: kathryn on December 28, 2009, 12:42:12 PM
Hi

I wanna join this forum, but I am new user, will you please join me...? I am a artist and love Art, if you don't mind please join me.


free photography lessons (http://[url=http://www.newbrightapples.com/)]free photography lessons (http://www.newbrightapples.com/)[/URL]