maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [Announce] The One Ring (https://talk.maemo.org/showthread.php?t=41817)

zerocool2k 2010-10-22 17:45

Re: [Announce] The One Ring
 
Ah, I figured out the previous problem with the displaying number instead of contact's name. I have to use GV contacts in order for names to appear (and so I have to sync my contacts with Google contacts, a bit of work since MfE is not working on N900).

Also, I can confirm the duplicate contacts issue when using Google contacts.

qt4eva 2010-10-22 18:07

Re: [Announce] The One Ring
 
thanks epage for update. i'll continue to monitor this thread for more goodies.

Killahgold 2010-10-24 22:38

Re: [Announce] The One Ring
 
hey epage. I got your message in the download section. I tried looking for that account section and can't find it. Are you referring to a setting on my actual gv account? Thanks for taking time out for my noobness. I'll continue to investigate while you get back to me.

Killahgold 2010-10-24 23:13

Re: [Announce] The One Ring
 
Quote:

Originally Posted by Killahgold (Post 849906)
hey epage. I got your message in the download section. I tried looking for that account section and can't find it. Are you referring to a setting on my actual gv account? Thanks for taking time out for my noobness. I'll continue to investigate while you get back to me.

Well, by searching this thread my problem amounted to the usual problem when the phone call is not connecting. My forwarding # was all wrong and my screen name was wrong. Once those things were corrected, all is good. My next question would be why is it that my screen name has to be the forwarding # and not my google #?

For those who may be confused like me, here is what I did:
Go into voice settings on your google account and check the forwarding #
Go into the advanced settings in you n900 google voice plugin and make sure the forward box has the same #
Last, make sure the screen name in your google voice plugin is the forwarding #

I know this has been discussed before, but I figured I'd put it here so other members won't have to search that much.

epage 2010-10-25 20:04

Re: [Announce] The One Ring
 
Quote:

Originally Posted by Killahgold (Post 849919)
Well, by searching this thread my problem amounted to the usual problem when the phone call is not connecting. My forwarding # was all wrong and my screen name was wrong. Once those things were corrected, all is good.

Yes, that was what I was trying to convey.

Quote:

Originally Posted by Killahgold (Post 849919)
My next question would be why is it that my screen name has to be the forwarding # and not my google #?

First, the nickname field is meant to be the pretty name you advertise to others so they don't have to stare at a number or email-like identifier. This doesn't make much sense in GV. The closest would be to make it the GV number and not allow the customer to change it.

When I added Maemo 4.1 support (aka OS2008, Diablo), I was not able to have the Advanced options show without doing some annoying work. The only option of importance is callback. So I overloaded the nickname field with the callback number. I carry that over to Maemo 5.

On Maemo 5 this also makes the callback number more visible, just not as straightforward.

Quote:

Originally Posted by Killahgold (Post 849919)
For those who may be confused like me, here is what I did:
Go into voice settings on your google account and check the forwarding #
Go into the advanced settings in you n900 google voice plugin and make sure the forward box has the same #
Last, make sure the screen name in your google voice plugin is the forwarding #

I know this has been discussed before, but I figured I'd put it here so other members won't have to search that much.

So in the GV site you just need to have callbacks configured, you don't have to select a specific one. GV rings all of my callbacks.

The forwarding field should probably be removed. That is where I originally put it. I don't remember why I kept it.

ioan 2010-10-25 20:53

Re: [Announce] The One Ring
 
Any news about supporting IPv6?

epage 2010-10-25 21:21

Re: [Announce] The One Ring
 
Quote:

Originally Posted by ioan (Post 850718)
Any news about supporting IPv6?

Hmm, can't find my post with all of the rushing to get a bug fix out posts. My priority on development right now is getting the Qt version of Dialcentral out. I'm hestitant to switching over to IPv6 anyways and this would probably have to be done by someone else.

ioan 2010-10-25 23:52

Re: [Announce] The One Ring
 
I run this code on my n900 with ipv6:

Code:

import urllib2
response = urllib2.urlopen('https://www.google.com/voice')
html = response.read()
print html

and this was the result:

Code:

Traceback (most recent call last):
  File "1.py", line 2, in <module>
    response = urllib2.urlopen('https://www.google.com/voice')
  File "/usr/lib/python2.5/urllib2.py", line 124, in urlopen
    return _opener.open(url, data)
  File "/usr/lib/python2.5/urllib2.py", line 381, in open
    response = self._open(req, data)
  File "/usr/lib/python2.5/urllib2.py", line 399, in _open
    '_open', req)
  File "/usr/lib/python2.5/urllib2.py", line 360, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.5/urllib2.py", line 1115, in https_open
    return self.do_open(httplib.HTTPSConnection, req)
  File "/usr/lib/python2.5/urllib2.py", line 1082, in do_open
    raise URLError(err)
urllib2.URLError: <urlopen error (101, 'Network is unreachable')>

maybe this will help to fix the problem?
I also saw that there is a problem with https:

http://www.mail-archive.com/python-b.../msg17091.html

let me know if you want me to do more tests

Edit: by the way, the non https works fine on ipv6, looks like the problem is https

epage 2010-10-26 00:13

Re: [Announce] The One Ring
 
Quote:

Originally Posted by ioan (Post 850962)
I run this code on my n900 with ipv6:

Code:

import urllib2
response = urllib2.urlopen('https://www.google.com/voice')
html = response.read()
print html

and this was the result:

Code:

Traceback (most recent call last):
  File "1.py", line 2, in <module>
    response = urllib2.urlopen('https://www.google.com/voice')
  File "/usr/lib/python2.5/urllib2.py", line 124, in urlopen
    return _opener.open(url, data)
  File "/usr/lib/python2.5/urllib2.py", line 381, in open
    response = self._open(req, data)
  File "/usr/lib/python2.5/urllib2.py", line 399, in _open
    '_open', req)
  File "/usr/lib/python2.5/urllib2.py", line 360, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.5/urllib2.py", line 1115, in https_open
    return self.do_open(httplib.HTTPSConnection, req)
  File "/usr/lib/python2.5/urllib2.py", line 1082, in do_open
    raise URLError(err)
urllib2.URLError: <urlopen error (101, 'Network is unreachable')>

maybe this will help to fix the problem?
I also saw that there is a problem with https:

http://www.mail-archive.com/python-b.../msg17091.html

let me know if you want me to do more tests

Edit: by the way, the non https works fine on ipv6, looks like the problem is https

Try out the following:
Code:

#!/usr/bin/env python

from __future__ import with_statement
from __future__ import division

import urllib2
import logging

try:
        import conic
except ImportError:
        conic = None

_moduleLogger = logging.getLogger(__name__)


def add_proxy(protocol, url, port):
        proxyInfo = "%s:%s" % (url, port)
        proxy = urllib2.ProxyHandler(
                {protocol: proxyInfo}
        )
        opener = urllib2.build_opener(proxy)
        urllib2.install_opener(opener)


if __name__ == "__main__":
        if conic is not None:
                connection = conic.Connection()
                proxySettings = {
                        "http-host": connection.get_proxy_host(conic.PROXY_PROTOCOL_HTTP),
                        "http-port": connection.get_proxy_port(conic.PROXY_PROTOCOL_HTTP),
                        "https-host": connection.get_proxy_host(conic.PROXY_PROTOCOL_HTTPS),
                        "https-port": connection.get_proxy_port(conic.PROXY_PROTOCOL_HTTPS),
                }
                if proxySettings["http-host"] is not None:
                        add_proxy(
                                "http",
                                proxySettings["http-host"],
                                proxySettings["http-port"]
                        )
                        print "HTTP Proxy Configured"
                else:
                        print "HTTP Proxy Not Configured"
                if proxySettings["https-host"] is not None:
                        add_proxy(
                                "https",
                                proxySettings["https-host"],
                                proxySettings["https-port"]
                        )
                        print "HTTPS Proxy Configured"
                else:
                        print "HTTPS Proxy Not Configured"
                print proxySettings
        else:
                print "Proxy Not Configured"
        response = urllib2.urlopen('https://www.google.com/voice')
        html = response.read()
        print html

I'm unsure if I'm using conic correctly but the proxy settings might make HTTPS work.

ioan 2010-10-26 00:43

Re: [Announce] The One Ring
 
Quote:

Originally Posted by epage (Post 851000)
Try out the following:
Code:

#!/usr/bin/env python

from __future__ import with_statement
from __future__ import division

import urllib2
import logging

try:
        import conic
except ImportError:
        conic = None

_moduleLogger = logging.getLogger(__name__)


def add_proxy(protocol, url, port):
        proxyInfo = "%s:%s" % (url, port)
        proxy = urllib2.ProxyHandler(
                {protocol: proxyInfo}
        )
        opener = urllib2.build_opener(proxy)
        urllib2.install_opener(opener)


if __name__ == "__main__":
        if conic is not None:
                connection = conic.Connection()
                proxySettings = {
                        "http-host": connection.get_proxy_host(conic.PROXY_PROTOCOL_HTTP),
                        "http-port": connection.get_proxy_port(conic.PROXY_PROTOCOL_HTTP),
                        "https-host": connection.get_proxy_host(conic.PROXY_PROTOCOL_HTTPS),
                        "https-port": connection.get_proxy_port(conic.PROXY_PROTOCOL_HTTPS),
                }
                if proxySettings["http-host"] is not None:
                        add_proxy(
                                "http",
                                proxySettings["http-host"],
                                proxySettings["http-port"]
                        )
                        print "HTTP Proxy Configured"
                else:
                        print "HTTP Proxy Not Configured"
                if proxySettings["https-host"] is not None:
                        add_proxy(
                                "https",
                                proxySettings["https-host"],
                                proxySettings["https-port"]
                        )
                        print "HTTPS Proxy Configured"
                else:
                        print "HTTPS Proxy Not Configured"
                print proxySettings
        else:
                print "Proxy Not Configured"
        response = urllib2.urlopen('https://www.google.com/voice')
        html = response.read()
        print html

I'm unsure if I'm using conic correctly but the proxy settings might make HTTPS work.

just tried. the error is identical with what I got first time, in my prev. post

epage 2010-10-26 02:31

Re: [Announce] The One Ring
 
Quote:

Originally Posted by ioan (Post 851047)
just tried. the error is identical with what I got first time, in my prev. post

Did it report it was trying to use an HTTP and/or an HTTPS proxy?

ioan 2010-10-26 02:38

Re: [Announce] The One Ring
 
Quote:

Originally Posted by epage (Post 851156)
Did it report it was trying to use an HTTP and/or an HTTPS proxy?

yes, here is the return:

Code:

~ $ python aa.py
Proxy Not Configured
Traceback (most recent call last):
  File "aa.py", line 56, in <module>
    response = urllib2.urlopen('https://www.google.com/voice')
  File "/usr/lib/python2.5/urllib2.py", line 124, in urlopen
    return _opener.open(url, data)
  File "/usr/lib/python2.5/urllib2.py", line 381, in open
    response = self._open(req, data)
  File "/usr/lib/python2.5/urllib2.py", line 399, in _open
    '_open', req)
  File "/usr/lib/python2.5/urllib2.py", line 360, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.5/urllib2.py", line 1115, in https_open
    return self.do_open(httplib.HTTPSConnection, req)
  File "/usr/lib/python2.5/urllib2.py", line 1082, in do_open
    raise URLError(err)
urllib2.URLError: <urlopen error (101, 'Network is unreachable')>
~ $


epage 2010-10-26 03:29

Re: [Announce] The One Ring
 
Quote:

Originally Posted by ioan (Post 851166)
yes, here is the return:

Code:

Proxy Not Configured

Proxy Not Configured means you do not have python-conic installed.
HTTP/HTTPS Proxy Not Configured means I failed in getting those settings

ioan 2010-10-26 03:40

Re: [Announce] The One Ring
 
Quote:

Originally Posted by epage (Post 851214)
Proxy Not Configured means you do not have python-conic installed.
HTTP/HTTPS Proxy Not Configured means I failed in getting those settings

this is what i get after installing python-conic:

Code:

~ $ python aa.py
HTTP Proxy Not Configured
HTTPS Proxy Not Configured
{'https-host': None, 'http-port': 0, 'http-host': None, 'https-port': 0}
Traceback (most recent call last):
  File "aa.py", line 56, in <module>
    response = urllib2.urlopen('https://www.google.com/voice')
  File "/usr/lib/python2.5/urllib2.py", line 124, in urlopen
    return _opener.open(url, data)
  File "/usr/lib/python2.5/urllib2.py", line 381, in open
    response = self._open(req, data)
  File "/usr/lib/python2.5/urllib2.py", line 399, in _open
    '_open', req)
  File "/usr/lib/python2.5/urllib2.py", line 360, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.5/urllib2.py", line 1115, in https_open
    return self.do_open(httplib.HTTPSConnection, req)
  File "/usr/lib/python2.5/urllib2.py", line 1082, in do_open
    raise URLError(err)
urllib2.URLError: <urlopen error (101, 'Network is unreachable')>
~ $


epage 2010-10-26 23:59

Re: [Announce] The One Ring
 
Quote:

Originally Posted by ioan (Post 851229)
this is what i get after installing python-conic:

Code:

~ $ python aa.py
HTTP Proxy Not Configured
HTTPS Proxy Not Configured
{'https-host': None, 'http-port': 0, 'http-host': None, 'https-port': 0}
Traceback (most recent call last):
  File "aa.py", line 56, in <module>
    response = urllib2.urlopen('https://www.google.com/voice')
  File "/usr/lib/python2.5/urllib2.py", line 124, in urlopen
    return _opener.open(url, data)
  File "/usr/lib/python2.5/urllib2.py", line 381, in open
    response = self._open(req, data)
  File "/usr/lib/python2.5/urllib2.py", line 399, in _open
    '_open', req)
  File "/usr/lib/python2.5/urllib2.py", line 360, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.5/urllib2.py", line 1115, in https_open
    return self.do_open(httplib.HTTPSConnection, req)
  File "/usr/lib/python2.5/urllib2.py", line 1082, in do_open
    raise URLError(err)
urllib2.URLError: <urlopen error (101, 'Network is unreachable')>
~ $


Hmm, so now the question is did I make a mistake in getting the proxy information or am I on the wrong track.

EDIT: Hm, maybe a conic test would help determine that. Mind running the following test to see if it returns different proxy info?
https://vcs.maemo.org/svn/pymaemo/pa...est_proxies.py

ioan 2010-10-29 18:26

Re: [Announce] The One Ring
 
Quote:

Originally Posted by epage (Post 852290)
Hmm, so now the question is did I make a mistake in getting the proxy information or am I on the wrong track.

EDIT: Hm, maybe a conic test would help determine that. Mind running the following test to see if it returns different proxy info?
https://vcs.maemo.org/svn/pymaemo/pa...est_proxies.py

Code:

~ $ python test_proxies.py
(start)
^CTraceback (most recent call last):
  File "test_proxies.py", line 63, in <module>
    loop.run()
KeyboardInterrupt

That's what I get when I try to run the test (after a while, pressed CTRL+C).
The IPv6 problem I don't think has anything to do with the proxy settings. I think some python code needs to be patched to work with IPv6.

To read the proxy settings, you could use something like this:

Code:

gconftool-2 --get /system/http_proxy/use_http_proxy
gconftool-2 --get /system/http_proxy/host
gconftool-2 --get /system/proxy/socks_host
gconftool-2 --get /system/proxy/secure_host
gconftool-2 --get /system/http_proxy/port
gconftool-2 --get /system/proxy/socks_port
gconftool-2 --get /system/proxy/secure_port
gconftool-2 --get /system/proxy/mode

and to set the proxy you could use this:

Code:

gconftool-2 --type bool --set /system/http_proxy/use_http_proxy true
gconftool-2 --type string --set /system/http_proxy/host "localhost"
gconftool-2 --type string --set /system/proxy/socks_host "localhost"
gconftool-2 --type string --set /system/proxy/secure_host "localhost"
gconftool-2 --type int --set /system/http_proxy/port 8118
gconftool-2 --type int --set /system/proxy/socks_port 9050
gconftool-2 --type int --set /system/proxy/secure_port 8118
gconftool-2 --type string --set /system/proxy/mode "manual"


epage 2010-11-01 19:56

Re: [Announce] The One Ring
 
Quote:

Originally Posted by ioan (Post 856920)
The IPv6 problem I don't think has anything to do with the proxy settings. I think some python code needs to be patched to work with IPv6.

Ok, for somereason somehow I got the impression that there was an IPv4 proxy available.

turbowei 2010-11-01 21:56

Re: [Announce] The One Ring
 
question: how do I make a call? Just regular phone call. Say, I wanna call number (123) 4567890. What steps do I need to take after installing TOR?? (The One Ring/Google voice plugin for conversations and contacts).

epage 2010-11-02 02:07

Re: [Announce] The One Ring
 
Quote:

Originally Posted by turbowei (Post 860204)
question: how do I make a call? Just regular phone call. Say, I wanna call number (123) 4567890. What steps do I need to take after installing TOR?? (The One Ring/Google voice plugin for conversations and contacts).

1. Make sure you GV nickname is configured to your GV callback number

Contacts:
2. Select a contact
3. Select "Call through GV"

Dialpad
2. Dial number
3. Select phone service as GV
4. Hit Dial.

#1 is the one people usually mess up on. It is a bit confusing.

turbowei 2010-11-02 03:01

Re: [Announce] The One Ring
 
Quote:

Originally Posted by epage (Post 860393)
1. Make sure you GV nickname is configured to your GV callback number

Contacts:
2. Select a contact
3. Select "Call through GV"

Dialpad
2. Dial number
3. Select phone service as GV
4. Hit Dial.

#1 is the one people usually mess up on. It is a bit confusing.

works beautifully!

hmm, now, how do u check voicemail on GV from TOR? Is there some clever interface?

epage 2010-11-02 03:35

Re: [Announce] The One Ring
 
Quote:

Originally Posted by turbowei (Post 860417)
works beautifully!

It'd be a bit less confusing though if I could get the other call styles implemented.

Quote:

Originally Posted by turbowei (Post 860417)
hmm, now, how do u check voicemail on GV from TOR? Is there some clever interface?

You should receive the transcripts as IMs just like texts. I've tried to get the audio to be an incoming file transfer but haven't succeeded.

I don't have a push mechanism for voicemail transcripts and texts so TOR has to poll. It tries to be smart. The longer its been since the last message (or log off / log on), the longer it waits before checking. This is configurable in the advanced settings.

zerocool2k 2010-11-07 10:49

Re: [Announce] The One Ring
 
No one has the problem with the new purple extra protocols? I got my thread here but it got no response. I believe it affects TOR too.

gsever 2010-11-07 20:08

Re: [Announce] The One Ring
 
Hey,

Is there a problem with sending non-English characters included text message via this Google Voice IM plugin? They seem to be delivered fine via the web interface however, using virtual keyboard inserted non-English characters I can't seem to send anything. The written message disappears after I hit the send button, no failure or status message.

Thanks.

thorbo 2010-11-07 21:15

Re: [Announce] The One Ring
 
After updating to 1.3 I can't get Google Voice Plugin to connect. I am given a network error... although everything else seems to work. Any help on this would be great, as I have been using the tool for quite some time, and love it. Thanks -Thor

(Hopefully this is the right forum, I have tried due-diligence and could not find anything else on this issue.)

Edit, seems that the update of Pidgin Extra Protocols, and a reboot all the issues disappeared. Happened only after I had sent this note in. So, should anyone else have had the same issues I did... there is the solution.

Regards, -Thor

epage 2010-11-08 11:43

Re: [Announce] The One Ring
 
Quote:

Originally Posted by gsever (Post 866232)
Hey,

Is there a problem with sending non-English characters included text message via this Google Voice IM plugin? They seem to be delivered fine via the web interface however, using virtual keyboard inserted non-English characters I can't seem to send anything. The written message disappears after I hit the send button, no failure or status message.

Thanks.

This is something I've not tested. Feel free to file a bug on it.

https://bugs.maemo.org/enter_bug.cgi...e%20One%20Ring

gsever 2010-11-08 16:07

Re: [Announce] The One Ring
 
Allright, added here:

https://bugs.maemo.org/show_bug.cgi?id=11554

Looking forward a quick solution :)

epage 2010-11-08 23:57

Re: [Announce] The One Ring
 
Quote:

Originally Posted by gsever (Post 867073)
Allright, added here:

https://bugs.maemo.org/show_bug.cgi?id=11554

Looking forward a quick solution :)

I've got a fix (tested by copying the Russian name for Saint Petersburg and pasting it into Empathy to send it) and it is in git.

I do not want to upload this yet though. The current version of TOR is more important to get out sooner than adding this in. TOR is just one (honest) vote away from being promoted.

Addison 2010-11-09 00:00

Re: [Announce] The One Ring
 
I've not been able to get a text message to take on my last three attempts.

2 with DialCentral and 1 on Google Voice web page.

Is stupid Google Voice down again?

This just happened within the last ten minutes. :(

Addison 2010-11-09 00:06

Re: [Announce] The One Ring
 
Can you try sending me a text Ed?

Hopefully you still have my number, unless you nuked it. If you did, good one! *lol*

lemmyslender 2010-11-09 00:07

Re: [Announce] The One Ring
 
Quote:

Originally Posted by epage (Post 867545)
The current version of TOR is more important to get out sooner than adding this in. TOR is just one (honest) vote away from being promoted.

Obviously, I've been using TOR since the beginning. I haven't had/seen any issues with the latest version. Voted thumbs up.

epage 2010-11-09 00:13

Re: [Announce] The One Ring
 
Quote:

Originally Posted by Addison (Post 867552)
Can you try sending me a text Ed?

Hopefully you still have my number, unless you nuked it. If you did, good one! *lol*

I'm not having any trouble with the TOR or DC (still plugging away at the Qt version). Text sent.

Addison 2010-11-09 00:16

Re: [Announce] The One Ring
 
Okay. Yep. I'm seeing that as well.

Three of my texts suddenly went through just now from before.

Strange that it lagged for 12 minutes before actually being sent though it showed it went through immediately.

Whatever. It's all back to goodness again. :)

Thanks Ed!

gsever 2010-11-09 00:19

Re: [Announce] The One Ring
 
Quote:

Originally Posted by epage (Post 867545)
I've got a fix (tested by copying the Russian name for Saint Petersburg and pasting it into Empathy to send it) and it is in git.

I do not want to upload this yet though. The current version of TOR is more important to get out sooner than adding this in. TOR is just one (honest) vote away from being promoted.

No rush, I don't text in my native language frequently, only in special occasions when I teach to sweet/curious minds :D

By the way, how do you vote there? I personally find maemo bug reporting / package interfaces quite not user-friendly. Google's interface (e.g. http://code.google.com/p/nitdroid-v2/issues/list) is much simple and cleaner for reporting bugs.

Addison 2010-11-09 00:36

Re: [Announce] The One Ring
 
GV is being stupid again with me... Grrr. *lol*

I sent a text and it went through, I think, but I got a follow up message of...
(650) 265-1193: Error: this message was not successfully delivered.

Lol, what? That's not even the number I dialed! :D

epage 2010-11-09 00:43

Re: [Announce] The One Ring
 
Quote:

Originally Posted by gsever (Post 867564)
No rush, I don't text in my native language frequently, only in special occasions when I teach to sweet/curious minds :D

By the way, how do you vote there? I personally find maemo bug reporting / package interfaces quite not user-friendly. Google's interface (e.g. http://code.google.com/p/nitdroid-v2/issues/list) is much simple and cleaner for reporting bugs.

There are two separate systems. One is to handle the reporting of issues, the other is quality control for releasing software.

The bug reporting system is called bugzilla (-zilla due to its origins from Mozilla) and is used in a lot of projects which doesn't mean it is actually good :). It has more fields than are bug reporters. They can sometimes be helpful to me. The instructions for writing a description I think are quite good to help me best understand how to reproduce the problem and fix it.

There are specific instructions on what the QA process means. People go through and test the software against the checklist, giving it a thumbs up/down. They can also leave comments and use the bug tracker to file bugs.

feuxfollets 2010-11-09 04:53

Re: [Announce] The One Ring
 
I'm unable to delete google voice contacts; they keep reappearing after I delete them.

Bug filed here.
https://bugs.maemo.org/show_bug.cgi?id=11558

gsever 2010-11-10 20:49

Re: [Announce] The One Ring
 
I can confirm that, with the v.0.8.21-0 update, it is possible to send text messages containing non-English characters.

heavyt 2010-11-21 19:33

Re: [Announce] The One Ring
 
Instant messaging sometimes take over 5 mins to post on my N810. Other times it only takes 30 sec. Is this normal?

Addison 2010-11-21 22:55

Re: [Announce] The One Ring
 
Nope. Not normal at all.

GV has been somewhat weird off and on for the past week though.

It seems to have completely settled down now. :)

heavyt 2010-11-22 05:27

Re: [Announce] The One Ring
 
Well not here. i wonder is it TOR and not GV.


All times are GMT. The time now is 00:15.

vBulletin® Version 3.8.8