Messaging settings: Difference between revisions

From MoodleDocs
(screenshot)
m (fix a row spacing error)
 
(32 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{{Messaging}}
{{Messaging}}
==Messaging settings for all users==
*Users can decide how they want to be notified of new messages and event notifications by editing their messaging preferences page, which they can access either from the Preferences link in the user menu or from the gear icon in the messaging/notifications menus. See [[Messaging]] and [[Notifications]] for more information.
*Users can decide how they want to be notified of new messages and event notifications by editing their messaging preferences page, which they can access either from the Preferences link in the user menu or from the gear icon in the messaging/notifications menus. See [[Messaging]] and [[Notifications]] for more information.
*Which options they see there depend on what has been enabled by the administrator. For example, the mobile option is only available if the site is enabled for the mobile app.
*Which options they see there depend on what has been enabled by the administrator. For example, the mobile option is only available if the site is enabled for the mobile app.
*The information below explains the site settings for adminstrators.
=Enabling Messaging=
==Enabling / disabling messaging site wide==
==Enabling / disabling messaging site wide==
The personal messaging system in Moodle is enabled by default. It may be disabled by a site administrator from Site administration > Advanced features.


The personal messaging system in Moodle is enabled by default. It may be disabled by a site administrator from 'Advanced features' in Site administration.
From 'Messaging settings', the administrator can "Allow site-wide messaging" (disabled by default). If this setting is enabled, users on the site can view all other users when selecting someone to message and can choose to accept messages from anyone on the site.
=Site administration: Message outputs =
 
Most of the Messaging system default settings are set in 'Message outputs' in Site administration.
 
=== Manage Message outputs===
 
There are four default types of output methods for messaging: popup notices, Jabber IM type messages, messages sent as email and mobile notifications
 
Each of these can be enabled or disabled independently by a site administrator in ''Administration > Site administration > Plugins > Message outputs > Manage message outputs''.  
 
By default Popup and Email are both enabled, though email will only work of course if the site has been properly configured to deliver email. Jabber and Mobile notifications are  off by default and need to be configured first.
 
[[File:moodle23-manage-message-outputs.png|center|thumb|500px]]
 
====Popup notification====
 
Has no settings. It can be enabled or disabled. How it appears will depend on some extent to the theme.
 
 
==== Jabber message====
 
Jabber must be configured before use.
 
''(Could someone with working settings fill this out with example?)''
 
*Host - The server to connect to to send jabber message notifications - full hostname (e.g. jabber.org)
*Server - XMPP host ID (can be left empty if the same as Jabber host)
*Username - The user name to use when connecting to the Jabber server
*Password - The password to use when connecting to the Jabber server
*Port - defaults to 5222
 
 
====Email====
 
=====SMTP hosts=====
 
SMTP stands for Simple Mail Transfer Protocol. The SMTP host is an email relay that will take the email from Moodle and send it to users. You will need to set this only if your server does not allow mail relay. Otherwise, PHP will send out the mail using its built-in mail server. All the email sent by forums and other modules will be sent through this host.


Most SMTP hosts make use of the default port 25 to for listening email traffic. However, occasionally a non-default port is used. In such cases, entering an SMTP host followed by a colon (i.e. :) and the port number should work. For example, if my SMTP host is myemailserver.com and it listens on port 587 or 465 (most common) instead of port 25 I would enter the SMTP host as myemailserver.com:587.
==Notification settings ==
Messaging system default settings are set in 'Notification settings' in Site administration / Messaging


=====No-reply address=====
There are three default types of notification plugins: web, email and mobile.
You can specify here the default email address you wish to use  as the "From" address where users cannot  reply directly to others (eg when a user chooses to keep their address private).


It is possible to check a box to enable 'Always send email from the no-reply address'. This can be used to stop anti-spoofing controls in external mail systems blocking emails. The default setting is 'No'.
By default, web and email are both enabled, although email will only work of course if the site has been properly configured to deliver email. Mobile notifications are off by default and need to be configured first.
[[File:NotificationPlugins4.png|center|thumb|500px]]


=====SMTP security=====
==== Jabber ====
 
If the SMTP server requires a secure connection, the correct protocol type, SSL or TSL, may be set.
 
=====Configure HTTPD/SELinux on CentOS/Red Hat (RHEL) 6.2/6.1/6=====
 
Most new installations of Centos/Red Hat have SELinux activated and is configured by default, rather strictly. In this state SELinux does not allow Apache (httpd,phpmailer) to use the sendmail function and make any sort of network connection.
 
If you continue to have problems with sending/authenticating use the '''getsebool''' command to find out if SELinux is one of the culprits. When the '''getsebool''' command is issued it returns ''on'' or ''off''.
 
Type to check if your Apache is allowed to send mail and make a connection over the network
*''getsebool httpd_can_sendmail''
*''getsebool httpd_can_network_connect''
 
You will receive the values of ''httpd_can_sendmail'' and ''httpd_can_network_connect''. Let's assume both options are off:
*''httpd_can_sendmail -->off''
*''httpd_can_network_connect -->off''
 
We need to change the values from ''off'' to ''on'' by using '''setsebool'''. Number 1 = on and 0 = off. Type the following:
*''setsebool -P httpd_can_sendmail 1''
*''setsebool -P httpd_can_network_connect 1''
 
You will not receive a response. You can double check if the '''setsebool''' command worked by using '''getsebool''' and see if the values changed from ''-->off'' to ''-->on''.


{{Note|The Jabber message output has been removed from new installations of Moodle 4.0.}}
The code for the Jabber message output is currently available from the [https://moodle.org/plugins/message_jabber Plugins directory.]


====Mobile notifications====
====Mobile notifications====
[[File:mobilenotifications.png]]
[[File:mobilenotifications.png]]


The administrator can configure the site to push messages to mobile devices. Moodle pushes messages to a messaging server, which then pushes it to Apple or Google depending on the platform the target device is using (iOS or Android).
The administrator can configure the site to push messages to mobile devices. Moodle pushes messages to a messaging server, which then pushes it to Apple or Google depending on the platform the target device is using (iOS or Android).
 
The default messaging server is a free [https://github.com/dongsheng/airnotifier Airnotifier server] maintained by moodle.com which registered sites may use for testing (be aware that all your messages will go via this server).  To connect to this, click 'Request access key' and then add it to the Airnotifier access key field.  Alternatively, you may install your own private Airnotifier server and use that instead.  See https://github.com/dongsheng/airnotifier for details.
 
Users will need to connect at least once with the latest version of the mobile app to register their phones with the site.  Then they can configure their own messaging preferences in ''Administration > My profile settings > Messaging.''
 
===Default message outputs===
 
The user defaults for these are set in ''Administration > Site administration > Plugins > Message outputs > Default message outputs''.


You can specify the default outputs for each type of message that Moodle can send.
[[Site registration|Registered sites]] can make use of the default messaging server https://messages.moodle.net/ which is maintained by moodle.com. To connect to this, click 'Request access key' and then add it to the Airnotifier access key field.  


====Permittedness====
Alternatively, you may install your own private Air notifier server and use that instead. See https://github.com/dongsheng/airnotifier for details.
===Default notification preferences===
You can specify the default notification preferences for each type of message in Site administration / Messaging / Notification settings.


You can also set to what degree each type of message is enabled, and whether users are able to change these default settings in their profiles:
You can also set to what degree each type of message is enabled, and whether users are able to change these default settings in their profiles:


* ''Disallowed'' - This particular type of message is not allowed at all and users will not see any settings related to them. Message of the chosen type will never be delivered.
* ''Enabled'' - Users are permitted or allowed to change the settings. When the user account is created, the new user will inherit the settings the administrator sets here, but will be allowed to change them afterwards in their Messaging settings. Messages will be delivered as the user sets them on their own Messaging settings page.
 
* ''Permitted'' - Users are permitted or allowed to change the settings. When the user account is created, the new user will inherit the settings the administrator sets here, but will be allowed to change them afterward in their Messaging settings. Messages will be delivered as the user sets them on their own Messaging settings page.
 
* ''Forced'' - Users are not permitted or allowed to change these settings. When the user account is created, the new user will inherit the settings the administrator sets here and will never be allowed to change them. Messages will be delivered for all users as you set them on this page.
 
====Logged in/Offline====
 
You can set whether each of these will be sent when the user is online through the messaging system interface available to users in their profiles, and/or whether each output is sent via email.


* ''Locked'' - Users are not permitted or allowed to change these settings. When the user account is created, the new user will inherit the settings the administrator sets here and will never be allowed to change them. Messages will be delivered for all users as you set them on this page.
====Ordering of messaging settings====
====Ordering of messaging settings====
 
Because users might have many different messaging options, they are ordered into different components - for example, activities, system, enrolments etc.
Because users might have many different messaging options, they are ordered into different components -for example, activities, system, enrolments etc.
[[File:Notification4.png|thumb|600px|center|Part of the Notification preferences screen for a teacher]]
 
[[File:ExampleStudentNotification.png|thumb|600px|center|Example notifications preferences screen - student view]]


==== List of message types====
==== List of message types====
 
Except for 'Personal messages between users', which refers to the interaction messaging tool on a user profile, the other messages are generated by events in Moodle.  
Except for '''Personal messages between users''', which refers to the interaction messaging tool on a user profile, the other messages are generated by events in Moodle. These are set in the system by the Administrator in ''Site administration > PLugins > Message outputs > Default message outputs''.


{| class="wikitable"
{| class="wikitable"
|-
|-
! Output Name !! Description !! Recipients
! Module !! Output Name !! Description !! Recipients  
|-
|-
| Assignment notifications || Student has submitted an [[Assignment activity|assignment]]|| Teacher
|Assignment||Assignment notifications||You have/Student has submitted an [[Assignment activity|assignment]] and Student has received a grade/feedback||Student, Teacher
|-
|-
| Warning when your quiz attempt becomes overdue || See [[Quiz settings]] || Student
|Feedback||Feedback notifications||Notices from setting Enable notification of submissions in [[Feedback settings]]||Teacher, Feedback administrator
|-
|-
| Available update notifications || Notice of new releases of Moodle code || Site administrators
|Feedback||Feedback reminder||[[Feedback activity|Feedback]] non-respondent reminder message|| Student feedback activity non-responders
|-
|-
| Backup notifications || Automated backup schedule run completed || Site administrators
|Forum||Subscribed forum posts||Default for forum subscription handling||Anyone subscribed to a forum
|-
|-
| Badge creator notifications || Notify creator of a badge when it is awarded to someone || Any badge creator (typically Teacher or Manager role)
|Forum||Subscribed forum digests||A digest of forum subjects or subjects and posts if enabled in User - Forum Preferences, Set default for this in [[User default preferences]]|| Authenticated users
|-
|-
| Badge recipient notifications || Notify recipient of a badge when it is awarded to them || Any badge recipient (typically Student role)
|Lesson||Lesson essay graded notification||Notify students a teacher has graded a Lesson essay question||Student
|-
|-
| Comment posted on a learning plan || ? || ?
|Quiz||Notification of your student's quiz submissions||Message that student has submitted a quiz||Teacher
|-
|-
| Comment posted on a competency || ? || ?
|Quiz||Confirmation of your own quiz submissions||Notice to student that your quiz was successfully submitted||Student
|-
|-
| Confirmation of your own quiz submissions || Notice your quiz was successfully submitted || Student
|Quiz||Warning when your quiz attempt becomes overdue||See [[Quiz settings]]||Student
|-
|-
| Course creation request approval notification || Notice a requested course has been approved || Defined in ''Site admin > Courses > Course request > Course request notification''
|Quiz||Notification that your attempt has been graded||Message that a teacher has posted feedback on an [[Quiz activity]]||Student
|-
|-
| Course creation request notification || Notice a course has been requested - See [[Course request]] || Defined in ''Site admin > Courses > Course request > Course request notification''
|System||Notices about minor problems||?||Site administrators
|-
|-
| Course creation request rejection notification || Notice a requested course has been rejected || Defined in ''Site admin > Courses > Course request > Course request notification''
|System||Important errors with the site||Important errors - See also [[Debugging]]||Site administrators
|-
|-
| Subscribed forum digests || Sets default for this for user profiles || Authenticated users
|System||Available update notifications||Notice of new releases of Moodle code||Site administrators
|-
|-
| Important errors with the site || Important errors - See also [[Debugging]] || Site administrators
|System||Personal messages between users||Using the Messaging interface tool||Authenticated Users
|-
|-
| Manual enrolment expiry notifications || Notice if [[Manual enrolment]] about to expire || Manual enrolees
|System||Backup notifications||Automated backup schedule run completed||Site administrators
|-
|-
| Self enrolment expiry notifications || Notify users when their enrolment expires || Enroller only, or Enroller & Enrolled user
|System||Course creation request notification||Notice a course has been requested - See [[Course request]]||Defined in ''Site admin > Courses > Course request > Course request notification''
|-
|-
| Lesson essay graded notification || Notify students a teacher has graded a Lesson essay question || Student
|System||Course creation request approval notification ||Notice a requested course has been approved||User who requested the course
|-
|-
| Personal messages between users || Using the Messaging interface tool || Authenticated Users
|System||Course creation request rejection notification||Notice a requested course has been rejected||User who requested the course
|-
|-
| Message to confirm that an inbound message came from you || See [[Incoming mail configuration]]  || Authenticated Users
|System||Badge recipient notifications|| Notify recipient of a badge when it is awarded to them||Any badge recipient (typically Student role)
|-
|-
| Feedback reminder || [[Feedback activity|Feedback]] non-respondent reminder message  || Student feedback activity non-responders
|System||Badge creator notifications|| Notify creator of a badge when it is awarded to someone||Any badge creator (typically Teacher or Manager role)
|-
|-
| Warning when an inbound message could not be processed || See [[Incoming mail configuration]] || Authenticated Users
|System||Comment posted on a learning plan||?||?
|-
|-
| Confirmation that a message was successfully processed || See [[Incoming mail configuration]] || Authenticated Users
|System||Comment posted on a competency ||? ||?
|-
|-
| Notices about minor problems || || Site administrators
|System||Insights generated by prediction models||Notice of users that meet the Analytics criteria, see [[Managing Analytics]]||Teacher
|-
|-
| Notification of rule subscriptions || Notifications from [[Event monitoring]] rules || Event rule subscribers
|System||Message contact requests notification||Notifies users when a non-contact user attempts to send them a message||Authenticated users
|-
|-
| Subscribed forum posts || Default for forum subscription handling || Anyone subscribed to a forum
|System||Asynchronous backup/restore notifications||Notifies users when a backup/restore is completed message, see [[Course backup]]||Authenticated users
|-
|-
| Feedback notifications || Notices from setting Enable notification of submissions || Teacher, Feedback administrator
|System||Grade notifications||Message that a teacher has posted feedback on an [[Assignment activity|assignment]]||Student
|-
|-
| Notification of quiz submissions || Message that student has submitted a quiz || Teacher
|System||Course completed||Automatic notification (congratulations note) about completing the course - sent to the student after all the course completion criteria have been achieved||Student
|-
|System||Antivirus failure notifications.||Warning message for Site Admin, see [[Antivirus plugins]]||Site Administrator
|-
|System||New login notifications||Warns a user if there was a failed login attempt with their username||Authenticated Users
|-
|System||Course content changes||Message that alerts students that a course activity was updated - activity title only, does not provide details about what has change)||Student
|-
|System||Custom report builder schedules||Notification of Report subscriptions, see [[Custom reports]]||usually Teacher or Manager
|-
|Manual enrollments||Manual enrolment expiry notifications|| Notice if [[Manual enrolment]] is about to expire||Manual enrolees
|-
|Self enrollments||Self enrolment expiry notifications||Notify users when if [[Self enrolment]] is about to expire|| Enroller only, or Enroller & Enrolled user
|-
|Data privacy||Data request||Message that data review has been requested, see [[Data privacy]]||Privacy Officer
|-
|Data privacy||Data request processing results||Message that data review has been received and is processing, see [[Data privacy]]||Authenticated User
|-
|Data privacy||Data requests exceptions notifications||?||?
|-
|Inbound message configuration||Message to confirm that an inbound message came from you||See [[Incoming mail configuration]]||Authenticated Users
|-
|Inbound message configuration||Warning when an inbound message could not be processed||See [[Incoming mail configuration]]||Authenticated Users
|-
|Inbound message configuration||Confirmation that a message was successfully processed||See [[Incoming mail configuration]]||Authenticated Users
|-
|Event monitoring||Notification of rule subscriptions||Notifications from [[Event monitoring]] rules||Event rule subscribers
|}
|}


=Other Messaging related settings=
==Roles and Messaging capabilities==
==Roles and Messaging capabilities==
The following capabilities can be applied as permissions to make custom changes to roles affecting messaging.
The following capabilities can be applied as permissions to make custom changes to roles affecting messaging.
* [[Capabilities/moodle/course:bulkmessaging|course:bulkmessaging - Send a message to many people]]
* [[Capabilities/moodle/course:bulkmessaging|course:bulkmessaging - Send a message to many people]]
* [[Capabilities/moodle/site:readallmessages|site:readallmessages - Read all messages on site]]
* [[Capabilities/moodle/site:readallmessages|site:readallmessages - Read all messages on site]]
Line 187: Line 136:
* [[Capabilities/moodle/user:editownmessageprofile|user:editownmessageprofile - Edit own user messaging profile]]
* [[Capabilities/moodle/user:editownmessageprofile|user:editownmessageprofile - Edit own user messaging profile]]
* [[Capabilities/moodle/user:editmessageprofile|user:editmessageprofile - Edit user messaging profile]]
* [[Capabilities/moodle/user:editmessageprofile|user:editmessageprofile - Edit user messaging profile]]
==User profile settings==
Users can receive message alerts for a number of different reasons and can also send and receive instant messages. How a user receives notification of incoming messages can be set in ''Logged in user menu > Preferences > Messaging''.
This brings up a screen with check boxes where users can choose how they wish to be notified both when logged in and logged out. They can choose between a pop up,Jabber message or an email.
[[File:Messagingnotifications.png]]
'''Note:''' The choices a user has on this screen depends on their role and permissions within Moodle. For example, an administrator would see options for notifications about backups or important errors with the site.
An administrator can receive update notifications for both Moodle core code and any contributed plugins installed on the site if the automatic check for available updates is enabled in ''Administration > Site Administration > Server > [[Notifications|Update notifications]]''.
===Pop up===
When a user is logged into Moodle, the message will pop up from the bottom right corner of the page. The user can choose to read the message immediately or to ignore it. If they choose to ignore it, the message returns until it is read.
===Jabber===
If the Jabber server has been configured, Jabber messages can be sent.The Jabber ID can be set at the bottom of the screen.
===Email===
===Email===
All email messages and notifications go to the email address set in a user's profile. The administrator can optionally allow users to choose to have notifications sent to a different email address. This is off by default and can be enabled in ''Site administration > Messaging settings''.


Users cannot by default automatically choose to have notifications sent to a different email address from their official Moodle email. However, the administrator has the option to override this so that users can have an alternative email. This is done from ''Administration > Site administration > Advanced features'' and when activated, a box will appear for users to enter another email address.
Users can then enter their alternative email address under Preferences/User account/Notification preferences: Click on the gear icon next to "Email" in the table header and enter the alternative email.
 
Note: The  'messagingallowemailoverride' setting does not affect failed log in notifications as they do not go through the messaging system, and will therefore still go to the original email specified.
 
===Mobile notifications===
Users have this option if their site is connected to a messaging server and if they have connected with their mobile device to the mobile app.
 
===Prevent non-contacts from messaging me===
Non-contacts can be prevented from sending messages by ticking this box in General Settings at the bottom of the screen.


[[de:Mitteilungen konfigurieren]]
Note: The 'messagingallowemailoverride' setting does not affect failed log in notifications as they do not go through the messaging system, and will therefore still go to the original email specified.
[[fr:Paramètres de messagerie]]
[[de:Einstellungen für Mitteilungen]]
[[es:Configuraciones de mensajería]]
[[es:Configuraciones de mensajería]]

Latest revision as of 14:59, 11 April 2024

Messaging settings for all users

  • Users can decide how they want to be notified of new messages and event notifications by editing their messaging preferences page, which they can access either from the Preferences link in the user menu or from the gear icon in the messaging/notifications menus. See Messaging and Notifications for more information.
  • Which options they see there depend on what has been enabled by the administrator. For example, the mobile option is only available if the site is enabled for the mobile app.

Enabling / disabling messaging site wide

The personal messaging system in Moodle is enabled by default. It may be disabled by a site administrator from Site administration > Advanced features.

From 'Messaging settings', the administrator can "Allow site-wide messaging" (disabled by default). If this setting is enabled, users on the site can view all other users when selecting someone to message and can choose to accept messages from anyone on the site.

Notification settings

Messaging system default settings are set in 'Notification settings' in Site administration / Messaging

There are three default types of notification plugins: web, email and mobile.

By default, web and email are both enabled, although email will only work of course if the site has been properly configured to deliver email. Mobile notifications are off by default and need to be configured first.

NotificationPlugins4.png

Jabber

Note: The Jabber message output has been removed from new installations of Moodle 4.0.

The code for the Jabber message output is currently available from the Plugins directory.

Mobile notifications

mobilenotifications.png

The administrator can configure the site to push messages to mobile devices. Moodle pushes messages to a messaging server, which then pushes it to Apple or Google depending on the platform the target device is using (iOS or Android).

Registered sites can make use of the default messaging server https://messages.moodle.net/ which is maintained by moodle.com. To connect to this, click 'Request access key' and then add it to the Airnotifier access key field.

Alternatively, you may install your own private Air notifier server and use that instead. See https://github.com/dongsheng/airnotifier for details.

Default notification preferences

You can specify the default notification preferences for each type of message in Site administration / Messaging / Notification settings.

You can also set to what degree each type of message is enabled, and whether users are able to change these default settings in their profiles:

  • Enabled - Users are permitted or allowed to change the settings. When the user account is created, the new user will inherit the settings the administrator sets here, but will be allowed to change them afterwards in their Messaging settings. Messages will be delivered as the user sets them on their own Messaging settings page.
  • Locked - Users are not permitted or allowed to change these settings. When the user account is created, the new user will inherit the settings the administrator sets here and will never be allowed to change them. Messages will be delivered for all users as you set them on this page.

Ordering of messaging settings

Because users might have many different messaging options, they are ordered into different components - for example, activities, system, enrolments etc.

Part of the Notification preferences screen for a teacher

List of message types

Except for 'Personal messages between users', which refers to the interaction messaging tool on a user profile, the other messages are generated by events in Moodle.

Module Output Name Description Recipients
Assignment Assignment notifications You have/Student has submitted an assignment and Student has received a grade/feedback Student, Teacher
Feedback Feedback notifications Notices from setting Enable notification of submissions in Feedback settings Teacher, Feedback administrator
Feedback Feedback reminder Feedback non-respondent reminder message Student feedback activity non-responders
Forum Subscribed forum posts Default for forum subscription handling Anyone subscribed to a forum
Forum Subscribed forum digests A digest of forum subjects or subjects and posts if enabled in User - Forum Preferences, Set default for this in User default preferences Authenticated users
Lesson Lesson essay graded notification Notify students a teacher has graded a Lesson essay question Student
Quiz Notification of your student's quiz submissions Message that student has submitted a quiz Teacher
Quiz Confirmation of your own quiz submissions Notice to student that your quiz was successfully submitted Student
Quiz Warning when your quiz attempt becomes overdue See Quiz settings Student
Quiz Notification that your attempt has been graded Message that a teacher has posted feedback on an Quiz activity Student
System Notices about minor problems ? Site administrators
System Important errors with the site Important errors - See also Debugging Site administrators
System Available update notifications Notice of new releases of Moodle code Site administrators
System Personal messages between users Using the Messaging interface tool Authenticated Users
System Backup notifications Automated backup schedule run completed Site administrators
System Course creation request notification Notice a course has been requested - See Course request Defined in Site admin > Courses > Course request > Course request notification
System Course creation request approval notification Notice a requested course has been approved User who requested the course
System Course creation request rejection notification Notice a requested course has been rejected User who requested the course
System Badge recipient notifications Notify recipient of a badge when it is awarded to them Any badge recipient (typically Student role)
System Badge creator notifications Notify creator of a badge when it is awarded to someone Any badge creator (typically Teacher or Manager role)
System Comment posted on a learning plan ? ?
System Comment posted on a competency ? ?
System Insights generated by prediction models Notice of users that meet the Analytics criteria, see Managing Analytics Teacher
System Message contact requests notification Notifies users when a non-contact user attempts to send them a message Authenticated users
System Asynchronous backup/restore notifications Notifies users when a backup/restore is completed message, see Course backup Authenticated users
System Grade notifications Message that a teacher has posted feedback on an assignment Student
System Course completed Automatic notification (congratulations note) about completing the course - sent to the student after all the course completion criteria have been achieved Student
System Antivirus failure notifications. Warning message for Site Admin, see Antivirus plugins Site Administrator
System New login notifications Warns a user if there was a failed login attempt with their username Authenticated Users
System Course content changes Message that alerts students that a course activity was updated - activity title only, does not provide details about what has change) Student
System Custom report builder schedules Notification of Report subscriptions, see Custom reports usually Teacher or Manager
Manual enrollments Manual enrolment expiry notifications Notice if Manual enrolment is about to expire Manual enrolees
Self enrollments Self enrolment expiry notifications Notify users when if Self enrolment is about to expire Enroller only, or Enroller & Enrolled user
Data privacy Data request Message that data review has been requested, see Data privacy Privacy Officer
Data privacy Data request processing results Message that data review has been received and is processing, see Data privacy Authenticated User
Data privacy Data requests exceptions notifications ? ?
Inbound message configuration Message to confirm that an inbound message came from you See Incoming mail configuration Authenticated Users
Inbound message configuration Warning when an inbound message could not be processed See Incoming mail configuration Authenticated Users
Inbound message configuration Confirmation that a message was successfully processed See Incoming mail configuration Authenticated Users
Event monitoring Notification of rule subscriptions Notifications from Event monitoring rules Event rule subscribers

Roles and Messaging capabilities

The following capabilities can be applied as permissions to make custom changes to roles affecting messaging.

Email

All email messages and notifications go to the email address set in a user's profile. The administrator can optionally allow users to choose to have notifications sent to a different email address. This is off by default and can be enabled in Site administration > Messaging settings.

Users can then enter their alternative email address under Preferences/User account/Notification preferences: Click on the gear icon next to "Email" in the table header and enter the alternative email.

Note: The 'messagingallowemailoverride' setting does not affect failed log in notifications as they do not go through the messaging system, and will therefore still go to the original email specified.