• 1
  • 3
  • 4
  • 5
  • 6
  • 7(current)
xbmcmail pop3 (POP/SMTP) e-mail client for XBMC
#91
runs fine here with every build since november up till 24th of january so thats not it. settings for mail are correct?
Reply
#92
is there any way to get this script to display japanese text?
Reply
#93
actually, scrap that. it does display japanese text, but only from some senders... any idea what would cause that? it just comes up in weird characters...
Reply
#94
gotta regular pm bg for this?
Image
Reply
#95
i have a gmail account. could someone help me set it up on my xbox? i can get you a gmail account if you help me. i only occasionally check this forum so please email me as well at [email="[email protected]"][email protected][/email] if you know how to help me fix it.
Reply
#96
looking at this, while the port can be specified in the script it requires an ssl connection that 2.3 of python doesnt support. maybe the powers that be will update to a current release and then this script can be adapted for gmail.

i considered doing it myself but i just killed my script functions all together (still new to the source code) so i had to restore my 2.3
Image
Reply
#97
i realy like this script, but there are two additions i would realy like:
1. store the downloaded messages on disc. (it takes time downloading them every time.)
2. add possibillity to send emails.

:thumbsup:
Reply
#98
Wink 
:help: by any chance do any of you know how to set up xbmc so i can get my email.

any help would be greatly appriciated :thumbsup:
Reply
#99
xbmc does not come with email support.

what you may have is a python script. try posting in the python forum for more help on that, although i a sure it has been covered already. have you tried searching?
Reply
this script is working great, but when i get some e-mails with iso-8859-1 encoding the subject looks like this:

Quote:=?iso-8859-1?q?=e5=e4=f6?= from [email="your.name@email.com"]your.name@email.com[/email]

it should be look like this:

Quote:åäö from [email="your.name@email.com"]your.name@email.com[/email]

i changed the following lines from this:

Quote:for i in range(numemails):
self.listcontrol.additem(self.emails[i].get('subject') + " from " + self.emails[i].get('from'))

to this:
Quote:
for i in range(numemails):

header = str(self.emails[i].get('subject'))
header = re.sub(r'=\?iso-8859-1\?q\?', '', header)
header = re.sub(r'=5f', ' ', header)
header = re.sub(r'\?=', '', header)
header = re.sub(r'=e4', 'ä', header)
header = re.sub(r'=e5', 'å', header)
header = re.sub(r'=c4', 'ä', header)
header = re.sub(r'=d6', 'ö', header)
header = re.sub(r'=c5', 'å', header)
header = re.sub(r'=f6', 'ö', header)
header = re.sub(r'_', ' ', header)
header = re.sub(r'=20', ' ', header)
header = re.sub(r'=3a', ':', header)
header = re.sub(r'=3b', ';', header)
header = re.sub(r'=2e', '.', header)
header = re.sub(r'=2c', ',', header)
header = re.sub(r'=3d', '=', header)
header = re.sub(r'=3f', '?', header)
header = re.sub(r'=25', '%', header)
header = re.sub(r'=26', '&', header)
header = re.sub(r'=28', '(', header)
header = re.sub(r'=29', ')', header)
header = re.sub(r'=a4', '¤', header)
header = re.sub(r'=24', '$', header)
header = re.sub(r'=a4', '¤', header)
header = re.sub(r'=7b', '{', header)
header = re.sub(r'=5b', '[', header)
header = re.sub(r'=5d', ']', header)
header = re.sub(r'=7d', '}', header)
header = re.sub(r'=5c', r'\\', header)
header = re.sub(r'=\?windows-1252\?q\?-', '-', header)
header = re.sub(r'=\?windows-1252\?q80', 'e', header)

self.listcontrol.additem(header + " from " + self.emails[i].get('from'))

i know this is not so sophisticated way to do this. if anybody knows how to strip iso-8859-1 emails to readable form better way than this please tell me.



Reply
wouldnt it be handy if someone incorporated the two email scripts into one so you could send and recieve mail from yor pop/smtp settings. its possible and there are two different scripts one that recieves and one that sends but incorporating them both is a good idea.
Reply
Nukkumatti Wrote:this script is working great, but when i get some e-mails with iso-8859-1 encoding the subject looks like this:



it should be look like this:



i changed the following lines from this:



to this:


i know this is not so sophisticated way to do this. if anybody knows how to strip iso-8859-1 emails to readable form better way than this please tell me.


Can't make this change to work: any small adding after for loop results in "no run". What to do?
Reply
  • 1
  • 3
  • 4
  • 5
  • 6
  • 7(current)

Logout Mark Read Team Forum Stats Members Help
xbmcmail pop3 (POP/SMTP) e-mail client for XBMC0