Note: You are currently viewing documentation for Moodle 2.0. Up-to-date documentation for the latest stable version is available here: Messaging settings.

Messaging settings

From MoodleDocs
(Redirected from Email settings)

Enabling / disabling instant messaging

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

My 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 Settings > My profile > 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.

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.

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

There is a box at the bottom of this settings screen which allows for a different email address from the default to be chosen for receiving notifications.

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.

Site administration settings

Message outputs - popup, jabber and email - can be configured by a site administrator in Settings > Site administration > Server.

Email settings

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. Currently, the parameter check is too strict to allow this via the Moodle UI; however, MDL-15923 has been created and resolved to address this. Until then, it can be set via phpMyAdmin using a query statement like: UPDATE mdl_config SET value='myemailserver.com:587' WHERE name='smtphosts';

Secure SMTP hosts with SSL/TLS

For SMTP hosts that require secure authentication, SSL or TLS you must run the following query:

UPDATE mdl_config SET value='ssl://myemailserver.com:465' WHERE name='smtphosts';

Messaging permissions