But this client also wants to disable private messages for at least most users, so that won’t work. (I tried )
One solution would be a site setting that would allow users to be able to send PMs to staff.
Perhaps I’m missing something, bu tI’m afraid the other solutions all require a plugin or some other app. (e.g., Canned replies works only for staff, right?)
If I’m reading you right, you want to restrict the target of pms to staff only?
You could do this relatively easily in a standalone plugin. The plugin.rb would read:
# name: only-pms-to-staff
# about: You can only send pms to staff
# version: 0.1
# authors: pfaffman
after_initialize do
add_to_class('guardian', :can_send_private_message?) do |target|
target.is_a?(User) &&
# User is authenticated
authenticated? &&
# Have to be a basic level at least
@user.has_trust_level?(SiteSetting.min_trust_to_send_messages) &&
# User disabled private message
(is_staff? || target.user_option.allow_private_messages) &&
# PMs are enabled
(is_staff? || SiteSetting.enable_private_messages) &&
# Can only send pms to staff
target.staff?
end
end
Here’s what I ended up with. If I were better at understanding the distributed properties of and and or, I’d have moved target.staff? outside of those three expressions, but this seems to do what I wanted. My scant tests show that it allows sending to an admin and if you send to an admin and another user, it is denied.
after_initialize do
add_to_class('guardian', :can_send_private_message?) do |target|
target.is_a?(User) &&
# User is authenticated
authenticated? &&
# Have to be a basic level at least
(target.staff? || @user.has_trust_level?(SiteSetting.min_trust_to_send_messages)) &&
# User disabled private message
(target.staff? || is_staff? || target.user_option.allow_private_messages) &&
# PMs are enabled
(target.staff? || is_staff? || SiteSetting.enable_private_messages)
end
end
it doesn’t quite meet my standards for posting to #plugins just yet, but if anyone stumbles here and wants to do this, here’s this:
Any user who has the min trust level to send a pm, to send a message to any other user who has not disabled pms, regardless of whether or not they are staff.
The first alternative, i.e. target.staff?, is redundant, as the last alternative will always be true as long as pms are turned on.
The is_staff? check here is used to ensure that staff members can still perform an action even if that action is disabled (this is normal practice in the Discourse code). Keep those two as the only alternatives in that line, i.e.
There was an issue with my initial code, as it didn’t allow staff members to send messages to non-staff members. The way to fix that is by adding the is_staff? check to that line specifically, i.e.
(is_staff? || target.staff)
Any user of any trust level to send a message to a staff member (e.g. immediately after joining).
private messages are enabled (and they’re not for this site, which is what I’m trying to solve)
And I (or this client) want everyone to be able to send to staff.
Hooray! That’s what I wanted! (Of course, it could prove to be a problem, but we can solve it when there is one) It’s good advice to change that to TL1, though. I made a note of that too.
Ah, that’s (but one of the reasons) why I don’t think anyone should use this. For this site, I’m sure that no staff will be disallowing PMs. I should probably fix this one. I added a comment to remind me to do so when I can “test” – not to be confused with writing a proper test! (Or maybe I want to make sure that a staff member who needs to receive these messages doesn’t inadvertently disable PMs – A documented bug is a feature!)
Thanks again, @angus! A couple more trivial plugins under my belt and I might do something useful!
Prevent the user from taking the notify_user and notify_moderator post actions (see here). These post actions require private messages.
And there may be more instances of that setting being used to disable functionality in the future.
If I’m reading you right, your case is one of permissions, not one of functionality? You still want the functionality, just a restricted version of it.
edit: re-reading your first post, maybe you do want to disable the functionality entirely! Well at least we thought this through.
This is how my naive solution is so lucky! The plan is to use a URL to generate the initial message, so not being able to see the PM interface is a bonus!
That’s pretty fine too, as this is basically doing the same thing as using a Google form would be. It’s mostly for a one-way initiation of a conversation. I should check what happens if someone replies to the PM, though.
Ah, yes. The Royal “We”. Thanks very much for your help. You’ve taught me a lot and I appreciate it.
أواجه مشكلة مماثلة يمكن حلها بشكل أنيق جدًا بمنع الرسائل المباشرة العادية من شخص إلى شخص. إنها منظمة تطوعية، ويحتاج المتطوعون إلى التواصل مع المنسقين، ولكن يُفضل ألا يتواصلوا فيما بينهم.
الإضافة المذكورة أعلاه (https://github.com/pfaffman/discourse-allow-pm-to-staff) تعمل. لا أقدم أي وعود، لكن العميل الذي كلف بها لا يزال يستخدمها، لذا فهي تُصان بنشاط، بل إنها تحتوي حتى على اختبارات تُشغّل على travis.
أفهم أن هذا مُقدَّم مجانًا دون أي ضمانات، وهو أمر نقدره حقًا.
فقط كتنبيه، يبدو أنه لا يعمل حاليًا. ما لم أكن قد قمت بتكوين شيء ما بشكل خاطئ، فإن الإضافة مُثبَّتة ومُفعَّلة.
لقد اختبرت مع ضبط «الحد الأدنى لمستوى الثقة لإرسال الرسائل» على 1، ومحاولة مستخدم TL0 إرسال رسالة خاصة إلى أحد أعضاء الطاقم. كما اختبرت مع ضبط «الحد الأدنى لمستوى الثقة لإرسال الرسائل» على 2، ومحاولة مستخدم TL1 إرسال رسالة خاصة إلى أحد أعضاء الطاقم.
في الحالتين، كان زر الرسائل الشخصية مخفيًا في ملفات أعضاء الطاقم بالنسبة لحساب المستخدم العادي إذا كان مستوى الثقة (TL) الخاص به أقل من إعداد «الحد الأدنى لمستوى الثقة لإرسال الرسائل». كما تم تمكين استقبال الرسائل الخاصة في إعدادات مستخدم الطاقم المستهدف أيضًا.
هذا هو الحال بالنسبة لي، مع كل من الإصدار المستقر 2.5.0 والإصدار التجريبي 2.6.0.beta1 (اختبارات ناجحة).
على الإصدار المستقر، اختبرت أيضًا كتابة رسالة يدويًا من صفحة /u/username/messages وإدخال عضو الطاقم كمستقبل، لكن الرسالة رُفضت عند الإرسال.
حسناً، يبدو أن الأمر يعمل على نسختي التطويرية التي تشغل 2.6.0.beta1 وكذلك على نسخة الإنتاج التي تشغل 2.5.0.beta4، ولا تزال الاختبارات تمر بنجاح على Travis.
تخميني الوحيد هو أنه لا يعمل مع المواقع المتعددة، وهل أنت تشغّل مواقع متعددة؟
هذا رائع أن نسمع أنه يعمل! ربما أغفلت شيئًا بديهيًا. لم يكن الأمر يتعلق بمواقع متعددة، بل بتثبيتات Docker قياسية. الخطوات التي اتبعتها كانت كالتالي:
تثبيت الإضافة من https://github.com/pfaffman/discourse-allow-pm-to-staff.git. لم أقوم بتفعيل هذه الإضافة تحديدًا أو تعيين أي خيارات خاصة بها. ومع ذلك، يظهر في /admin/plugins أن حقل ‘enabled?’ مضبوط على Y.
تعديل ‘أقل مستوى ثقة لإرسال الرسائل’ وتجربته مع حساب مستخدم عادي يقع دون مستوى الثقة (TL) المحدد هذا بمحاولة إرسال رسالة إلى الطاقم.
حاولت إزالة جميع الإضافات باستثناء هذه الإضافة على الإصدار المستقر 2.5.0 في حال وجود تعارض ما، لكن ذلك لم يُحدث أي فرق.
لم قمت بتخصيص/إعداد اختبار Travis، لذا يبدو أنه منع إضافة البرنامج من العمل.
لذلك حاولت إزالة كل شيء باستثناء ملف plugin.rb، وبدأت تعمل بالنسبة لي. قمت أيضًا بتعديل المنطق قليلاً لتناسب حالتي.
كما هو الحال حاليًا، يمكن للمستخدمين من مستوى الثقة TL0 وما فوق مراسلة المسؤول إذا انخفض مستوى ثقتهم عن “أدنى مستوى ثقة مسموح به لإرسال الرسائل” المخصص، لكنهم لا يمكنهم مراسلة المشرف.
لذا لتعديل هذا، يجب تغيير هذا القسم بشكل طفيف جدًا (أقدر التعليقات الواضحة ):
# يجب أن يكون على الأقل مستوى أساسي -- والآن: أو إرسال إلى المسؤول
(is_group || @user.has_trust_level?(SiteSetting.min_trust_to_send_messages) || notify_moderators || target.admin) &&
إذا كنت تريد السماح بالمراسلة لأي عضو في الفريق (الذي لم يعطِ خيار استلام الرسائل الخاصة)، فقم بتغييره إلى:
# يجب أن يكون على الأقل مستوى أساسي -- والآن: أو إرسال إلى عضو الفريق
(is_group || @user.has_trust_level?(SiteSetting.min_trust_to_send_messages) || notify_moderators || target.staff?) &&
إذا كنت تريد تمكين المراسلة للمشرفين فقط وليس للمسؤولين:
# يجب أن يكون على الأقل مستوى أساسي -- والآن: أو إرسال إلى المشرف
(is_group || @user.has_trust_level?(SiteSetting.min_trust_to_send_messages) || notify_moderators || target.moderator) &&