datitisev Are you able to reproduce on an empty local forum?

Yes, notifications about new discussions never work. It may be regression in 0.2.1, because I have some old notification on test installation, before 0.2.1 release.

    rob006 No notifications are sent, or just no email notifs? What version so you have your old installation on ?

      rob006 Oh that check may be breaking it if the discussion isn't private, not sure how the permission works. Thanks for finding out when the regression was introduced. 🙂

      13 days later

      0.3.0

      • ! Requires beta 10
      • Use the new queues for notifications
      • Reworks logic that checks if you can see a discussion to make it more what Flarum uses

      Updating

      composer require fof/follow-tags
        • [deleted]

        • Edited

        datitisev composer require fof/follow-tags

        uh, I tried composer update fof/follow-tags an then saw your updating guide: composer require fof/follow-tags

        Thanks for this great extension. 😀

        9 days later

        Thanks for a very beautiful extension. The small dropdown button on the right of Follow was going in the second line for tablet view only. So I applied this css fix for tablets only:

        @media (max-width: 991px) and (min-width: 768px) {
           li.item-subscription.App-primaryControl {
           width: 190px;
        }
        }

        @datitisev Just a suggestion if you think it is good to add to the extension. At the bottom of the newDiscussion.blade.php and
        newPost.blade.php if you can add:

        Unsubscribe at https://myforum.com/settings

        where myforum.com is the flarum url. Then our emails will have a unsubscribe link at the bottom and closer to confirm to the CAN-SPAM Act. I don't need html pretty emails. Just an unsubscribe link is a must I think so that any mail provider we use, we can show them that we are following the can-spam act. Thanks.

          nitaaikumar That's an idea... though that should probably have its code base separate from follow tags as core extensions themselves also send emails (e.g. flarum/subscriptions)... not sure, as email isn't very extensible right now.

            There is a bug in this extension which sends even the approval queue posts by email to the normal users who have checked to get all posts in the tags they follow. So datitisev will kindly fix this in a few days for this extension and add a new option to send email for approval queue posts to admins and mods in the Subscribed extension. Also he will fix sending full text of new discussion posts not going in this, Subscribed, and Pretty Mail extensions. I can confirm that the full texts of reply posts are coming now in the Pretty Mail extension also, just like in the default non-html Flarum mention emails. For new discussions, full text is not coming yet in any of the extensions. Thanks datitisev for your kind help.

            • [deleted]

            0.3.1 is available 🙂

              [deleted] Are you getting the emails for all the posts in the discussions of the tags which are followed. They have stopped coming for me from 0.3.1. @datitisev could you reproduce this at your end to fix this please?

                nitaaikumar Are you referring to discussions (following/lurking) or posts (lurking)?

                I didn't post 0.3.1 on here as I haven't added the integration with flarum/approvals yet...

                  0.3.2

                  • 0.3.1 Use the Flarum scope visibility to determine if the user can view the discussion or post
                    • fixes issues with notifications for byobu & unapproved discussions/posts, they will still be sent if the user can view it (e.g. recipients of private discussion with byobu)
                  • Change icon of new discussion
                  • Resend notification to new users that can view the discussion/post after it has been approved (flarum/approval)

                  Updating

                  composer require fof/follow-tags

                  datitisev Lurking of tags: "Be notified of all new discussions and replies". And the Profile setting: "Someone posts in a tag I'm following". It is not working like before it seems.

                    nitaaikumar What do you mean, not working as before? What's the previous vs current behavior? Post notifications are only sent if you have read the last post on the discussion already, to prevent spam (like Flarum core does).

                      datitisev Oh ok sorry I did not know this. Ok just checked, it works then. Thanks.

                      0.3.3

                      To avoid issues with deleted posts & post numbers, the extension now checks if your last post read in the discussion is equal to or greater than the last post number of the discussion... hopefully this fixes some issues.

                      Updating

                      composer require fof/follow-tags

                        datitisev Can you please also fix showing full post content for the Follow Tags setting: "Someone creates a discussion in a tag I'm following" setting like you just fixed for all get new discussions setting in the Subscribed extension? Thanks.