#
http://xlobby.lanik.org/XMail.jpg
##
XMail - E-Mail Integration (POP3, SSL) for XLobby
###
http://xlobby.lanik.org/XMail.v0.10b.exe
Any suggestions/comments welcome...
D.
dalanik documentation wrote:To do:
• Configurator window, to allow you to specify server, username and password, without having to modify directly in registry.
• A way to alert user on new mail?
• SMTP? Let’s see if anyone wants to send mails from HTPC Send me a mail if you do…
timwarner wrote:I thought the POP3 protocol always downloaded the mail. Does it depend on the ISP.
I use the IMAP protocol to access my mail from my smart phone or outlook on my laptop.
Will this plugin work for me?
I would love this feature it has been on my wish list for a while.
dgemily wrote:
just one thing, for alert fonction, if you add it, make sure to give the possibility to disable and enable alert using an event or whatever you want, because I don't think is nice to get an alert when you are watching a movie...
later
dalanik wrote:Yes, it leaves mail on the server... funny thing is that I wrote this for my google mail account - and that is the case it doesn't work well with - but the fault is entirely on google's side and how it handles email. On 2 other servers i tried it, it works fine. It, ofcourse checks google mail, but then google somehow marks those messages "read" and you can't download them via i.e. Outlook. It can either archive. delete or leave mails in inbox - but even when you set gmail to leave mails in inbox - you can't download them via outlook anymore
well..
dgemily wrote:- of course you can not display html mail...
dalanik wrote:dgemily wrote:- of course you can not display html mail...
As far as this is concerned, I can export HTML mail to a file, but I'm having problems displaying it... I still haven't figured what's not working, but there's something wrong with browser...
I.e. i tried putting the adress into %category>email>parameter% and setting "goto url", but it fails. I tried copying it to variable, it fails.
I tried passing the filename of the exported e-mail in C:\Program Files... or file:///Program%20Files... formats, it all fails....
has anyone tried displaying local html files in xlobby's browser?
D.
<imagename>http://xlobby.com</imagename>
<imagename>file:///C:/Program%20Files/XlobbyFr/myMeteo.html</imagename>
static public string XmlEncodeString(string XMLString)
{
XMLString = XMLString.Replace("\001", ".");
XMLString = XMLString.Replace("\002", ".");
XMLString = XMLString.Replace("\002", ".");
XMLString = XMLString.Replace("\003", ".");
XMLString = XMLString.Replace("\004", ".");
XMLString = XMLString.Replace("\005", ".");
XMLString = XMLString.Replace("\006", ".");
XMLString = XMLString.Replace("\007", ".");
XMLString = XMLString.Replace("\008", ".");
XMLString = XMLString.Replace("\009", ".");
XMLString = XMLString.Replace("&", "&");
XMLString = XMLString.Replace("<", "<");
XMLString = XMLString.Replace(">", ">");
return XMLString;
}//XmlEncodeString