Deleting a users subscription [message #8177] |
Wed, 15 January 2003 09:19 |
malc
Messages: 3 Registered: November 2002 Location: UK
Karma: 0
|
Junior Member |
|
|
I have a user who is subscribed to receive notifications when a new topic is created, however their address is creating a bounce. Is it possible through the interface to delete their subscription? If not, what tables in the database do I need to look at?
Many thanks
Mal
|
|
|
Re: Deleting a users subscription [message #8185 is a reply to message #8177] |
Wed, 15 January 2003 15:06 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Only the user themself can delete their own subscriptions via a 'nice' web control panel. If you want to unsubscribe a user manually you can do it by running the following two queries:
DELETE FROM PREFIX_forum_notify WHERE user_id=USER's_ID
DELETE FROM PREFIX_thread_notify WHERE user_id=USER's_ID
P.S. substitute PREFIX with your SQL prefix you've specified during installation.
FUDforum Core Developer
|
|
|
|
|
|