This repository has been archived on 2025-01-09. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-01-09/src/helper_inbox.py
2013-08-27 10:00:26 -04:00

10 lines
277 B
Python

from helper_sql import *
def insert(t):
sqlExecute('''INSERT INTO inbox VALUES (?,?,?,?,?,?,?,?,?)''', *t)
def trash(msgid):
sqlExecute('''UPDATE inbox SET folder='trash' WHERE msgid=?''', msgid)
shared.UISignalQueue.put(('removeInboxRowByMsgid',msgid))