¿ªÔÆÌåÓý

Date

Re: Using Google Analytics

 

On Tue, Oct 15, 2024 at 08:30 AM, Linda Kilcrease wrote:
While it makes no sense for the cost of the Enterprise plan for this, is there any way to use Google Analytics to track access and such to the website?
No.? For those that want "extra" information, they have to pay for the privilege.? I noticed recently that there's no longer a fixed price for Enterprise.? It now says "Custom Pricing" so you have to contact management to find out what it would be.? Among the best things about the site, IMO, is that there is no tracking or ads.
?
Duane
--
Lots of detailed information can be found in the Owners Manual and Members Manual.


Using Google Analytics

 

I will be using one of my groups.io websites as a read-only website.? Only a handful of members.? I will be posting articles I write, like a blog.? While it makes no sense for the cost of the Enterprise plan for this, is there any way to use Google Analytics to track access and such to the website?
?
?


Re: Automatic Image resizing broken?

 

On Mon, Oct 14, 2024 at 08:57 PM, Greg D wrote:
Settings seem correct.? Max photo size in email under Message Policies is "Resized to a max of 1024x1024".?
What is the image format? Groups.io may not be recognizing it as a photo.
?
Bruce


Re: Other notice for email bouncing

 

Hello, Noah does not do this. You are able to receive the bouncing notification. And that is suspicion enough.

On Oct 12, 2024, at 4:42?PM, Ken Cameron <kcameron@...> wrote:

Can groups.io send the 'you are bouncing' message via something other
than the email address that is bouncing? Like a text or alternate
email address?

-Ken Cameron, Member JMRI Dev Team
www.jmri.org
www.fingerlakeslivesteamers.org
www.cnymod.com







Re: Automatic Image resizing broken?

 

¿ªÔÆÌåÓý

Settings seem correct.? Max photo size in email under Message Policies is "Resized to a max of 1024x1024".? Under Features there is no option, as this is a free account.

Greg D


Bruce Bowman via groups.io wrote:

On Mon, Oct 14, 2024 at 12:50 PM, Greg D wrote:
Has anybody noticed that the attached-image resize doesn't seem to be working?? I have our group set to reduce images to 1024x1024, but we got a posting last night with a set of 3 jpg attachments (6720x4480 pixels each) that totaled some 14 megabytes, all of which were passed on through unchanged.
I'm unable to replicate this. Are you sure your settings are correct?
?
There's one in Message Policies ("Max Photo Size in Email") and a second one in Features ("Max Size in Photos section").
?
Regards,
Bruce



Re: Automatic Image resizing broken?

 

On Mon, Oct 14, 2024 at 12:50 PM, Greg D wrote:
Has anybody noticed that the attached-image resize doesn't seem to be working?? I have our group set to reduce images to 1024x1024, but we got a posting last night with a set of 3 jpg attachments (6720x4480 pixels each) that totaled some 14 megabytes, all of which were passed on through unchanged.
I'm unable to replicate this. Are you sure your settings are correct?
?
There's one in Message Policies ("Max Photo Size in Email") and a second one in Features ("Max Size in Photos section").
?
Regards,
Bruce


Re: Getting statistics of member activity

 

¿ªÔÆÌåÓý


On 2024-10-14 04:34, Andy Wedge via groups.io wrote:
I've done some testing and the most_recent_message always seems to be set to 0001-01-01T00:00:00Z so using it to identify members who have not posted a message does not work as it stands. I've raised a query on to try and determine if it should be set or if it has some other purpose.

Interesting, I mentioned this same condition back in 2021, not on the api call but the member list export, most_recent_message is always set to that same unusable value for everyone, see . Nothing ever came out of it so instead one can use the activity log and do it that way, i.e. find who has posted a message so it can be cross-referenced against a member table to get the one who haven't.

Cheers,
Christos


Automatic Image resizing broken?

 

Hi folks,

Has anybody noticed that the attached-image resize doesn't seem to be working?? I have our group set to reduce images to 1024x1024, but we got a posting last night with a set of 3 jpg attachments (6720x4480 pixels each) that totaled some 14 megabytes, all of which were passed on through unchanged.? We're on the free tier, and would like to keep it that way for as long as possible.

The images were of the comet A3, taken by a DSLR.

Thanks,

Greg D


Re: Getting statistics of member activity

 

Yes but that is obvious by the number required to post against each NMM so those who are less than the number required can be omitted

Most I believe use one post

Nivard Ovington in Cornwall (UK)

On 14/10/2024 11:19, Andy Wedge via groups.io wrote:
On Mon, Oct 14, 2024 at 11:08 AM, Nivard Ovington wrote:
filter by NMM (new member moderated) who by default have never posted
That would be the case if the NMM value was initially set to 1. If the NMM value is initially set higher it is decremented each time a post is made so a member could still have a NMM status but have posted messages.
Regards
Andy


Re: Getting statistics of member activity

 

On Mon, Oct 14, 2024 at 11:08 AM, Nivard Ovington wrote:
filter by NMM (new member moderated) who by default have never posted
That would be the case if the NMM value was initially set to 1. If the NMM value is initially set higher it is decremented each time a post is made so a member could still have a NMM status but have posted messages.
?
Regards
Andy


Re: Getting statistics of member activity

 

The OP wants to send a message to all those who have never posted

Assuming the OP has a group where approval is required for the first or subsequent post

Go to the members list under admin

filter by NMM (new member moderated) who by default have never posted

Select the list and scroll to the bottom, and select send message

Add subject line and message text and send
(I think you can also send any notification you have set up at the same time)

Nivard Ovington in Cornwall (UK)

Also a way to email all members who have never posted for
example, and any other useful tricks?


Re: Getting statistics of member activity

 

On Sun, Oct 13, 2024 at 11:06 PM, Andy Wedge wrote:
Also a way to email all members who have never posted for example, and any other useful tricks?
I can't think of a way to do this via the web UI.? You could write some code to use the API though.? If you use the /getmembers endpoint, it returns a member object for each member.? The member object contains a timestamp for the most_recent_message and it may return 0001-01-01T00:00:00Z if no message has been posted so you could identify the members in question. You would need to do additional processing to send them an email after that. I haven't tested this but the API would be my start point if I wanted to do it.
I've done some testing and the most_recent_message always seems to be set to 0001-01-01T00:00:00Z so using it to identify members who have not posted a message does not work as it stands. I've raised a query on to try and determine if it should be set or if it has some other purpose.
?
My previous post referred to a 'member object' but to be accurate, it's actually called a 'Member Info Object' in the API documentation.
?
Regards
Andy


Re: Members and directory have different numbers?

 

Figured it out. Bouncing addresses are not counted in the directory number.?


Re: Members and directory have different numbers?

 

On Sun, Oct 13, 2024 at 08:36 PM, Patty BryanTaff wrote:
As an admin I look at my group members list and there are 257 members. Then I go to the directory and it says it¡¯s showing 242 of 242 members.?
can someone explain where the other members went?
This means you have 15 members who are either Bouncing, Not Confirmed, or RI.
?
Such inactive subscriptions do not count against your membership quota.
?
Regards,
Bruce


Re: Members and directory have different numbers?

 

As an admin I look at my group members list and there are 257 members. Then I go to the directory and it says it¡¯s showing 242 of 242 members.?
can someone explain where the other members went? ?I know the directory won¡¯t show people with private accounts but shouldn¡¯t the total number listed on the directory page actually be the total number of members?
Accounts that are bouncing (B status badge), or whose email address is not confirmed (NC), also do not appear in the Directory.
?
The glossary says: ?
?
Member directory
An index of the profiles of group members who opt to share their profile with the group. Owners can specify whether a group¡¯s directory is visible to all members or only to owners and moderators, or whether the directory feature is enabled at all.
And
In Admin - Member list
A list of all of the members in a group along with their display names, email addresses, message delivery options, join dates, and bounce status. The list also includes any members who have been banned. Owners can specify whether a group¡¯s member list is visible to all members (which requires the group to have restricted membership) or only to owners and moderators.
?
?
Frances
--
Help available from Groups.io help and GMF wiki.

?


Members and directory have different numbers?

 

As an admin I look at my group members list and there are 257 members. Then I go to the directory and it says it¡¯s showing 242 of 242 members.?
can someone explain where the other members went? ?I know the directory won¡¯t show people with private accounts but shouldn¡¯t the total number listed on the directory page actually be the total number of members?


Re: Getting statistics of member activity

 

On Sun, Oct 13, 2024 at 10:40 PM, SafeTex wrote:
If I go into "Directory" and choose a member of a group, I can see how many times they have posted a message.
But I have to do this one at a time.
?
Is there any way of getting such statistics in one go, such as seeing how many times all the members have started a thread or participated in one. Maybe what tags they used if they started a post,
If you have or upgrade to an Enterprise group, you have the option of using Google Analytics and that may give some of what you want. An alternative would be to download the Activity Log and do some processing on that.

Also a way to email all members who have never posted for example, and any other useful tricks?
I can't think of a way to do this via the web UI.? You could write some code to use the API though.? If you use the /getmembers endpoint, it returns a member object for each member.? The member object contains a timestamp for the most_recent_message and it may return 0001-01-01T00:00:00Z if no message has been posted so you could identify the members in question. You would need to do additional processing to send them an email after that. I haven't tested this but the API would be my start point if I wanted to do it.
?
Regards
Andy
?


Re: Getting statistics of member activity

 

On Sun, Oct 13, 2024 at 05:40 PM, SafeTex wrote:
If I go into "Directory" and choose a member of a group, I can see how many times they have posted a message.
But I have to do this one at a time.
Just to start this off, Directory isn't the place to look if you want to see all of your group members. You need to use Admin, Members. There are some dropdown menus once you are there. It won't be in one go, though. It will be member by member. There is also Activity.?
?
It is possible stats may be available through exporting the message archive. Anyone with info or experience on this??
?
?
Frances
?
?
?
--
Help available from Groups.io help and GMF wiki.

?


Getting statistics of member activity

 

Hello GMF members.

If I go into "Directory" and choose a member of a group, I can see how many times they have posted a message.
But I have to do this one at a time.
?
Is there any way of getting such statistics in one go, such as seeing how many times all the members have started a thread or participated in one. Maybe what tags they used if they started a post,

Also a way to email all members who have never posted for example, and any other useful tricks?
?
I think the answer is always going to be "no", but I want to make sure.

Thanks


Re: Subgroup delivery preferences inheritance by default #direct-add #settings #subgroups

 

On Sun, Oct 13, 2024 at 06:31 AM, Andy Wedge wrote:
The answer is No as you suspected.
Thanks Andy. I'll layout an enhancement proposal for this functionality and submit it to Beta this evening.
-kenny