summaryrefslogtreecommitdiff
path: root/service/pixelated/support
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-09-11 10:26:18 -0300
committerDuda Dornelles <ddornell@thoughtworks.com>2014-09-11 10:36:19 -0300
commit6b62849aa40023fd9eba666560984e0edfedc55d (patch)
tree32521cffb815aceeca47a4812cc833e3eff323e1 /service/pixelated/support
parentcf9b7a1292e9d2ec8c5326f91803f489a8251d14 (diff)
generating unique ident for PixelatedMail
Diffstat (limited to 'service/pixelated/support')
-rw-r--r--service/pixelated/support/id_gen.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/service/pixelated/support/id_gen.py b/service/pixelated/support/id_gen.py
new file mode 100644
index 00000000..6cac7523
--- /dev/null
+++ b/service/pixelated/support/id_gen.py
@@ -0,0 +1,20 @@
+#
+# Copyright (c) 2014 ThoughtWorks, Inc.
+#
+# Pixelated is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# Pixelated is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
+import hashlib
+
+
+def gen_pixelated_uid(mbox, leap_message_uid):
+ return hashlib.md5(mbox + str(leap_message_uid)).hexdigest()