"Zombie User" after deleting one user

Hi @capote,

I can confirm that webtop has its own internal cronjob that every 2 minutes looks for any scheduled emails to be sent on all the IMAP accounts it has on its database.

If you delete a user on the server without first removing the profile on the webtop, what you reported happens:

You have two options to solve:

  1. recreate the user on the server, access the webtop admin panel and remove the profile
    (for example)

only subsequently delete the user also from the server

  1. access the database and deactivate the user profile of the xxxxx that no longer exists:

    su - postgres -c 'psql webtop5'
    update core.users set enabled='f' where user_id='xxxxx';

    \q (to exit)

Let me know if you solve :wink:

4 Likes