summaryrefslogtreecommitdiff
path: root/py-fake-service/app/adapter/tag.py
diff options
context:
space:
mode:
authorBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-09-03 18:05:39 -0300
committerBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-09-03 18:06:06 -0300
commitc54674c20aa9bd746d967044ac8cd29788d87f93 (patch)
tree568372a083a415555ffc4faa3d82de7f273d4a13 /py-fake-service/app/adapter/tag.py
parent2da2783e2ee984d37b66807c57b1ae9d41750ff4 (diff)
The mailset is not automatically loaded on startup, you can use an csv file as mailset
Diffstat (limited to 'py-fake-service/app/adapter/tag.py')
-rw-r--r--py-fake-service/app/adapter/tag.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/py-fake-service/app/adapter/tag.py b/py-fake-service/app/adapter/tag.py
index e1a08eb2..b866d789 100644
--- a/py-fake-service/app/adapter/tag.py
+++ b/py-fake-service/app/adapter/tag.py
@@ -13,12 +13,14 @@
#
# You should have received a copy of the GNU Affero General Public License
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
+
+
class Tag:
DEFAULT_TAGS = ["inbox", "sent", "trash", "drafts"]
def __init__(self, name, ident):
self.counts = {
- 'total': 1,
+ 'total': 0,
'read': 0,
'starred': 0,
'reply': 0