I wrote a Pywikibot script that adds a message to a user’s talk page if some conditions are detected. So far so good, but when my bot leaves the message, the user is not notified, which kind of defeats the purpose. The bot account operates with the bot flag.
I tried adding a notification in the message, as in Hey [[User:Someone|Someone]]
, but this does not trigger a notification either.
Page.save
method, it has abot
parameter, try setting it toFalse
.bot
parameter makes no difference, but your suggestion did point me in the right direction: I needed to set theminor
parameter toFalse
.