# HG changeset patch
# User Pascal Volk <neverseen@users.sourceforge.net>
# Date 1219675783 0
# Node ID 5506433db9a3dcc9b247476650021ad9c7240064
# Parent  432a037658a8e6c642ca85febba26b99f6605c3f
* 'VirtualMailManager/Account.py'
    - Account.delete() delete also all aliases where the destination address is
      the same as for this account.

diff -r 432a037658a8 -r 5506433db9a3 VirtualMailManager/Account.py
--- a/VirtualMailManager/Account.py	Sun Aug 24 22:26:00 2008 +0000
+++ b/VirtualMailManager/Account.py	Mon Aug 25 14:49:43 2008 +0000
@@ -198,7 +198,11 @@
             dbc = self._dbh.cursor()
             dbc.execute("DELETE FROM users WHERE gid=%s AND local_part=%s",
                     self._gid, self._localpart)
-            if dbc.rowcount > 0:
+            u_rc = dbc.rowcount
+            # delete also all aliases where the destination address is the same
+            # as for this account.
+            dbc.execute("DELETE FROM alias WHERE destination = %s", self._addr)
+            if u_rc > 0 or dbc.rowcount > 0:
                 self._dbh.commit()
             dbc.close()
         else: