We're running WPMUdev's Memberships plugin, which requires that the default IPN lister URL be set in one's PayPal profile (because even though the subscribe buttons include notify_url, without a default IPN listener set, apparently there's no way to get recurring payment cancellation messages) — and that all works just fine.
Trouble is, PayPal can't tell the difference between buttons generated by this plugin and manually generated buttons (eg one-off donation), and tries to send IPN messages to the plugin's listener, which gets completely confused because the expected metadata isn't sent with it. PayPal then retries the IPN until its limit is reached.
Is there some way to use notify_url
(or some other HTML variable) to disable IPN messages for a specific button? Or will I have to write a null IPN listener that simply acknowledges IPN messages and drops them on the floor?
What @EdSF said is what I would recommend.
Setup an IPN listener that does nothing but return a 200 OK back to PayPal. It doesn't have to actually do anything.
Then set that URL as the value of notify_url in the button that you want to "disable".
This will way you won't end up with loops of IPNs from PayPal trying to hit a bogus URL that doesn't exist.