[BETA] Mail (XBMC Mail Program-Plugin) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: [BETA] Mail (XBMC Mail Program-Plugin) (/showthread.php?tid=167668) |
RE: [BETA] Mail (XBMC Mail Program-Plugin) - JohnnySSH - 2014-07-21 Whenever I try to access my INBOX using the MAIL addon I keep getting "script error". The debug log shows this: Code: 23:52:54 T:140214064129792 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- I am running Arch Linux with Python version 2.7.8-1 and XBMC 13.1-3. Has anyone encountered this before and is there a fix for it? Thanks. RE: [BETA] Mail (XBMC Mail Program-Plugin) - fschwengsbier - 2014-07-31 hi, maybe a great plugin - but i could not use it. did you ever thought about the use of custom port numbers for imap servers? btw: storing the clear text pw is from the stone age isn't it? regards frank from C:\Users\frank\AppData\Roaming\XBMC\userdata\addon_data\plugin.programm.xbmcmail\settings.xml: <settings> <setting id="imap_host" value="server.fds.local:1430" /> <setting id="password" value="cleartext" /> <setting id="provider" value="Custom" /> <setting id="use_ssl" value="false" /> <setting id="username" value="[email protected]" /> </settings> RE: [BETA] Mail (XBMC Mail Program-Plugin) - fschwengsbier - 2014-08-04 to use a custom imap port you have to change the line self.connection = cls(host, 1430) in C:\Users\YOUR NAME\AppData\Roaming\XBMC\addons\plugin.programm.xbmcmail\resources\lib\client.py sorry, but i don't have enough knowledge of xbmc and python to make this configurable. next problem is sorting. i like it best to have the mails sorted by date in reverse order. (lastest == first). the line finish_kwargs = { 'update_listing': 'is_update' in plugin.request.args, 'sort_methods': ('playlist_order', ) in C:\Users\YOUR NAME\AppData\Roaming\XBMC\addons\plugin.programm.xbmcmail\addon.py points to it. it looks like that you have to parse the mail header to enable custom sorting. but that's out of my knowledge too. thank you 4 reading regards frank RE: [BETA] Mail (XBMC Mail Program-Plugin) - fory - 2015-05-27 Hi, I instal this addon and I have a problem. I'm not seeing the INBOX folder...or sent, only the folders I've created for filtering. Any ideea? RE: [BETA] Mail (XBMC Mail Program-Plugin) - fory - 2015-05-27 Done, for me if remove the "if not mailbox['has_children']" line 65 addon.py show me the IMBOX and other folder. items = [{ 'label': _format_label(mailbox), 'path': plugin.url_for( endpoint='show_mailbox', mailbox=mailbox['raw_name'], ) } for mailbox in client.get_mailboxes() if not mailbox['has_children']] return plugin.finish(items) ------------------------------------------------- items = [{ 'label': _format_label(mailbox), 'path': plugin.url_for( endpoint='show_mailbox', mailbox=mailbox['raw_name'], ) } for mailbox in client.get_mailboxes()] return plugin.finish(items) RE: [BETA] Mail (XBMC Mail Program-Plugin) - lookidok - 2015-07-04 (2015-05-27, 20:01)fory Wrote: Done, Ahh thanks for that. I had exactly the same problem in that it would show INBOX.Deleted INBOX.Archive etc. With that line commented out I see the INBOX proper now Thanks. Not sure what the servers have in common that does that but at least the fix works now, Maybe some better error checking is needed? RE: [BETA] Mail (XBMC Mail Program-Plugin) - Chess010 - 2016-12-22 I have been trying this mail add on and found that I could get it to work for Gmail but when I select Custom option so can do a talktalk email settings nothing comes up for me to edit. Is there something wrong with this Mail addon and not set up for other providers? I should add using Kodi on Firestick with Pulse Build. RE: [BETA] Mail (XBMC Mail Program-Plugin) - [gen2]tcs - 2017-06-26 Hi, is this AddOn supported? I tried different mailaccounts and could not get them up and running, only Hotmail worked as expected. Cheers tcs RE: [BETA] Mail (XBMC Mail Program-Plugin) - FifthAxiom - 2018-01-06 Not working for me either. |