Here's something that can help... I am not responsible if you trash your
email, so do the following at your own risk. I do not know if there's
supposed to be more to the schema of the Templates table. I just guessed
it until it complained no longer.

$ sqlite3 /home/<username>/.evolution/mail/local/folders.db

now you are at the sqlite command prompt:

We create the table with a single field which happens to be the primary
key also.

sqlite> CREATE TABLE 'Templates' ( deleted TEXT PRIMARY KEY);

that fixes the first problem with the missing table and field. The
second problem was that my Junk and Trash folder had messages that I had
to get rid of as there seemed to be a problem with the index in that it
couldn't find the messages there. You may not have to do this part.

sqlite> delete * from ".#evolution/Trash";
sqlite> delete * from ".#evolution/Junk";
sqlite> .quit

I can now delete emails from my inbox of my pop3 accounts.

-- 
Intrepid Ibex: Cannot empty Evolution Trash : [no such table: Templates]
https://bugs.launchpad.net/bugs/270763
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to