I have over 200 unread text messages and voice messages on Google Voice. How can I mark these all as read without having to do it one page at a time?

I tried pressing "select all" and then looking for a "select all conversations that matched instead" button (similar to what Gmail has), but there is no button like that.

link|improve this question

63% accept rate
2  
It sounds like you are not the only one: google.com/support/forum/p/voice/… – BrianH Nov 18 '10 at 14:30
feedback

2 Answers

up vote 6 down vote accepted

The only way I can find would require you to write a bit of Python code.

This is the site that provides a module for Python http://code.google.com/p/pygooglevoice/

This page gives you details on how to set a message to read. Look for the Mark function under the Message section. sphinxdoc. github.com/pygooglevoice/api.html#message

I would write the script for you but I do not know enough Python to make an attempt.

Hope that helps some.

EDIT: shouldn't belittle my abilities. Here is a script to set everything to read.

from googlevoice import Voice,util

voice = Voice()
voice.login('YOUR USERNAME', 'YOUR PASSWORD')

while True :
    folder = voice.search('is:unread')
    if folder.totalSize <= 0 :
        break
    util.print_(folder.totalSize)
    for message in folder.messages:
        util.print_(message)
        message.mark(1)

UPDATE - gygooglevoice needs a change in its settings page to work properly, otherwise you will get a login error. Change needed is referenced here: http://code.google.com/p/pygooglevoice/issues/detail?id=64#c4 (just update the Login URL)

link|improve this answer
excellent work, thank you so much. – Austin L. Feb 2 '11 at 7:31
Great answer. I wish I would have seen this before spending an hour marking 10 at a time. – Chris_O Mar 3 at 6:31
feedback

Use a filter to mark all emails from "voice-noreply@google.com" as read, and apply it to all existing emails, also you can have them automatically sorted to a folder and archive them if you don't want to see them in your inbox.

link|improve this answer
1  
Errr...he's not talking about his Gmail inbox, but rather his Google Voice inbox. – Al Everett Jan 27 at 20:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.