![]() |
|
|
|||||||
For more information about the ads and why they're here, please see the FAQ
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
|
|
#2
|
||||
|
||||
|
RC is a email client, not a server. You can use any notifier that uses your mailserver to determine if there is a new mail (which most notifiers do).
|
|
#3
|
|||
|
|||
|
Yes, I'm thinking if there is any like Gmail notifer program which connects through the http protocol and can monitor new emails arriving.
so I think it needs a dedicated roundcube notifer program, the Gmail notifer doesn't work for roundcube web client. |
|
#4
|
||||
|
||||
|
Think of RoundCube as a program like Outlook or Thunderbird. Mail arrives at your mailserver not your client. To use a notifier, you will have to check the server not the program.
So you need a notifier which check your IMAP mailserver. Unfortunately, there are no free configurable IMAP notifiers for Firefox yet. A stand-alone notifier you can use is this one. |
|
#5
|
||||
|
||||
|
... I believe he thinks about a tool which connects to RC by http to use the check-recent request. Not bad, because it would be a bridge to connect to IMAP servers behind RC. Easily done by a simple hta (IE based) app ... sorry, I'm not skilled enough to code a real platform independent application.
__________________
Regards, Rosali __________________ MyRoundcube Project http://myroundcube.googlecode.com MyRoundcube Online Demo http://mail4us.net MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube Mailing List http://mail4us.net/?_action=plugin.nabble Last edited by rosali; 01-14-2010 at 11:54 AM. |
|
#6
|
||||
|
||||
|
Quote:
|
|
#7
|
|||
|
|||
|
connecting to IMAP server directly is one option, but sometimes the IMAP server port is not open to outside.
If you check this extension of firefox "Gmail Manager" tLo : Gmail Manager, it check new emails through the http not IMAP, what I need is the same program like the "Gmail Manager" but not check gmail, instead it is to check RoundCube mail. |
|
#8
|
|||
|
|||
|
Quote:
Either way what you're looking for is not specific to Roundcube at all it's simply a FF extension for email notification. You should be looking at FF addons. But if you can't connect using IMAP or POP3 then it's not likely you'll find one anyways. |
|
#9
|
|||
|
|||
|
Sorry to dig up that old thread, but it wasn't answered and I feel like nobody here really understood, what pgy wanted to know.
pgy was asking how to configure the Firefox Webmail Notifier plugin for Roundcubemail. WebMail Notifier - Notifier for gmail, yahoo, hotmail and more This is exactly the problem that I have. What this plugin does, is creating an url, containing the user ID and password and send it to a webmail frontend to check frequently if there are new mails. This is mostly needed, when you are sitting behind a company's firewall where you can only use the HTTP ports. Firefox Webmail Notifier plugin works with user customized js-scripts, that have to be configured to match the syntax of the webmail-frontend that's installed on the Mail-Server. Here is an example for Lycos: Code:
/**********************************************************
Lycos
**********************************************************/
var name="Lycos";
var ver="2009-01-06"
function init(){
this.hostString="";
this.dataURL="http://mail.lycos.com/lycos/Welcome.lycos";
this.loginData=["https://registration.lycos.com/login.php?m_PR=27","m_U","m_P","m_CBURL="+encodeURIComponent("http://mail.lycos.com")];
this.mailURL="http://mail.lycos.com/lycos/Index.lycos";
}
function getCount(aData){
var fnd=aData.match(/You have <font.+?>(\d+?)<\/font> new message/);
if(fnd){
return fnd[1];
}else{
return -1;
}
}
So, does anyone know how the syntax of the roundcubemail login interface url looks like? Last edited by neon; 01-14-2010 at 07:30 AM. |
|
#10
|
||||
|
||||
|
We have to code a plugin for that. Please remember me in a week or so ...
Here is what Squirrelmail does: PHP Code:
__________________
Regards, Rosali __________________ MyRoundcube Project http://myroundcube.googlecode.com MyRoundcube Online Demo http://mail4us.net MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube Mailing List http://mail4us.net/?_action=plugin.nabble |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|